/* ================================================================
   PARENTS LANDING PAGE STYLES
   ================================================================ */

/* ========================= HERO SECTION ========================= */
.parents-hero {
  padding: clamp(140px, 15vw, 180px) clamp(24px, 5vw, 80px) clamp(80px, 10vw, 120px);
  background: var(--paper);
  position: relative;
  overflow: hidden;
}

.parents-hero-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: clamp(40px, 6vw, 100px);
}

.parents-hero-text {
  flex: 1;
  max-width: 600px;
}

.parents-kicker {
  font-family: 'Caveat', cursive;
  font-size: clamp(24px, 3vw, 32px);
  color: var(--teal);
  margin-bottom: 16px;
  transform: rotate(-2deg);
}

.parents-headline {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 28px;
}

.parents-headline em {
  font-style: italic;
  background: var(--luua-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.parents-subheadline {
  font-family: 'Inter', sans-serif;
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.7;
  color: var(--graphite);
  margin-bottom: 36px;
}

.parents-cta {
  display: inline-block;
  background: var(--lime);
  color: var(--ink);
  padding: 18px 42px;
  border-radius: 8px;
  font-family: 'Open Sans', 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: transform 0.3s var(--ease-breath), box-shadow 0.3s;
  transform: rotate(-1deg);
}

.parents-cta:hover {
  transform: rotate(-1deg) translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(196, 216, 46, 0.4);
}

.parents-hero-image {
  flex: 1;
  max-width: 650px;
}

.parents-hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ========================= SUPPORTIVE TOOLS SECTION ========================= */
.parents-supportive {
  padding: clamp(80px, 10vw, 140px) clamp(24px, 5vw, 80px);
  background: var(--paper-deep);
  position: relative;
}

.parents-supportive-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: clamp(40px, 6vw, 100px);
}

.parents-supportive-image {
  flex: 1;
  max-width: 500px;
}

.parents-supportive-image img {
  width: 100%;
  height: auto;
  display: block;
}

.parents-supportive-text {
  flex: 1.2;
  max-width: 650px;
}

.section-title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 28px;
}

.section-title em {
  font-style: italic;
  color: var(--teal);
}

.section-title.centered {
  text-align: center;
}

.section-body {
  font-family: 'Inter', sans-serif;
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.75;
  color: var(--graphite);
}

.section-body strong {
  color: var(--ink);
  font-weight: 600;
}

/* ========================= GOAL BANNER ========================= */
.parents-goal-banner {
  padding: clamp(40px, 6vw, 80px) clamp(24px, 5vw, 80px);
  background: var(--paper);
}

.parents-goal-banner img {
  display: block;
  max-width: 1200px;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

/* ========================= BUILD A CALM FAMILY RHYTHM ========================= */
.parents-rhythm {
  padding: clamp(80px, 10vw, 140px) clamp(24px, 5vw, 80px);
  background: var(--paper);
  text-align: center;
}

.parents-rhythm-header {
  max-width: 800px;
  margin: 0 auto 60px;
}

.section-subtitle {
  font-family: 'Caveat', cursive;
  font-size: clamp(22px, 2.5vw, 30px);
  color: var(--graphite);
  margin-top: 16px;
  transform: rotate(-1deg);
}

.rhythm-icons-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(24px, 4vw, 50px);
  max-width: 1100px;
  margin: 0 auto 80px;
}

.rhythm-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: clamp(140px, 16vw, 180px);
}

.rhythm-item img {
  width: clamp(100px, 14vw, 140px);
  height: auto;
  transition: transform 0.4s var(--ease-breath);
}

.rhythm-item:hover img {
  transform: scale(1.08) rotate(-3deg);
}

.rhythm-item span {
  font-family: 'Open Sans', 'Inter', sans-serif;
  font-size: clamp(13px, 1.4vw, 16px);
  font-weight: 600;
  color: var(--ink);
  text-align: center;
}

.rhythm-ripple {
  max-width: 800px;
  margin: 0 auto;
  padding: 50px clamp(24px, 4vw, 60px);
  background: white;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  transform: rotate(-0.5deg);
}

.ripple-title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(24px, 3.5vw, 40px);
  color: var(--ink);
  margin-bottom: 20px;
}

.ripple-title em {
  font-style: italic;
  color: var(--purple);
}

.ripple-body {
  font-family: 'Inter', sans-serif;
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.7;
  color: var(--graphite);
}

/* ========================= WHAT YOU GET WITH LUUA ========================= */
.parents-features {
  padding: clamp(80px, 10vw, 140px) clamp(24px, 5vw, 80px);
  background: var(--paper-deep);
}

.parents-features-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: clamp(40px, 6vw, 100px);
}

.parents-features-text {
  flex: 1.3;
  max-width: 700px;
}

.feature-intro {
  font-family: 'Caveat', cursive;
  font-size: clamp(24px, 2.8vw, 32px);
  color: var(--purple);
  margin-bottom: 28px;
  transform: rotate(-1deg);
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}

.features-list li {
  position: relative;
  padding: 16px 0 16px 36px;
  font-family: 'Inter', sans-serif;
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.65;
  color: var(--graphite);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.features-list li:last-child {
  border-bottom: none;
}

.features-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 22px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--luua-gradient);
}

.parents-shop-btn {
  display: inline-block;
  background: var(--lime);
  color: var(--ink);
  padding: 16px 36px;
  border-radius: 8px;
  font-family: 'Open Sans', 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: transform 0.3s var(--ease-breath), box-shadow 0.3s;
  transform: rotate(-1deg);
}

.parents-shop-btn:hover {
  transform: rotate(-1deg) translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(196, 216, 46, 0.4);
}

.parents-features-image {
  flex: 1;
  max-width: 480px;
}

.parents-features-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ========================= LUUA IS HERE TO SUPPORT YOU ========================= */
.parents-support {
  padding: clamp(80px, 10vw, 140px) clamp(24px, 5vw, 80px);
  background: var(--paper);
}

.parents-support-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: clamp(40px, 6vw, 100px);
}

.parents-support-image {
  flex: 1;
  max-width: 580px;
}

.parents-support-image img {
  width: 100%;
  height: auto;
  display: block;
}

.parents-support-text {
  flex: 1.2;
  max-width: 700px;
}

.support-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 40px;
}

.support-column h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(18px, 2vw, 22px);
  color: var(--ink);
  margin-bottom: 20px;
}

.support-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.support-column li {
  position: relative;
  padding: 10px 0 10px 24px;
  font-family: 'Inter', sans-serif;
  font-size: clamp(14px, 1.3vw, 15px);
  line-height: 1.6;
  color: var(--graphite);
}

.support-column li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 10px;
  color: var(--teal);
  font-weight: 700;
}

/* ========================= CALM BECOMES A SKILL ========================= */
.parents-calm-skill {
  padding: clamp(80px, 10vw, 140px) clamp(24px, 5vw, 80px);
  background: linear-gradient(180deg, var(--paper-deep) 0%, var(--paper) 100%);
}

.parents-calm-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: clamp(40px, 6vw, 100px);
}

.parents-calm-image {
  flex: 1;
  max-width: 500px;
}

.parents-calm-image img {
  width: 100%;
  height: auto;
  display: block;
}

.parents-calm-text {
  flex: 1.2;
  max-width: 650px;
}

.calm-headline {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 28px;
}

.calm-headline em {
  font-style: italic;
  background: var(--luua-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.calm-body {
  font-family: 'Inter', sans-serif;
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.75;
  color: var(--graphite);
  margin-bottom: 40px;
}

.parents-cta-large {
  display: inline-block;
  background: var(--lime);
  color: var(--ink);
  padding: 22px 50px;
  border-radius: 8px;
  font-family: 'Open Sans', 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: transform 0.3s var(--ease-breath), box-shadow 0.3s;
  transform: rotate(-1deg);
}

.parents-cta-large:hover {
  transform: rotate(-1deg) translateY(-4px) scale(1.03);
  box-shadow: 0 12px 35px rgba(196, 216, 46, 0.45);
}

/* ========================= CLOSING STATEMENT ========================= */
.parents-closing {
  padding: clamp(80px, 10vw, 120px) clamp(24px, 5vw, 80px);
  background: var(--paper);
  text-align: center;
}

.closing-quote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(24px, 4vw, 44px);
  line-height: 1.3;
  color: var(--ink);
  max-width: 900px;
  margin: 0 auto;
}

.closing-quote em {
  font-style: italic;
  background: var(--luua-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ========================= RESPONSIVE ========================= */
@media (max-width: 1024px) {
  .parents-hero-content,
  .parents-supportive-content,
  .parents-features-content,
  .parents-support-content,
  .parents-calm-content {
    flex-direction: column;
    text-align: center;
  }

  .parents-hero-text,
  .parents-supportive-text,
  .parents-features-text,
  .parents-support-text,
  .parents-calm-text {
    max-width: 100%;
  }

  .parents-supportive-content {
    flex-direction: column-reverse;
  }

  .parents-calm-content {
    flex-direction: column-reverse;
  }

  .parents-hero-image,
  .parents-supportive-image,
  .parents-features-image,
  .parents-support-image,
  .parents-calm-image {
    max-width: 550px;
    margin: 0 auto;
  }

  .features-list li {
    text-align: left;
  }

  .support-columns {
    text-align: left;
  }

  .support-column ul {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .support-columns {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .rhythm-icons-grid {
    gap: 30px;
  }

  .rhythm-item {
    width: 45%;
  }
}

@media (max-width: 480px) {
  .rhythm-item {
    width: 100%;
    max-width: 180px;
  }
}

/* Active nav link style */
.nav-links a.active {
  color: var(--teal);
}

.nav-links a.active::after {
  transform: scaleX(1);
}
