/* ========================================
   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);
}

/* Language Switch Button */
.lang-switch {
  border: 1.5px solid rgba(255, 255, 255, 0.6) !important;
  border-radius: 4px;
  padding: 4px 12px !important;
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  letter-spacing: 1.5px;
  transition: all var(--transition);
}

.lang-switch:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white) !important;
}

.lang-switch::after {
  display: none !important;
}

.navbar.scrolled .lang-switch {
  border-color: rgba(255, 255, 255, 0.4) !important;
}

.navbar.scrolled .lang-switch:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--moon-glow) !important;
  color: var(--moon-glow) !important;
}

/* --- 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);
}

/* --- Yoga Kurse Grid --- */
.yoga-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.yoga-card {
  background: var(--white);
  border: 1px solid var(--beige);
  border-radius: 20px;
  padding: 40px 32px 32px;
  transition: all var(--transition);
  position: relative;
}

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

.yoga-card-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  color: var(--sage);
}

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

.yoga-card h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.yoga-level {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--sage-dark);
  background: rgba(138, 171, 191, 0.12);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

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

.yoga-benefits {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.yoga-benefits li {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--sage-dark);
  background: rgba(138, 171, 191, 0.08);
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid rgba(138, 171, 191, 0.15);
}

/* --- Wochenplan / Schedule --- */
.schedule-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  min-width: 700px;
}

.schedule-table thead th {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--warm-gray);
  padding: 16px 12px;
  border-bottom: 2px solid var(--beige);
  text-align: center;
}

.schedule-table thead th:first-child {
  text-align: left;
  width: 80px;
}

.schedule-table tbody td {
  padding: 14px 8px;
  border-bottom: 1px solid rgba(221, 216, 208, 0.5);
  text-align: center;
  vertical-align: top;
  min-height: 60px;
}

.schedule-time {
  font-weight: 500;
  color: var(--dark);
  text-align: left !important;
  font-size: 0.85rem;
}

.schedule-class {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 8px 6px 4px;
  border-radius: 8px;
  line-height: 1.3;
}

.schedule-class.hatha {
  background: rgba(138, 171, 191, 0.15);
  color: var(--sage-dark);
}

.schedule-class.yin {
  background: rgba(168, 140, 180, 0.15);
  color: #7B6B8A;
}

.schedule-class.vinyasa {
  background: rgba(180, 160, 130, 0.15);
  color: #8A7A60;
}

.schedule-class.nidra {
  background: rgba(100, 140, 160, 0.15);
  color: #4A7A90;
}

.schedule-duration {
  display: block;
  font-size: 0.7rem;
  color: var(--warm-gray);
  margin-top: 2px;
  padding-bottom: 4px;
}

.schedule-legend {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--warm-gray);
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.legend-dot.hatha { background: var(--sage); }
.legend-dot.yin { background: #A88CB4; }
.legend-dot.vinyasa { background: #B4A082; }
.legend-dot.nidra { background: #648CA0; }

.schedule-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--warm-gray);
  margin-top: 20px;
  font-style: italic;
}

.schedule-note a {
  color: var(--sage-dark);
  text-decoration: underline;
}

/* --- Booking System --- */
.booking-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 20px;
  border: 1.5px solid var(--beige);
  border-radius: 24px;
  background: transparent;
  color: var(--warm-gray);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn:hover {
  border-color: var(--sage-light);
  color: var(--sage-dark);
}

.filter-btn.active {
  background: var(--sage-dark);
  border-color: var(--sage-dark);
  color: var(--white);
}

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

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

.booking-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
}

.booking-card-header {
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.booking-card-header.hatha { background: rgba(138, 171, 191, 0.12); }
.booking-card-header.yin { background: rgba(168, 140, 180, 0.12); }
.booking-card-header.vinyasa { background: rgba(180, 160, 130, 0.12); }
.booking-card-header.nidra { background: rgba(100, 140, 160, 0.12); }

.booking-tag {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--warm-gray);
}

.booking-type {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dark);
}

.booking-card-body {
  padding: 20px;
}

.booking-date {
  margin-bottom: 12px;
}

.booking-day {
  font-weight: 500;
  color: var(--dark);
  font-size: 0.95rem;
}

.booking-datum {
  color: var(--warm-gray);
  font-size: 0.85rem;
  margin-left: 8px;
}

.booking-time,
.booking-location {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--warm-gray);
  margin-bottom: 8px;
}

.booking-time svg,
.booking-location svg {
  flex-shrink: 0;
  color: var(--sage);
}

.booking-spots {
  margin: 16px 0;
}

.spots-bar {
  width: 100%;
  height: 6px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 6px;
}

.spots-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 0.6s ease;
}

.spots-green .spots-fill { background: #6BAF7A; }
.spots-yellow .spots-fill { background: #D4A843; }
.spots-orange .spots-fill { background: #D4783A; }
.spots-red .spots-fill { background: #C45B5B; }

.spots-text {
  font-size: 0.75rem;
  font-weight: 500;
}

.spots-green .spots-text { color: #4A8A5A; }
.spots-yellow .spots-text { color: #B08A30; }
.spots-orange .spots-text { color: #B05A20; }
.spots-red .spots-text { color: #A04040; }

.btn-book {
  width: 100%;
  margin-top: 8px;
  padding: 10px;
  font-size: 0.85rem;
  border-radius: 10px;
  border: none;
  cursor: pointer;
}

.btn-disabled {
  background: var(--beige) !important;
  color: var(--warm-gray) !important;
  cursor: not-allowed;
}

/* --- Booking Modal --- */
.booking-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.booking-modal.active {
  opacity: 1;
  visibility: visible;
}

.booking-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 27, 45, 0.6);
  backdrop-filter: blur(4px);
}

.booking-modal-content {
  position: relative;
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  max-width: 480px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.booking-modal.active .booking-modal-content {
  transform: translateY(0);
}

.booking-modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--warm-gray);
  cursor: pointer;
  line-height: 1;
}

.booking-modal-close:hover {
  color: var(--dark);
}

.booking-modal-content h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  margin-bottom: 8px;
  color: var(--dark);
}

.modal-details {
  font-size: 0.85rem;
  color: var(--sage-dark);
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--beige);
}

.booking-form .form-group {
  margin-bottom: 16px;
}

.booking-form label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 6px;
}

.booking-form input,
.booking-form textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--beige);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color var(--transition);
  background: var(--white);
}

.booking-form input:focus,
.booking-form textarea:focus {
  outline: none;
  border-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;
  border-radius: 12px 12px 0 0;
  aspect-ratio: 4/5;
}

.reel-card iframe {
  position: absolute;
  top: -60px;
  left: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 120px);
  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) {
  .yoga-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .booking-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .booking-modal-content {
    padding: 28px 24px;
  }

  .schedule-table {
    font-size: 0.75rem;
  }

  .schedule-legend {
    gap: 16px;
  }

  .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 .reel-video {
    aspect-ratio: 3/4;
  }
  .reel-card iframe {
    top: -40px;
    height: calc(100% + 80px);
  }

  .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;
  }
}

/* Honeypot Spam Protection */
.ohnehonig { position: absolute; left: -9999px; }

/* Price display on booking cards */
.booking-price { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin: 8px 0 4px; }
.booking-price.free { color: var(--sage-dark); font-weight: 500; font-size: 0.85rem; }
.btn-disabled { background: var(--beige) !important; color: var(--warm-gray) !important; cursor: not-allowed; border: 1px solid var(--beige); }

/* Course type tags in Angebot section */
.course-tag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid;
  transition: transform 0.2s, box-shadow 0.2s;
}
.course-tag:hover { transform: translateY(-1px); box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
.course-tag.yoga { background: #f0f5f3; color: #3d6b5e; border-color: #c8ddd5; }
.course-tag.movement { background: #f5f0eb; color: #8b6f47; border-color: #ddd0bf; }
.course-tag.pilates { background: #edf1f7; color: #4a5e80; border-color: #c5d0e3; }
.course-tag.other { background: #f7f0f4; color: #7a4d6b; border-color: #ddc5d5; }
