/* ========================================
   MOONLET METHOD — Mindful Movement by Dilara
   Minimalistisch & Elegant
   ======================================== */

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

:root {
  --white: #FFFFFF;
  --cream: #F0EDE8;
  --sage: #8AABBF;
  --sage-dark: #5B8BA6;
  --sage-light: #A8C4D4;
  --dark: #1A1A2E;
  --dark-light: #2D2D44;
  --warm-gray: #7A7B8A;
  --beige: #DDD8D0;
  --beige-dark: #C4BAB0;
  --moon-glow: #C8D8E8;
  --night: #0F1B2D;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul { list-style: none; }

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

/* --- Typography --- */
h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-align: center;
}

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

.btn-primary:hover {
  background: var(--sage-dark);
  border-color: var(--sage-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(138, 171, 191, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}

.btn-outline:hover {
  background: var(--dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

/* --- Container --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(26, 26, 46, 0.92);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--white);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
}

.navbar.scrolled .logo {
  color: var(--cream);
}

.nav-links {
  display: flex;
  gap: 36px;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--sage);
  transition: width var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

.navbar.scrolled .nav-links a {
  color: rgba(255, 255, 255, 0.7);
}

.navbar.scrolled .nav-links a:hover {
  color: var(--moon-glow);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}

.navbar.scrolled .nav-toggle span {
  background: var(--cream);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
}

.parallax-section {
  background: url('dilara-meditation.jpeg') center top/cover no-repeat fixed;
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 27, 45, 0.5) 0%,
    rgba(15, 27, 45, 0.25) 40%,
    rgba(15, 27, 45, 0.6) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 24px;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.8);
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-indicator span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  position: relative;
}

.scroll-indicator span::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 2px;
  animation: scrollBounce 2s infinite;
}

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

/* --- Sections --- */
.section {
  padding: 120px 0;
}

.section-alt {
  background: var(--cream);
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.section-label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--dark);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1rem;
  color: var(--warm-gray);
  line-height: 1.8;
}

/* --- Courses Grid --- */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.course-card {
  background: var(--white);
  border: 1px solid var(--beige);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  transition: all var(--transition);
}

.course-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
  border-color: var(--sage-light);
}

.course-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  color: var(--sage);
}

.course-icon svg {
  width: 100%;
  height: 100%;
}

.course-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--dark);
}

.course-card p {
  font-size: 0.9rem;
  color: var(--warm-gray);
  margin-bottom: 20px;
  line-height: 1.7;
}

.course-level {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--sage-dark);
  background: rgba(156, 175, 136, 0.12);
  padding: 6px 16px;
  border-radius: 20px;
}

/* --- Parallax Dividers --- */
.parallax-divider {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}

.parallax-divider-1 {
  background: url('dilara-kick.jpeg') center/cover no-repeat fixed;
}

.parallax-divider-2 {
  background: url('dilara-meditation.jpeg') center/cover no-repeat fixed;
}

.parallax-divider .parallax-overlay {
  background: rgba(45, 45, 45, 0.35);
}

.divider-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  padding: 0 24px;
}

.divider-quote {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
}

/* --- Pricing Grid --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: start;
}

.price-card {
  background: var(--white);
  border: 1px solid var(--beige);
  border-radius: 20px;
  padding: 48px 36px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.price-card-featured {
  border-color: var(--sage);
  box-shadow: 0 12px 40px rgba(156, 175, 136, 0.15);
  transform: scale(1.04);
}

.price-card-featured:hover {
  transform: scale(1.04) translateY(-8px);
  box-shadow: 0 24px 60px rgba(156, 175, 136, 0.2);
}

.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sage);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 24px;
  border-radius: 20px;
}

.price-header h3 {
  font-size: 1.6rem;
  margin-bottom: 4px;
}

.price-desc {
  font-size: 0.85rem;
  color: var(--warm-gray);
  margin-bottom: 24px;
}

.price-amount {
  margin-bottom: 32px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

.currency {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--dark);
  align-self: flex-start;
  margin-top: 8px;
}

.amount {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1;
}

.period {
  font-size: 0.9rem;
  color: var(--warm-gray);
}

.price-features {
  margin-bottom: 36px;
  text-align: left;
}

.price-features li {
  padding: 10px 0;
  font-size: 0.9rem;
  color: var(--dark-light);
  border-bottom: 1px solid var(--beige);
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-features li::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--sage-light);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
}

.price-features li.disabled {
  color: var(--beige-dark);
}

.price-features li.disabled::before {
  background-color: var(--beige);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E");
  background-size: 10px;
}

/* --- Trainer Grid --- */
.trainer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.trainer-card {
  text-align: center;
  transition: transform var(--transition);
}

.trainer-card:hover {
  transform: translateY(-6px);
}

.trainer-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  margin: 0 auto 24px;
  overflow: hidden;
  background: var(--cream);
  border: 4px solid var(--beige);
}

.trainer-photo svg,
.trainer-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trainer-card h3 {
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.trainer-role {
  font-size: 0.85rem;
  color: var(--sage-dark);
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.trainer-bio {
  font-size: 0.9rem;
  color: var(--warm-gray);
  max-width: 280px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- Contact Grid --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--dark-light);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px;
  border: 1px solid var(--beige);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(156, 175, 136, 0.15);
}

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.info-card {
  background: var(--white);
  border: 1px solid var(--beige);
  border-radius: 16px;
  padding: 28px 32px;
}

.info-card h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--dark);
}

.info-card p {
  font-size: 0.9rem;
  color: var(--warm-gray);
  line-height: 1.8;
}

/* --- Footer --- */
.footer {
  background: var(--night);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 30px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: start;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
  color: var(--white);
  display: block;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.9rem;
  max-width: 300px;
}

.footer-links {
  display: flex;
  gap: 32px;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--sage-light);
}

.footer-bottom {
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

/* --- Hero Buttons --- */
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* --- About Section --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-photo-frame {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.about-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-tagline {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--sage-dark);
  margin-bottom: 24px;
}

.about-text p {
  font-size: 0.95rem;
  color: var(--dark-light);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-values {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.value-tag {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--sage-dark);
  background: rgba(156, 175, 136, 0.12);
  padding: 8px 18px;
  border-radius: 20px;
}

/* --- Moonlet Story --- */
.moonlet-story {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.moonlet-text {
  margin-top: 32px;
  text-align: left;
}

.moonlet-text p {
  font-size: 1.05rem;
  color: var(--dark-light);
  margin-bottom: 20px;
  line-height: 1.9;
}

.moonlet-text p:first-child {
  font-size: 1.1rem;
}

/* --- Offer Grid --- */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.offer-card {
  background: var(--white);
  border: 1px solid var(--beige);
  border-radius: 20px;
  padding: 48px 32px;
  text-align: center;
  transition: all var(--transition);
}

.offer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
  border-color: var(--sage-light);
}

.offer-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 24px;
  color: var(--sage);
}

.offer-icon svg {
  width: 100%;
  height: 100%;
}

.offer-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--dark);
}

.offer-card p {
  font-size: 0.9rem;
  color: var(--warm-gray);
  margin-bottom: 24px;
  line-height: 1.7;
}

.offer-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--sage-dark);
  letter-spacing: 0.5px;
  position: relative;
  transition: color var(--transition);
}

.offer-link::after {
  content: ' \2192';
}

.offer-link:hover {
  color: var(--sage);
}

/* --- Reels Grid --- */
.reels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.reel-card {
  background: var(--white);
  border: 1px solid var(--beige);
  border-radius: 16px;
  overflow: hidden;
  transition: all var(--transition);
}

.reel-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.reel-card {
  position: relative;
}

.reel-card .reel-video {
  position: relative;
  overflow: hidden;
  height: 340px;
}

.reel-card iframe {
  position: absolute;
  top: -60px;
  left: -1px;
  width: calc(100% + 2px);
  height: 700px;
  border: none;
}

.reel-caption {
  padding: 20px 24px;
}

.reel-caption h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 4px;
  color: var(--dark);
}

.reel-caption p {
  font-size: 0.85rem;
  color: var(--warm-gray);
  line-height: 1.6;
}

.reels-cta {
  text-align: center;
  margin-top: 48px;
}

/* --- Info Card Link --- */
.info-card a {
  color: var(--sage-dark);
  font-weight: 500;
  transition: color var(--transition);
}

.info-card a:hover {
  color: var(--sage);
}

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

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

/* --- Responsive --- */
@media (max-width: 968px) {
  .courses-grid,
  .pricing-grid,
  .trainer-grid,
  .offer-grid,
  .reels-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .about-photo-frame {
    max-height: 500px;
    max-width: 350px;
    margin: 0 auto;
  }

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

  .price-card-featured:hover {
    transform: translateY(-8px);
  }

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

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    transition: right 0.4s ease;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    color: var(--dark) !important;
    font-size: 1rem;
  }

  .courses-grid,
  .offer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .trainer-grid,
  .reels-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 400px;
    margin: 0 auto;
  }

  .reel-card iframe {
    height: 380px;
  }

  .section {
    padding: 80px 0;
  }

  .parallax-divider {
    height: 300px;
    background-attachment: scroll;
  }

  .parallax-section {
    background-attachment: scroll;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .footer-content {
    flex-direction: column;
    gap: 28px;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 20px;
  }

  /* Nav toggle animation */
  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .price-card {
    padding: 36px 24px;
  }

  .container {
    padding: 0 16px;
  }
}
