/* ===== Variables ===== */
:root {
  --lilac: #b8a9d4;
  --lilac-light: #d4c8e8;
  --lilac-lighter: #ece6f5;
  --lilac-lightest: #f5f1fa;
  --lilac-pale: #faf8fd;
  --lilac-dark: #7c6a9e;
  --lilac-deep: #5a4a7a;
  --white: #ffffff;
  --text: #3d3252;
  --text-light: #6b5e80;
  --font: 'Poppins', sans-serif;
}

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

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

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--lilac-pale);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

/* ===== Navigation ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 248, 253, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--lilac-lighter);
  transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(124, 106, 158, 0.08);
}

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

.logo {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--lilac-dark);
  text-decoration: none;
  letter-spacing: -0.02em;
}

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

.nav-links a {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--lilac-dark);
}

.lang-btn {
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 500;
  background: var(--lilac-lighter);
  color: var(--lilac-dark);
  border: none;
  padding: 6px 14px;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.2s;
}

.lang-btn:hover {
  background: var(--lilac-light);
}

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

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(170deg, var(--lilac-lightest) 0%, var(--lilac-light) 50%, var(--lilac) 100%);
  padding: 120px 24px 80px;
  position: relative;
}

.hero-tagline {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--lilac-dark);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  text-shadow: 0 2px 30px rgba(124, 106, 158, 0.3);
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 300;
  color: var(--white);
  max-width: 540px;
  margin: 0 auto 40px;
  opacity: 0.9;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.5rem;
  color: var(--white);
  opacity: 0.5;
  animation: float 2s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 50px;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--white);
  color: var(--lilac-dark);
  box-shadow: 0 4px 20px rgba(124, 106, 158, 0.2);
}

.btn-primary:hover {
  background: var(--lilac-lightest);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(124, 106, 158, 0.25);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.6);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.btn-large {
  font-size: 1.05rem;
  padding: 16px 40px;
}

/* ===== Sections ===== */
.section {
  padding: 100px 0;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 600;
  color: var(--lilac-deep);
  text-align: center;
  margin-bottom: 48px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  text-align: center;
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-light);
  max-width: 500px;
  margin: -32px auto 48px;
}

/* ===== What's This About ===== */
.section-about-brief {
  background: var(--white);
}

.about-brief-content {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.about-text {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-light);
}

/* ===== How It Works ===== */
.section-how {
  background: var(--lilac-pale);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.step-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px 28px;
  border: 1px solid var(--lilac-lighter);
  transition: transform 0.2s, box-shadow 0.2s;
}

.step-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(124, 106, 158, 0.1);
}

.step-card-magic {
  background: linear-gradient(135deg, var(--lilac-lighter), var(--lilac-light));
  border-color: transparent;
}

.step-card-magic .step-number {
  background: var(--white);
  color: var(--lilac-dark);
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--lilac-lighter);
  color: var(--lilac-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.step-card p {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.6;
}

/* ===== Get on Stage ===== */
.section-stage {
  background: linear-gradient(135deg, var(--lilac-light), var(--lilac));
  text-align: center;
}

.section-stage .section-title {
  color: var(--white);
}

.stage-content {
  max-width: 600px;
  margin: 0 auto;
}

.stage-text {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 36px;
}

.section-stage .btn-primary {
  background: var(--white);
  color: var(--lilac-deep);
}

.section-stage .btn-primary:hover {
  background: var(--lilac-lightest);
}

/* ===== Next Shows ===== */
.section-shows {
  background: var(--white);
  text-align: center;
}

.shows-cta {
  margin-top: 16px;
}

.section-shows .btn-primary {
  background: var(--lilac);
  color: var(--white);
}

.section-shows .btn-primary:hover {
  background: var(--lilac-dark);
}

/* ===== Our Story ===== */
.section-story {
  background: var(--lilac-pale);
}

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

.story-text h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--lilac-dark);
  margin-bottom: 16px;
}

.story-text p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.8;
}

/* ===== FAQ ===== */
.section-faq {
  background: var(--white);
}

.faq-list {
  max-width: 680px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--lilac-lighter);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-family: var(--font);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  padding: 24px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.2s;
}

.faq-question::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--lilac);
  transition: transform 0.3s;
}

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

.faq-question:hover {
  color: var(--lilac-dark);
}

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

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

.faq-answer p {
  padding-bottom: 24px;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.7;
}

/* ===== Footer ===== */
.footer {
  background: var(--lilac-deep);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 32px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 32px;
}

.footer-brand h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.footer-brand p {
  font-size: 0.9rem;
  font-weight: 300;
}

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

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 24px;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 300;
}

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

  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(250, 248, 253, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--lilac-lighter);
    transform: translateY(-120%);
    transition: transform 0.3s ease;
  }

  .nav-links.open {
    transform: translateY(0);
  }

  .hero {
    padding: 100px 24px 60px;
    min-height: 90vh;
  }

  .section {
    padding: 72px 0;
  }

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

  .footer-content {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-links {
    align-items: center;
  }
}
