/* ============================================
   Kinderyoga mit Laura — Stylesheet
   ============================================ */

/* --- Custom Properties --- */
:root {
  --forest: #4A7C59;
  --forest-light: #5e9a6e;
  --forest-dark: #3a6347;
  --honey: #E8B84B;
  --honey-light: #f0cc73;
  --honey-dark: #c99a2e;
  --terra: #D4724A;
  --terra-light: #e08b68;
  --terra-dark: #b85c38;
  --cream: #FAF6EE;
  --cream-dark: #f0e8d8;
  --pink: #E8A0B5;
  --pink-light: #F2C4D2;
  --lavender: #B8A9D4;
  --lavender-light: #D4CAEC;
  --sky: #8BB8C8;
  --sky-light: #aed0dc;
  --white: #FFFFFF;
  --text: #2D4A38;
  --text-light: #5a7264;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.1);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.3s ease;
  --font-heading: 'Fredoka', sans-serif;
  --font-body: 'Nunito', sans-serif;
  --font-accent: 'Amatic SC', cursive;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

img {
  max-width: 100%;
  display: block;
}

/* --- Utilities --- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-title {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  text-align: center;
  color: var(--forest);
  margin-bottom: 48px;
  position: relative;
  font-weight: 600;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--honey);
  border-radius: 2px;
  margin: 16px auto 0;
}

/* Alternate underline colors per section */
.benefits .section-title::after { background: var(--pink); }
.about .section-title::after { background: var(--honey); }
.course .section-title::after { background: var(--lavender); }
.pricing .section-title::after { background: var(--terra); }
.booking .section-title::after { background: var(--forest); }
.faq .section-title::after { background: var(--sky); }

/* --- Buttons --- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background: var(--terra);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--terra-dark);
}

.btn--secondary {
  background: var(--white);
  color: var(--forest);
  border: 2px solid var(--forest);
}

.btn--secondary:hover {
  background: var(--forest);
  color: var(--white);
}

.btn--dark {
  background: var(--forest-dark);
  color: var(--white);
}

.btn--dark:hover {
  background: var(--forest);
}

.btn--pink {
  background: var(--pink);
  color: var(--white);
}

.btn--pink:hover {
  background: #d88a9f;
}

.btn--forest {
  background: var(--forest);
  color: var(--white);
}

.btn--forest:hover {
  background: var(--forest-dark);
}

.btn--lavender {
  background: var(--lavender);
  color: var(--white);
}

.btn--lavender:hover {
  background: #a496c4;
}

.btn--honey {
  background: var(--honey);
  color: var(--forest-dark);
}

.btn--honey:hover {
  background: var(--honey-dark);
  color: var(--white);
}

.btn--sky {
  background: var(--sky);
  color: var(--white);
}

.btn--sky:hover {
  background: #72a5b8;
}

.btn--whatsapp {
  background: #25D366;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn--whatsapp:hover {
  background: #1da851;
}

.btn--full {
  width: 100%;
}

/* --- Fade-in Animation --- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 248, 240, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(74, 124, 89, 0.15);
  transition: box-shadow var(--transition);
}

.nav--scrolled {
  box-shadow: var(--shadow-sm);
}

.nav__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav__logo {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--forest);
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav__link {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text);
  padding: 8px 14px;
  border-radius: var(--radius-xl);
  transition: all var(--transition);
}

.nav__link:hover {
  color: var(--forest);
  background: rgba(74, 124, 89, 0.12);
}

.nav__link--cta {
  background: var(--terra);
  color: var(--white) !important;
  margin-left: 8px;
}

.nav__link--cta:hover {
  background: var(--terra-dark) !important;
}

.nav__link--pink {
  background: var(--lavender) !important;
}

.nav__link--pink:hover {
  background: #a496c4 !important;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--forest);
  border-radius: 2px;
  transition: all var(--transition);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  padding: 140px 24px 60px;
  overflow: hidden;
}

.hero__kids {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1000px;
  z-index: 0;
  opacity: 0.85;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero__title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--forest);
  margin-bottom: 12px;
  font-weight: 600;
}

/* Rainbow letter bounce animation — süß und knuddelig */
@keyframes letterBounce {
  0%, 100% { transform: translateY(0) scale(1); }
  20% { transform: translateY(-0.18em) scale(1.05); }
  40% { transform: translateY(0) scale(0.97); }
  55% { transform: translateY(-0.08em) scale(1.02); }
  70% { transform: translateY(0) scale(0.99); }
  85% { transform: translateY(-0.03em) scale(1.01); }
}

.rainbow-text span {
  display: inline-block;
  animation: letterBounce 2.5s cubic-bezier(0.28, 0.84, 0.42, 1) infinite;
  animation-play-state: paused;
}

.hero__title span {
  animation-play-state: running;
}

.rainbow-text.is-visible span {
  animation-play-state: running;
}

/* Footer brand: smaller bounce */
.footer__brand span {
  animation-duration: 3s;
}

/* Nav logo: colorful but no bounce */
.nav__logo span {
  animation: none;
}

.hero__subtitle {
  font-family: var(--font-accent);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--forest-dark);
  margin-bottom: 16px;
}

.hero__leaf {
  display: inline-block;
  animation: sway 3s ease-in-out infinite;
}

@keyframes sway {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(8deg); }
  75% { transform: rotate(-8deg); }
}

.hero__details {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 36px;
}

.hero__cta {
  font-size: 1.1rem;
  padding: 16px 40px;
}


/* --- Image Placeholders --- */
.image-placeholder,
.hero__image-placeholder {
  background: linear-gradient(135deg, var(--forest-light) 0%, var(--cream-dark) 50%, var(--honey-light) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--forest-dark);
  font-family: var(--font-heading);
  font-weight: 700;
  border: 3px dashed rgba(74, 124, 89, 0.4);
  position: relative;
  overflow: hidden;
}

.image-placeholder span,
.hero__image-placeholder span {
  font-size: 1.75rem;
  margin-bottom: 4px;
}

.image-placeholder small,
.hero__image-placeholder small {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-light);
  text-align: center;
  padding: 0 16px;
}

.hero__image-placeholder {
  width: 100%;
  max-width: 500px;
  height: 280px;
  margin: 0 auto 32px;
  border-radius: var(--radius-xl);
}

.image-placeholder {
  height: 200px;
}

.image-placeholder--wide {
  height: 240px;
}

/* --- Course Gallery --- */
.course__gallery {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}

.course__gallery-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.course__gallery-item:nth-child(2) .course__gallery-img {
  object-position: center 20%;
}

.course__gallery-img--wide {
  height: 260px;
}

.course__gallery-img:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
  .course__gallery {
    grid-template-columns: 1fr;
  }
  .hero__image-placeholder {
    height: 200px;
  }
}

/* --- Pricing CTA --- */
.pricing__cta {
  text-align: center;
  margin-top: 40px;
}

.btn--lg {
  font-size: 1.2rem;
  padding: 18px 48px;
}

/* --- Benefits Section --- */
.benefits {
  padding: 96px 0;
  background: var(--white);
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.benefit-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  border-top: 4px solid transparent;
}

.benefit-card:nth-child(1) { border-top-color: var(--forest-light); }
.benefit-card:nth-child(2) { border-top-color: var(--pink); }
.benefit-card:nth-child(3) { border-top-color: var(--honey); }
.benefit-card:nth-child(4) { border-top-color: var(--lavender); }

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.benefit-card__icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 16px;
}

.benefit-card__title {
  font-size: 1.15rem;
  color: var(--forest);
  margin-bottom: 10px;
}

.benefit-card__text {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* --- About Section --- */
.about {
  padding: 96px 0;
  background: var(--cream);
}

.about__content {
  display: flex;
  align-items: center;
  gap: 48px;
  max-width: 800px;
  margin: 0 auto;
}

.about__photo {
  flex-shrink: 0;
}

.about__photo-img {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 5px solid var(--lavender);
  object-fit: cover;
  object-position: center top;
  box-shadow: var(--shadow-md);
}

.about__text p {
  font-size: 1.05rem;
  margin-bottom: 16px;
  color: var(--text);
}

.about__location {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--forest) !important;
  font-size: 1.1rem !important;
}

.about__studio-link {
  color: var(--terra) !important;
  text-decoration: underline;
  text-decoration-color: var(--honey);
  text-underline-offset: 3px;
  transition: all var(--transition);
}

.about__studio-link:hover {
  color: var(--terra-dark) !important;
  text-decoration-color: var(--terra);
}

/* --- Course Section --- */
.course {
  padding: 96px 0;
  background: var(--white);
}

.course__map {
  margin-bottom: 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.course__map iframe {
  filter: grayscale(100%) contrast(1.1);
  transition: filter var(--transition);
}

.course__map:hover iframe {
  filter: grayscale(40%);
}

.course__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.course-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  border: 2px solid transparent;
  transition: all var(--transition);
}

.course-card:hover {
  border-color: var(--forest-light);
  transform: translateY(-2px);
}

.course-card__icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 12px;
}

.course-card__label {
  font-size: 1.15rem;
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lavender);
  margin-bottom: 8px;
}

.course-card:nth-child(1) { border-bottom: 4px solid var(--honey); }
.course-card:nth-child(2) { border-bottom: 4px solid var(--pink); }
.course-card:nth-child(3) { border-bottom: 4px solid var(--lavender); }
.course-card:nth-child(4) { border-bottom: 4px solid var(--forest-light); }

.course-card__value {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--forest);
  line-height: 1.6;
}

.course-card__sub {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 6px;
}

/* --- Pricing Section --- */
.pricing {
  padding: 96px 0;
  background: var(--cream);
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  border: 2px solid transparent;
  transition: all var(--transition);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pricing-card--featured {
  border-color: var(--pink);
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}

.pricing-card--featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  padding: 4px 16px;
  border-radius: var(--radius-xl);
  color: var(--white);
}

.pricing-card__badge--free {
  background: var(--forest);
}

.pricing-card__badge--popular {
  background: var(--pink);
}

.pricing-card__badge--best {
  background: var(--lavender);
}

.pricing-card__title {
  font-size: 1.15rem;
  color: var(--forest);
  margin-bottom: 16px;
  margin-top: 8px;
}

.pricing-card__price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 3rem;
  color: var(--forest);
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-card__currency {
  font-size: 1.5rem;
  font-weight: 600;
}

.pricing-card__per {
  font-size: 0.9rem;
  color: var(--forest-dark);
  font-weight: 600;
  margin-bottom: 12px;
}

.pricing-card__desc {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 24px;
  line-height: 1.5;
}

/* --- Pricing Card Clickable --- */
.pricing-card[data-package] {
  cursor: pointer;
}

.pricing-card__select {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--terra);
  padding: 8px 24px;
  border: 2px solid var(--terra);
  border-radius: var(--radius-xl);
  transition: all var(--transition);
}

.pricing-card:hover .pricing-card__select {
  background: var(--terra);
  color: var(--white);
}

.pricing-card--selected {
  border-color: var(--terra) !important;
  box-shadow: var(--shadow-lg) !important;
  background: var(--cream) !important;
}

.pricing-card--selected .pricing-card__select {
  background: var(--terra);
  color: var(--white);
}

/* --- Package Select in Form --- */
.package-select {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.package-option {
  cursor: pointer;
}

.package-option input {
  display: none;
}

.package-option__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 12px;
  border: 2px solid rgba(74, 124, 89, 0.3);
  border-radius: var(--radius-md);
  background: var(--cream);
  transition: all var(--transition);
  text-align: center;
}

.package-option input:checked + .package-option__box {
  border-color: var(--terra);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(212, 114, 74, 0.15);
}

.package-option:hover .package-option__box {
  border-color: var(--forest);
}

.package-option__name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--forest);
}

.package-option__price {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 600;
  margin-top: 2px;
}

@media (max-width: 480px) {
  .package-select {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
}

/* --- Testimonials Section --- */
.testimonials {
  padding: 96px 0;
  background: var(--white);
}

.testimonials .section-title::after {
  background: var(--pink);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.testimonial-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  border-top: 4px solid var(--pink);
  transition: transform var(--transition), box-shadow var(--transition);
}

.testimonial-card:nth-child(2) {
  border-top-color: var(--lavender);
}

.testimonial-card:nth-child(3) {
  border-top-color: var(--honey);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-card__emoji {
  font-size: 2.25rem;
  margin-bottom: 16px;
}

.testimonial-card__quote {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
}

.testimonial-card__quote::before {
  content: '\201E';
  font-size: 3rem;
  font-style: normal;
  color: var(--pink-light);
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: serif;
  line-height: 1;
  opacity: 0.5;
}

.testimonial-card__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--forest);
}

.testimonial-card__child {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 2px;
}

.testimonials__empty {
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
  padding: 48px 24px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  border: 2px dashed var(--lavender-light);
}

.testimonials__empty-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 16px;
}

.testimonials__empty-text {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--forest);
  margin-bottom: 12px;
}

.testimonials__empty-sub {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 24px;
}

.testimonials__google-btn {
  font-size: 0.95rem;
}

/* --- Booking Section --- */
.booking {
  padding: 96px 0;
  background: var(--white);
}

.booking__subtitle {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--forest);
  margin-top: -32px;
  margin-bottom: 8px;
}

.booking__desc {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 40px;
}

.booking__wrapper {
  max-width: 560px;
  margin: 0 auto;
}

.booking__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--forest);
  margin-bottom: 6px;
}

.form-group__optional {
  font-weight: 400;
  color: var(--text-light);
  font-size: 0.85rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 14px 18px;
  border: 2px solid rgba(74, 124, 89, 0.3);
  border-radius: var(--radius-md);
  background: var(--cream);
  color: var(--text);
  transition: all var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--forest);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(74, 124, 89, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #b0b8b4;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.booking__thankyou {
  display: none;
  text-align: center;
  padding: 48px 24px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  animation: fadeUp 0.5s ease;
}

.booking__thankyou.is-active {
  display: block;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.booking__thankyou-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 16px;
}

.booking__thankyou h3 {
  font-size: 1.5rem;
  color: var(--forest);
  margin-bottom: 8px;
}

.booking__thankyou p {
  color: var(--text-light);
  font-size: 1.05rem;
}

.booking__contact {
  margin-top: 40px;
  text-align: center;
}

.booking__contact-title {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 20px;
}

.booking__contact-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.booking__contact-item {
  font-size: 1.05rem;
  color: var(--forest);
  font-weight: 600;
  transition: color var(--transition);
}

.booking__contact-item:hover {
  color: var(--forest-light);
}

/* --- FAQ Section --- */
.faq {
  padding: 96px 0;
  background: var(--cream);
}

.faq__list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid transparent;
  transition: border-color var(--transition);
}

.faq-item:hover {
  border-color: rgba(74, 124, 89, 0.2);
}

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--forest);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color var(--transition);
}

.faq-item__question:hover {
  color: var(--forest-light);
}

.faq-item__icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--lavender);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-item.is-open .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item__answer p {
  padding: 0 24px 20px;
  color: var(--text-light);
  line-height: 1.7;
}

.faq-item.is-open .faq-item__answer {
  max-height: 300px;
}

/* --- Bring a Friend --- */
.bring-friend {
  padding: 80px 0 0;
  background: linear-gradient(135deg, var(--honey) 0%, var(--pink-light) 100%);
  position: relative;
  overflow: hidden;
}

.bring-friend::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.bring-friend::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.bring-friend__content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.bring-friend__title {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  color: var(--forest-dark);
  margin-bottom: 12px;
}

.bring-friend__text {
  font-size: 1.1rem;
  color: var(--forest-dark);
  max-width: 500px;
  margin: 0 auto 28px;
  opacity: 0.85;
}

.bring-friend__kids {
  width: 85%;
  max-width: 750px;
  margin: -40px auto 0;
  display: block;
  opacity: 0.25;
  pointer-events: none;
  position: relative;
  z-index: 0;
}

/* --- Footer --- */
.footer {
  padding: 48px 0 32px;
  background: var(--cream-dark);
  color: var(--text-light);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.footer__brand {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--forest);
  margin-bottom: 12px;
}

.footer__links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 16px;
}

.footer__links a {
  font-size: 0.9rem;
  color: var(--text-light);
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--pink);
}

.footer__copy {
  font-size: 0.85rem;
  margin-bottom: 4px;
}

.footer__love {
  font-size: 0.8rem;
  color: var(--lavender);
}

/* ============================================
   Responsive Design
   ============================================ */

/* Tablet */
@media (max-width: 768px) {
  .nav__toggle {
    display: flex;
  }

  .nav__menu {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(255, 248, 240, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 16px 24px 24px;
    gap: 4px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
    border-bottom: 1px solid rgba(74, 124, 89, 0.15);
  }

  .nav__menu.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav__link {
    padding: 12px 16px;
    font-size: 1rem;
    width: 100%;
    text-align: center;
  }

  .nav__link--cta {
    margin-left: 0;
    margin-top: 8px;
  }

  .nav__toggle.is-open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav__toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .nav__toggle.is-open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .about__content {
    flex-direction: column;
    text-align: center;
  }

  .about__photo-img {
    width: 180px;
    height: 180px;
  }

  .pricing-card--featured {
    transform: scale(1);
  }

  .pricing-card--featured:hover {
    transform: translateY(-4px);
  }

  .hero {
    min-height: auto;
    padding: 100px 24px 200px;
  }

  .hero__kids {
    width: 100%;
    max-width: none;
  }

  .benefits,
  .about,
  .course,
  .pricing,
  .testimonials,
  .booking,
  .faq {
    padding: 72px 0;
  }

  .section-title {
    margin-bottom: 36px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .hero__title {
    font-size: 2rem;
  }

  .hero__subtitle {
    font-size: 1.1rem;
  }

  .hero__details {
    font-size: 0.95rem;
  }

  .hero__cta {
    padding: 14px 28px;
    font-size: 1rem;
  }

  .benefits__grid {
    grid-template-columns: 1fr;
  }

  .course__grid {
    grid-template-columns: 1fr;
  }

  .pricing__grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }

  .benefit-card {
    padding: 28px 24px;
  }

  .pricing-card {
    padding: 28px 24px;
  }

  .faq-item__question {
    font-size: 0.95rem;
    padding: 16px 18px;
  }

  .faq-item__answer p {
    padding: 0 18px 16px;
    font-size: 0.9rem;
  }

  .bring-friend {
    padding: 60px 0;
  }

  .bring-friend__title {
    font-size: 1.4rem;
  }
}
