/* ============================================
   FCPX Booster - Landing Page Styles
   Minimalist, utilitarian aesthetic
   ============================================ */

/* === Hero Text === */
.hero-text {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem 0;
  text-align: center;
}

.hero-text h1 {
  font-size: 1.5rem;
  line-height: 1.4;
  color: var(--text-primary);
  margin: 0;
  font-weight: 600;
}

.hero-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-primary);
  margin: 0;
}

/* === Tools List === */
.tools-list {
  max-width: 800px;
  margin: 0 auto;
  padding: 1.5rem 1rem 2rem;
}

.tool-item {
  margin-bottom: 2.5rem;
}

.tool-item:last-child {
  margin-bottom: 0;
}

/* Tool Banner */
.tool-banner-link {
  display: block;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all var(--transition-base);
}

.tool-banner-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.tool-banner {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-base);
}

.tool-banner-link:hover .tool-banner {
  transform: scale(1.01);
}

.tool-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.tool-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.tool-links {
  display: flex;
  gap: 1rem;
  font-size: 0.9rem;
}

.tool-link {
  color: #00D4FF;
  font-weight: 500;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.tool-link:hover {
  color: #00E5FF;
  text-decoration: underline;
  text-shadow: 0 0 8px rgba(0, 212, 255, 0.4);
}

/* === Responsive === */
@media (max-width: 640px) {
  .tools-list {
    padding: 1.5rem 1rem;
  }

  .tool-item {
    margin-bottom: 2.5rem;
  }
}
