/* =========================================================
   FONTS
   ========================================================= */
@font-face {
  font-family: 'Nunito';
  src: url('/fonts/nunito-v32-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Nunito';
  src: url('/fonts/nunito-v32-latin-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Nunito';
  src: url('/fonts/nunito-v32-latin-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Nunito';
  src: url('/fonts/nunito-v32-latin-800.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Nunito';
  src: url('/fonts/nunito-v32-latin-900.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* =========================================================
   VARIABLES & RESET
   ========================================================= */
:root {
  --clr-primary: #C026D3;
  --clr-primary-light: #E879F9;
  --clr-primary-dark: #86198F;
  --clr-accent: #FF6B9D;
  --clr-yellow: #FFD93D;
  --clr-teal: #4ECDC4;
  --clr-green: #6BCB77;
  --clr-bg: #FFF9F0;
  --clr-surface: #ffffff;
  --clr-text: #2D2040;
  --clr-muted: #7B6E8A;
  --clr-border: #FDDDE8;
  --font-display: 'Nunito', system-ui, sans-serif;
  --font-body: 'Nunito', system-ui, sans-serif;
  --radius: 1.5rem;
  --shadow-sm: 0 2px 8px rgba(192,38,211,.07);
  --shadow-md: 0 6px 20px rgba(192,38,211,.12);
  --shadow-lg: 0 12px 40px rgba(192,38,211,.15);
  --transition: 0.25s ease;
  --max-w: 1100px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  background-image: radial-gradient(circle, #FDDDE8 1.5px, transparent 1.5px);
  background-size: 28px 28px;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* =========================================================
   UTILS
   ========================================================= */
.container { width: min(var(--max-w), 100% - 2rem); margin-inline: auto; }
.section { padding-block: 6rem; }
.section__header { text-align: center; margin-bottom: 3.5rem; }
.section__eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: .75rem;
  background: #FFE8F2;
  padding: .35rem 1.1rem;
  border-radius: 50rem;
}
.section__title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 900;
  line-height: 1.2;
  background: linear-gradient(160deg, #86198F 0%, #C026D3 25%, #E879F9 50%, #FF6B9D 75%, #FFD93D 100%);
  background-attachment: fixed;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .9rem 2.2rem;
  border-radius: 50rem;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 2px solid transparent;
  letter-spacing: .02em;
}
.btn--primary {
  background: linear-gradient(135deg, #FF6B9D 0%, #FF4576 100%);
  color: #fff;
  box-shadow: 0 4px 18px rgba(255,107,157,.45);
}
.btn--primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 28px rgba(255,107,157,.55);
}
.btn--outline {
  background: rgba(255,255,255,.2);
  color: #fff;
  border-color: rgba(255,255,255,.7);
}
.btn--outline:hover {
  background: rgba(255,255,255,.35);
  transform: translateY(-3px) scale(1.05);
}

/* =========================================================
   HEADER
   ========================================================= */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: linear-gradient(135deg, #86198F 0%, #C026D3 45%, #E879F9 75%, #FF6B9D 100%);
  border-bottom: 2px solid rgba(255,255,255,.15);
  transition: background var(--transition);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 68px;
}
.logo { display: flex; align-items: baseline; gap: .5rem; }
.logo__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 900;
  color: #fff;
}
.logo__tag {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
}
.nav { display: flex; gap: 1.75rem; margin-left: auto; }
.nav__link {
  font-size: .9rem;
  font-weight: 700;
  color: rgba(255,255,255,.8);
  transition: color var(--transition);
}
.nav__link:hover { color: #fff; }
.lang-switcher { display: flex; align-items: center; gap: .4rem; font-size: .85rem; }
.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: .8rem;
  font-weight: 800;
  color: rgba(255,255,255,.75);
  padding: .25rem .55rem;
  border-radius: 50rem;
  transition: color var(--transition), background var(--transition);
}
.lang-btn.active {
  color: #fff;
  background: rgba(255,255,255,.2);
}
.burger { display: none; background: none; border: none; cursor: pointer; color: #fff; padding: .25rem; }
.burger svg { width: 1.5rem; height: 1.5rem; display: block; }
.burger .icon-close { display: none; }
.burger.open .icon-menu { display: none; }
.burger.open .icon-close { display: block; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 68px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #86198F 0%, #C026D3 30%, #E879F9 60%, #FF6B9D 85%, #FFD93D 100%);
  z-index: 0;
}
/* Floating decorative circles */
.hero__bg::before {
  content: '';
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  top: -90px;
  right: 7%;
  animation: float 7s ease-in-out infinite;
}
.hero__bg::after {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  bottom: 8%;
  left: 4%;
  animation: float 9s ease-in-out infinite reverse;
}
.hero__content {
  position: relative;
  z-index: 1;
  color: #fff;
  max-width: 680px;
  padding-block: 4rem;
}
.hero__eyebrow {
  display: inline-block;
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.2);
  padding: .4rem 1.2rem;
  border-radius: 50rem;
  margin-bottom: 1.25rem;
}
.hero__title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.9);
  margin-bottom: 2.5rem;
  max-width: 520px;
  font-weight: 600;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.hero__scroll-hint span {
  display: block;
  width: 2px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,.7), transparent);
  margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: .4; transform: scaleY(.6); }
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-22px) rotate(4deg); }
}

/* =========================================================
   STATS
   ========================================================= */
.stats {
  background: var(--clr-surface);
  border-top: 2px solid var(--clr-border);
  border-bottom: 2px solid var(--clr-border);
  padding-block: 2.5rem;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  text-align: center;
}
.stat-card {
  padding: 1.5rem 1rem;
  border-radius: var(--radius);
  transition: transform var(--transition);
}
.stat-card:nth-child(1) { background: #FFF0F5; }
.stat-card:nth-child(2) { background: #F8F0FF; }
.stat-card:nth-child(3) { background: #F0FAFA; }
.stat-card:nth-child(4) { background: #F0FFF5; }
.stat-card:hover { transform: translateY(-4px) scale(1.03); }
.stat-card__num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
}
.stat-card:nth-child(1) .stat-card__num { color: #FF6B9D; }
.stat-card:nth-child(2) .stat-card__num { color: #C026D3; }
.stat-card:nth-child(3) .stat-card__num { color: #4ECDC4; }
.stat-card:nth-child(4) .stat-card__num { color: #6BCB77; }
.stat-card__label {
  display: block;
  font-size: .9rem;
  font-weight: 700;
  color: var(--clr-muted);
  margin-top: .4rem;
}

/* =========================================================
   ABOUT
   ========================================================= */
.about { background: #FFF5FA; }
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: center;
}
.about__image-wrap { position: relative; }
.about__photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  border-radius: 2rem;
  box-shadow: var(--shadow-lg);
  display: block;
}
.about__text .section__eyebrow { display: block; text-align: left; }
.about__text .section__title { text-align: left; margin-bottom: 1.25rem; }
.about__text p { color: var(--clr-muted); margin-bottom: 1.75rem; font-weight: 600; }
.about__highlights { display: flex; flex-direction: column; gap: .75rem; }
.about__highlights li {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .8rem 1.25rem;
  border-radius: 50rem;
  font-size: .95rem;
  font-weight: 700;
}
.highlight-icon { flex-shrink: 0; display: flex; }
.highlight-icon svg { width: 1.2rem; height: 1.2rem; }
.about__highlights li:nth-child(1) { background: #FFE8F2; color: #C2185B; }
.about__highlights li:nth-child(2) { background: #F3E8FF; color: #7B1FA2; }
.about__highlights li:nth-child(3) { background: #E0FAF9; color: #00796B; }
.about__highlights li:nth-child(4) { background: #FFF9DB; color: #E65100; }

/* =========================================================
   CLASSES
   ========================================================= */
.classes { background: var(--clr-bg); }
.classes__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}
.class-card {
  background: var(--clr-surface);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.class-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  border-radius: var(--radius) var(--radius) 0 0;
}
.class-card:nth-child(1) { border-color: #FDDDE8; background: linear-gradient(160deg, #FFF0F5 0%, #fff 55%); }
.class-card:nth-child(1)::before { background: #FF6B9D; }
.class-card:nth-child(2) { border-color: #FFF3C4; background: linear-gradient(160deg, #FFFBF0 0%, #fff 55%); }
.class-card:nth-child(2)::before { background: #FFD93D; }
.class-card:nth-child(3) { border-color: #C6F7F5; background: linear-gradient(160deg, #F0FAFA 0%, #fff 55%); }
.class-card:nth-child(3)::before { background: #4ECDC4; }
.class-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.class-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 1.25rem;
}
.class-card__icon svg { width: 2.4rem; height: 2.4rem; }
.class-card:nth-child(1) .class-card__icon { background: #FFE0EE; }
.class-card:nth-child(2) .class-card__icon { background: #FFF3C4; }
.class-card:nth-child(3) .class-card__icon { background: #D0F5F3; }
.class-card__title { font-size: 1.2rem; font-weight: 800; margin-bottom: .75rem; color: var(--clr-text); }
.class-card__desc { color: var(--clr-muted); font-size: .95rem; font-weight: 600; line-height: 1.6; }

/* =========================================================
   SCHEDULE
   ========================================================= */
.schedule { background: var(--clr-surface); }
.schedule__table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--clr-border);
  margin-bottom: 1.5rem;
}
.schedule__table {
  width: 100%;
  border-collapse: collapse;
  font-size: .95rem;
  min-width: 400px;
}
.schedule__table thead tr {
  background: linear-gradient(90deg, #86198F 0%, #C026D3 35%, #E879F9 65%, #FF6B9D 100%);
}
.schedule__table th {
  background: transparent;
  color: #fff;
  padding: 1.1rem 1.5rem;
  text-align: left;
  font-weight: 800;
  letter-spacing: .04em;
  font-size: 1rem;
}
.schedule__table td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--clr-border);
  vertical-align: middle;
  font-weight: 600;
}
.schedule__table tbody tr:last-child td { border-bottom: none; }
.schedule__day { font-weight: 800; color: var(--clr-primary-dark); font-size: 1rem; border-bottom: none !important; }
.schedule__table td[rowspan] { border-bottom: none; }
.schedule__time { white-space: nowrap; }
.schedule__note {
  text-align: center;
  color: var(--clr-muted);
  font-size: .9rem;
  padding: 1rem 1.5rem;
  background: #FFF5FA;
  border: 2px solid var(--clr-border);
  border-radius: var(--radius);
  font-weight: 600;
  margin-bottom: 1rem;
}
.schedule__note-link {
  color: var(--clr-primary-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.schedule__note-link svg {
  width: 1em;
  height: 1em;
  vertical-align: -0.15em;
  margin-right: 0.3em;
  flex-shrink: 0;
}
.schedule__map-link {
  display: block;
  margin-top: 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--clr-border);
}
.schedule__map-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Schedule — two locations layout */
.schedule__locations {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.schedule__location-title {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--clr-primary-dark);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
}
.schedule__location-badge {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: var(--clr-green);
  color: #fff;
  padding: .3rem .9rem;
  border-radius: 50rem;
}
@media (max-width: 860px) {
  .schedule__locations { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact {
  background: linear-gradient(135deg, #86198F 0%, #C026D3 35%, #E879F9 65%, #FF6B9D 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  top: -90px; left: 4%;
  animation: float 10s ease-in-out infinite;
}
.contact::after {
  content: '';
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  bottom: -60px; right: 6%;
  animation: float 8s ease-in-out infinite reverse;
}
.contact .container { position: relative; z-index: 1; }
.contact .section__eyebrow { color: #ffe8f2; background: rgba(255,255,255,.2); }
.contact .section__title {
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: #fff;
  color: #fff;
}
.contact p { color: rgba(255,255,255,.9); margin-top: .75rem; font-size: 1.05rem; font-weight: 600; }
.contact__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
  border: 2px solid rgba(255,255,255,.3);
  transition: transform var(--transition), background var(--transition);
  text-align: center;
}
.contact-card:hover { transform: translateY(-6px) scale(1.03); background: rgba(255,255,255,.28); }
.contact-card__icon { display: flex; }
.contact-card__icon svg { width: 2.4rem; height: 2.4rem; }
.contact-card__label {
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .8;
}
.contact-card__value { font-size: .9rem; font-weight: 700; color: #fff; word-break: break-all; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: #2D2040;
  color: rgba(255,255,255,.6);
  padding-block: 1.75rem;
  font-size: .85rem;
  font-weight: 700;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .75rem;
}
.footer .logo__name {
  font-size: 1rem;
  background: linear-gradient(135deg, #E879F9, #FF6B9D);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 768px) {
  .nav { display: none; }
  .burger { display: block; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 68px 0 0;
    background: linear-gradient(180deg, #86198F 0%, #C026D3 50%, #E879F9 100%);
    padding: 2rem;
    gap: 1.5rem;
    z-index: 99;
    align-items: center;
    justify-content: center;
  }
  .nav.open .nav__link { font-size: 1.25rem; }
  .about__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about__image-wrap { max-width: 320px; margin: 0 auto; }
  .about__photo { height: auto; }
  .hero__actions { flex-direction: column; }
  .footer__inner { flex-direction: column; text-align: center; }
}

/* =========================================================
   ANIMATIONS
   ========================================================= */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
