@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --amber: #C9933C;
  --amber-dark: #A67A28;
  --amber-light: #E8BA6A;
  --bg-dark: #160F05;
  --bg-section: #1E1508;
  --bg-cream: #FBF5EC;
  --bg-light: #FFFFFF;
  --text-dark: #1A1208;
  --text-medium: #4A3A25;
  --text-light: #FBF5EC;
  --text-muted: #8B7355;
  --border: #3A2E1E;
  
  --container-width: 1200px;
  --padding-x: 24px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: clamp(32px, 5vw, 64px);
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(26px, 4vw, 42px);
  margin-bottom: 32px;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

p {
  margin-bottom: 16px;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--amber);
}

ul {
  list-style: none;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--padding-x);
}

/* Sections */
section {
  padding: 80px 0;
}

.section-dark {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.section-cream {
  background-color: var(--bg-cream);
  color: var(--text-dark);
}

/* Header & Nav */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: background-color 0.3s ease, padding 0.3s ease;
  background-color: rgba(22, 15, 5, 0.8);
  backdrop-filter: blur(10px);
  color: var(--text-light);
}

.site-header.scrolled {
  background-color: var(--bg-dark);
  padding: 15px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: 1px;
}

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

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn {
  display: inline-block;
  background-color: var(--amber);
  color: var(--bg-light);
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: var(--amber-dark);
  color: var(--bg-light);
  transform: translateY(-2px);
}

.btn-small {
  padding: 10px 20px;
  font-size: 14px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--text-light);
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text .subtitle {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Features / Who it's for */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.feature-card {
  background: var(--bg-light);
  padding: 40px 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  border-bottom: 3px solid transparent;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-bottom-color: var(--amber);
}

.feature-icon {
  font-size: 32px;
  color: var(--amber);
  margin-bottom: 20px;
}

.dark-card {
  background: var(--bg-section);
  color: var(--text-light);
  box-shadow: none;
  border: 1px solid var(--border);
}

/* Program Timeline */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 40px auto 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20px;
  height: 100%;
  width: 2px;
  background: var(--amber-light);
  opacity: 0.3;
}

.timeline-item {
  position: relative;
  padding-left: 60px;
  margin-bottom: 40px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: 11px;
  top: 5px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--amber);
  border: 4px solid var(--bg-cream);
}

/* Teacher */
.teacher-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.teacher-photo {
  position: relative;
}

.teacher-photo img {
  width: 100%;
  border-radius: 8px;
}

.teacher-decorative {
  position: absolute;
  width: 50%;
  bottom: -20px;
  right: -20px;
  border-radius: 8px;
  border: 4px solid var(--bg-dark);
}

/* Form */
.form-container {
  max-width: 600px;
  margin: 0 auto;
  background: var(--bg-light);
  padding: 50px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  font-size: 16px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-control:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(201, 147, 60, 0.1);
}

.radio-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.fine-print {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 15px;
  text-align: center;
}

.fine-print a {
  text-decoration: underline;
}

/* FAQ */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #E5DCCF;
  padding: 20px 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 18px;
}

.faq-icon {
  color: var(--amber);
  font-size: 24px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  color: var(--text-medium);
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-top: 15px;
}

/* Footer */
.site-footer {
  background-color: #0A0702;
  color: rgba(255, 255, 255, 0.6);
  padding: 60px 0 30px;
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  color: var(--amber);
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  margin-bottom: 15px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 20px;
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  transition: bottom 0.5s ease;
  box-shadow: 0 -5px 15px rgba(0,0,0,0.2);
}

.cookie-banner.visible {
  bottom: 0;
}

/* Simple text page */
.page-content {
  padding-top: 120px;
  max-width: 800px;
  margin: 0 auto;
}

/* Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content, .teacher-grid {
    grid-template-columns: 1fr;
  }
  
  .hero {
    padding-top: 120px;
    padding-bottom: 60px;
    text-align: center;
  }
  
  .hero-text .subtitle {
    margin: 0 auto 30px;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: var(--bg-dark);
    flex-direction: column;
    justify-content: center;
    transition: right 0.3s ease;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .hamburger {
    display: flex;
  }
  
  .hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  
  .form-container {
    padding: 30px 20px;
  }
  
  .cookie-banner {
    flex-direction: column;
    text-align: center;
  }
}
