/* SHARED STYLES FOR MOODFOREST PAGES */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: #111111;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAVIGATION */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #e5e5e5;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #111;
  font-weight: 600;
  font-size: 16px;
}

.logo-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #f5f5f5;
  border: 1px solid #e5e5e5;
}

.logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  color: #111;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #2d7a4a;
}

.nav-cta {
  padding: 10px 20px;
  background: #f5f5f5;
  color: #111;
  border: 1px solid #111;
  border-radius: 20px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s;
  cursor: pointer;
}

.nav-cta:hover {
  background: #e8e8e8;
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid #111;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: #111;
  transition: all 0.3s ease;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 86vw);
  background: #fff;
  z-index: 300;
  padding: 88px 28px 28px;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.12);
}

.mobile-drawer.open {
  transform: translateX(0);
}

.mobile-drawer a {
  display: block;
  color: #111;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 600;
  padding: 16px 0;
  border-bottom: 1px solid #e5e5e5;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.24);
  z-index: 250;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.drawer-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

/* CORE TYPOGRAPHY & LAYOUT */
.container {
  max-width: 1200px;
  margin: 0 auto;
}

h1 {
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  line-height: 1.1;
  letter-spacing: -0.05em;
  font-weight: 600;
}

h2 {
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  font-weight: 600;
}

h3 {
  font-size: 1.4rem;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 16px;
}

p {
  color: #555;
  font-size: 1.1rem;
  line-height: 1.7;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 11px;
  color: #2d7a4a;
  margin-bottom: 24px;
  font-weight: 500;
}

/* SECTIONS */
section {
  padding: 80px 24px;
  border-bottom: 1px solid #e5e5e5;
}

/* BUTTONS */
.btn {
  padding: 16px 32px;
  border-radius: 24px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-block;
  cursor: pointer;
  border: none;
}

.btn-dark {
  background: #111;
  color: white;
}

.btn-dark:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.btn-light {
  border: 1px solid #2d7a4a;
  color: #2d7a4a;
  background: #e8f5e9;
}

.btn-light:hover {
  background: #d4edda;
  border-color: #1b5a2f;
  color: #1b5a2f;
  transform: translateY(-2px);
}

/* FOOTER */
footer {
  background: #f9f9f9;
  padding: 48px 24px;
  border-top: 1px solid #e5e5e5;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo {
  font-size: 1.4rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 16px;
}

.footer-tagline {
  color: #666;
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.footer-tagline a {
  color: #2d7a4a;
  text-decoration: none;
  font-weight: 500;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.footer-links a {
  color: #555;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #2d7a4a;
}

.footer-copy {
  color: #999;
  font-size: 0.85rem;
}

/* ANIMATIONS */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slowFloat {
  0% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-14px) scale(1.015);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* SHARED COMPONENTS */
.hero {
  padding-top: 120px;
  padding-bottom: 80px;
  padding-left: 24px;
  padding-right: 24px;
}

.hero-sub {
font-size: 1.2rem;
color: #555;
max-width: 700px;
margin: 24px auto;

animation: fadeInUp 0.8s ease 0.3s both;
}

/* MQ BOX */
.mq-box {
  background: linear-gradient(135deg, #f9f9f9 0%, #f5fdf8 100%);
  padding: 60px 40px;
  border-radius: 16px;
  border: 2px solid #2d7a4a;
  text-align: center;
  margin-top: 22px;
}

.mq-icon {
  font-size: 3rem;
  margin-bottom: 24px;
}

.mq-box h3 {
  margin-bottom: 12px;
}

.mq-box p {
  margin-bottom: 24px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  color: #666;
}

/* BASELINE CTA */
.baseline-cta {
  background: linear-gradient(135deg, #f9f9f9 0%, #f5fdf8 100%);
  padding: 60px 40px;
  border-radius: 16px;
  border: 1px solid #e5e5e5;
  text-align: center;
  margin-top: 48px;
}

.baseline-cta h3 {
  margin-bottom: 16px;
}

.baseline-cta p {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 24px;
}

.baseline-price {
  font-size: 2rem;
  font-weight: 700;
  color: #2d7a4a;
  margin-bottom: 8px;
}

.baseline-details {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 32px;
}

.booking-cost {
  font-size: 1.3rem;
  color: #999;
  margin-bottom: 24px;
}

/* PROGRAM SECTION */
.program-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
}

.program-card {
  padding: 40px 32px;
  background: #fafafa;
  border-radius: 16px;
  border: 2px solid #e5e5e5;
  transition: all 0.3s ease;
}

.program-card:hover {
  border-color: #2d7a4a;
  background: #f5fdf8;
}

.program-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #111;
}

.program-description {
  font-size: 1rem;
  color: #666;
  margin-bottom: 24px;
  line-height: 1.6;
}

.price {
  font-size: 2rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 32px;
}

.price-label {
  font-size: 0.9rem;
  color: #999;
  margin-bottom: 24px;
}

.program-features {
  list-style: none;
  margin-bottom: 24px;
  padding: 24px;
  background: #f5fdf8;
  border-radius: 12px;
  border: 1px solid #d4edda;
}

.program-features li {
  padding: 8px 0;
  font-size: 0.95rem;
  color: #555;
}

.program-features li::before {
  content: '✓ ';
  color: #2d7a4a;
  font-weight: 700;
  margin-right: 8px;
}

/* TIMELINE */
.timeline {
  margin-top: 48px;
  position: relative;
}

.timeline-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.timeline-item {
  background: #fafafa;
  border-radius: 12px;
  border: 1px solid #e5e5e5;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
}

.timeline-item:hover {
  border-color: #2d7a4a;
  background: #f5fdf8;
}

.timeline-phase {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #2d7a4a;
  font-weight: 600;
  margin-bottom: 12px;
}

.timeline-duration {
  font-size: 0.95rem;
  color: #999;
  margin-bottom: 12px;
}

.timeline-content h4 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: #111;
  font-weight: 600;
}

.timeline-content p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 0;
  line-height: 1.5;
}

/* VIDEO GALLERY */
.video-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.video-card {
  position: relative;
  aspect-ratio: 16/9;
  background: #f5f5f5;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid #e5e5e5;
}

.video-card:hover {
  border-color: #2d7a4a;
  transform: translateY(-8px);
}

.video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #f0f0f0;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.video-card:hover .video-overlay {
  background: rgba(0, 0, 0, 0.5);
}

.play-btn {
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.play-btn::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 16px solid #111;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  margin-left: 4px;
}

.video-card:hover .play-btn {
  background: #2d7a4a;
  transform: scale(1.1);
}

.video-card:hover .play-btn::after {
  border-left-color: white;
}

.video-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: white;
  font-size: 0.95rem;
  font-weight: 500;
}

/* TEAM SECTION */
.team-section {
  background: #fafafa;
}

.team-intro {
  max-width: 760px;
}

.team-grid-scroll {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.team-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.team-card:hover {
  border-color: #2d7a4a;
  transform: translateY(-4px);
}

.team-photo {
  aspect-ratio: 4 / 3;
  background: #e5e5e5;
  overflow: hidden;
}

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

.team-info {
  padding: 24px;
}

.team-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.85rem;
  color: #2d7a4a;
  font-weight: 500;
}

/* LOCATIONS SECTION */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.location-card {
  background: #fafafa;
  border-radius: 12px;
  border: 1px solid #e5e5e5;
  overflow: hidden;
  transition: all 0.3s ease;
}

.location-card:hover {
  border-color: #2d7a4a;
  background: #f5fdf8;
}

.location-image {
  width: 100%;
  aspect-ratio: 4/3;
  background: #e5e5e5;
  overflow: hidden;
}

.location-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.location-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 6px;
  padding: 24px 24px 0 24px;
}

.location-dates {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #2d7a4a;
  font-weight: 600;
  margin-bottom: 12px;
  padding: 0 24px;
}

.location-description {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
  padding: 0 24px 24px 24px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  nav {
    padding: 12px 16px;
  }

  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  h1 {
    font-size: clamp(1.8rem, 6vw, 3rem);
  }

  h2 {
    font-size: clamp(1.4rem, 4vw, 2.2rem);
  }

  section {
    padding: 60px 16px;
  }

  .container {
    padding: 0;
  }

  .timeline-container {
    grid-template-columns: 1fr;
  }

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

  
}
