/* ============================================
   INDEX.CSS — Home Page Styles
   Urban Hustle Fitness — Andrea Chaisson
   ============================================ */

/* ---- HERO SECTION ---- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.92) 0%,
    rgba(10, 10, 10, 0.75) 50%,
    rgba(20, 14, 8, 0.88) 100%
  );
  z-index: 1;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--color-champagne);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 6s ease-in-out infinite;
}

@keyframes particleFloat {
  0%, 100% {
    opacity: 0;
    transform: translateY(0) scale(0.5);
  }
  50% {
    opacity: 0.4;
    transform: translateY(-80px) scale(1);
  }
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding-top: 80px;
}

.hero-title {
  font-size: var(--text-hero);
  font-weight: 300;
  color: var(--color-text-primary);
  margin-bottom: 28px;
  line-height: 1.08;
}

.hero-title-italic {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  color: var(--color-champagne);
  font-weight: 300;
}

.hero-sub {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: var(--text-body-lg);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.hero-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-trust-item {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
}

.hero-trust-divider {
  width: 24px;
  height: 1px;
  background: var(--color-champagne);
  opacity: 0.5;
}

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--color-champagne), transparent);
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(12px); opacity: 0.4; }
}

/* ---- PROBLEM SECTION ---- */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}

.problem-quote {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--color-champagne);
  line-height: 1.3;
}

.problem-pain {
  padding: 18px 0;
  border-bottom: 1px solid var(--color-border-subtle);
}

.problem-pain:last-child {
  border-bottom: none;
}

.problem-pain-line {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.problem-statement {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid var(--color-border-subtle);
}

.problem-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: var(--text-heading);
  font-weight: 400;
  color: var(--color-text-primary);
  margin-bottom: 16px;
}

.problem-body {
  font-size: var(--text-body-lg);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ---- SOLUTION SECTION ---- */
.solution-headline {
  color: var(--color-text-dark);
  margin-bottom: 8px;
}

.solution-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: 56px 0;
}

.pillar-icon {
  color: var(--color-champagne);
  margin-bottom: 24px;
}

.pillar-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--color-text-dark);
  margin-bottom: 16px;
}

.pillar-desc {
  font-size: 0.95rem;
  color: var(--color-text-dark-secondary);
  line-height: 1.8;
}

.solution-cta {
  text-align: center;
  margin-top: 20px;
}

/* ---- MEET SECTION ---- */
.meet-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 80px;
  align-items: center;
}

.meet-photo-frame {
  position: relative;
  overflow: hidden;
}

.meet-photo-frame img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  filter: grayscale(10%) contrast(1.05);
}

.meet-photo-corner {
  position: absolute;
  width: 60px;
  height: 60px;
}

.meet-photo-corner--tl {
  top: -2px;
  left: -2px;
  border-top: 2px solid var(--color-champagne);
  border-left: 2px solid var(--color-champagne);
}

.meet-photo-corner--br {
  bottom: -2px;
  right: -2px;
  border-bottom: 2px solid var(--color-champagne);
  border-right: 2px solid var(--color-champagne);
}

.meet-body {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--color-text-secondary);
  line-height: 1.9;
  margin-bottom: 20px;
}

.meet-credentials {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  margin-top: 28px;
}

.credential-badge {
  padding: 8px 18px;
  border: 1px solid var(--color-border-gold);
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-champagne);
  background: rgba(201, 169, 110, 0.06);
}

/* ---- PROCESS SECTION ---- */
.process-header {
  text-align: center;
  margin-bottom: 80px;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  position: relative;
  margin-bottom: 60px;
}

.process-line {
  position: absolute;
  top: 48px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-champagne), var(--color-champagne), transparent);
  opacity: 0.3;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 5rem;
  font-weight: 300;
  color: var(--color-champagne);
  line-height: 1;
  display: block;
  margin-bottom: 20px;
  opacity: 0.7;
}

.process-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-text-primary);
  margin-bottom: 16px;
}

.process-desc {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--color-text-secondary);
  line-height: 1.8;
  max-width: 300px;
  margin: 0 auto;
}

.process-cta {
  text-align: center;
}

/* ---- TESTIMONIALS SECTION ---- */
.testimonials-section h2 {
  margin-bottom: 60px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial-card {
  text-align: left;
  padding: 44px 36px;
}

.testimonial-quote-mark {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 5rem;
  color: var(--color-champagne);
  opacity: 0.3;
  line-height: 0.5;
  display: block;
  margin-bottom: 16px;
}

.testimonial-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--color-text-secondary);
  line-height: 1.9;
  margin-bottom: 28px;
}

.testimonial-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.testimonial-name {
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-champagne);
  letter-spacing: 0.05em;
}

.testimonial-gold-border {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--color-champagne), transparent);
  opacity: 0.4;
}

/* ---- OFFER SECTION ---- */
.offer-section {
  position: relative;
  text-align: center;
  overflow: hidden;
}

.offer-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1A1208, #0D0D0D);
  z-index: 0;
}

.offer-content {
  position: relative;
  z-index: 2;
}

.offer-body {
  font-size: var(--text-body-lg);
  font-weight: 300;
  color: var(--color-text-secondary);
  max-width: 560px;
  margin: 0 auto 32px;
}

.offer-section h2 {
  margin-bottom: 16px;
}

/* ---- FINAL CTA SECTION ---- */
.final-cta-section {
  padding: 140px 0;
}

.final-cta-content {
  text-align: center;
}

.final-cta-headline {
  font-size: var(--text-display);
  margin-bottom: 20px;
}

.final-cta-headline em {
  color: var(--color-champagne);
  font-family: 'Cormorant Garamond', Georgia, serif;
}

.final-cta-sub {
  font-size: var(--text-body-lg);
  font-weight: 300;
  color: var(--color-text-secondary);
  max-width: 560px;
  margin: 0 auto 40px;
}

.final-cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.final-cta-trust {
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .meet-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .meet-photo-frame img {
    height: 400px;
  }

  .solution-pillars {
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .hero-content {
    padding-top: 100px;
  }

  .problem-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .problem-quote {
    text-align: center;
  }

  .solution-pillars {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .process-timeline {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .process-line {
    display: none;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-btns {
    flex-direction: column;
  }

  .final-cta-btns {
    flex-direction: column;
  }

  .meet-credentials {
    justify-content: center;
  }

  .meet-text {
    text-align: center;
  }

  .meet-text .gold-line--left {
    margin: 24px auto;
  }

  .meet-text .eyebrow {
    text-align: center;
  }
}
