/* =========================
   Lessons NYC – Playful Theme
   Single-file styles.css
   ========================= */

:root {
  --bg: #0b1020;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-2: rgba(255, 255, 255, 0.085);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.72);
  --soft: rgba(255, 255, 255, 0.14);
  --border: rgba(255, 255, 255, 0.12);

  /* playful accents */
  --pink: #ff5bd6;
  --yellow: #ffd166;
  --aqua: #5bf1ff;
  --lime: #8cff8c;
  --purple: #8b5cf6;

  --shadow: 0 14px 45px rgba(0, 0, 0, 0.35);
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.25);

  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;

  --container: 1120px;
  --pad: 22px;
}

/* Base reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
}
body {
  font-family: "Nunito", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1000px 600px at 12% -10%, rgba(255, 91, 214, 0.18), transparent 55%),
    radial-gradient(900px 650px at 92% 0%, rgba(91, 241, 255, 0.16), transparent 55%),
    radial-gradient(900px 700px at 70% 90%, rgba(255, 209, 102, 0.13), transparent 55%),
    radial-gradient(900px 650px at 10% 88%, rgba(140, 255, 140, 0.10), transparent 55%),
    var(--bg);
  line-height: 1.55;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

.container {
  width: min(var(--container), calc(100% - 2 * var(--pad)));
  margin: 0 auto;
}

/* Accessibility */
.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  padding: 10px 12px;
  background: #fff;
  color: #000;
  border-radius: 10px;
  z-index: 999;
}
.skip-link:focus {
  left: 12px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(11, 16, 32, 0.55);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.35), transparent 55%),
    linear-gradient(135deg, rgba(255, 91, 214, 0.9), rgba(91, 241, 255, 0.8));
  box-shadow: var(--shadow-soft);
}
.brand-name {
  font-weight: 800;
  letter-spacing: 0.2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav a {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.98rem;
}
.nav a:hover {
  color: var(--text);
}

.menu-btn {
  display: none;
  background: transparent;
  border: 0;
  padding: 10px;
  border-radius: 12px;
  cursor: pointer;
}
.menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255, 255, 255, 0.9);
  margin: 5px 0;
  border-radius: 99px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease;
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

.btn-primary {
  border: 0;
  background:
    linear-gradient(135deg, rgba(255, 91, 214, 0.95), rgba(255, 209, 102, 0.90), rgba(91, 241, 255, 0.90));
  color: #0b1020;
}
.btn-primary:hover {
  transform: translateY(-1px) rotate(-0.15deg);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.03);
}

/* Sections */
.section {
  padding: 70px 0;
}
.section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.section-head {
  display: grid;
  gap: 10px;
  max-width: 740px;
  margin-bottom: 26px;
}
.section-head h2 {
  margin: 0;
  font-size: clamp(1.6rem, 2.2vw, 2.1rem);
  letter-spacing: -0.2px;
}
.section-head p {
  margin: 0;
  color: var(--muted);
}

/* Hero */
.hero {
  padding: 56px 0 34px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -120px -80px auto -80px;
  height: 420px;
  background:
    radial-gradient(closest-side at 25% 35%, rgba(255, 91, 214, 0.20), transparent 70%),
    radial-gradient(closest-side at 75% 40%, rgba(91, 241, 255, 0.18), transparent 70%);
  filter: blur(0px);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  gap: 28px;
  align-items: center;
  grid-template-columns: 1.05fr 0.95fr;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.85);
  font-weight: 800;
  font-size: 0.95rem;
}
.hero h1 {
  margin: 0;
  font-size: clamp(2.05rem, 3.4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.6px;
}
.lead {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 54ch;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.hero-highlights {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.highlight {
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.035);
}
.highlight-num {
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.4px;
}
.highlight-text {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.95rem;
}

/* Hero media crop fix (zoom out / less awkward) */
.hero-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
  transform: rotate(0.15deg);
}
.hero-media::after {
  /* playful glossy overlay */
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 300px at 20% 10%, rgba(255, 255, 255, 0.16), transparent 55%),
    radial-gradient(800px 360px at 90% 15%, rgba(255, 209, 102, 0.10), transparent 55%);
  pointer-events: none;
}
.hero-media img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center 28%; /* shows more top content (kids + instructor) */
}
.hero-badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(11, 16, 32, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  font-weight: 900;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: var(--shadow-soft);
  position: relative;
}
.card::before {
  /* playful corner sparkle */
  content: "";
  position: absolute;
  inset: -80px -80px auto auto;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(91, 241, 255, 0.18), transparent 60%);
  pointer-events: none;
}
.card-media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
}
.card-body {
  padding: 18px 18px 20px;
}
.card-top {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 8px;
}
.card-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px dashed rgba(255, 255, 255, 0.18);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.86);
}
.card h3 {
  margin: 0;
  font-size: 1.25rem;
  letter-spacing: -0.2px;
}
.card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.list {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.list li {
  position: relative;
  padding-left: 26px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}
.list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--yellow);
  text-shadow: 0 0 18px rgba(255, 209, 102, 0.35);
}

.pricing {
  margin-top: 14px;
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.03);
}
.pricing h4 {
  margin: 0 0 8px;
  font-size: 1rem;
}
.pricing p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.82);
}
.pricing strong {
  color: #fff;
}

/* CTA band */
.cta-band {
  margin-top: 26px;
  padding: 18px 18px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(600px 240px at 15% 20%, rgba(255, 91, 214, 0.16), transparent 60%),
    radial-gradient(700px 260px at 90% 30%, rgba(91, 241, 255, 0.14), transparent 60%),
    rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  box-shadow: var(--shadow-soft);
}
.cta-band h3 {
  margin: 0;
  font-size: 1.2rem;
}
.cta-band p {
  margin: 6px 0 0;
  color: var(--muted);
}
.cta-band-tight {
  margin-top: 22px;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.gallery img {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: var(--shadow-soft);
  background: rgba(255, 255, 255, 0.02);
  object-fit: cover;
  height: 220px;
}
.gallery img:nth-child(2),
.gallery img:nth-child(3) {
  height: 260px;
}

/* Testimonials */
.trust-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow-soft);
  margin: 14px 0 18px;
}
.trust-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.trust-badge {
  width: 36px;
  height: 36px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.35), transparent 55%),
    linear-gradient(135deg, rgba(140, 255, 140, 0.85), rgba(255, 209, 102, 0.85));
  color: #0b1020;
  font-weight: 900;
}
.trust-title {
  font-weight: 900;
}
.trust-sub {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.92rem;
}
.stars {
  letter-spacing: 1px;
}
.trust-score {
  margin-left: 8px;
  font-weight: 900;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.testimonial {
  margin: 0;
  padding: 16px 16px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow-soft);
}
.t-head {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}
.avatar {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(255, 91, 214, 0.75), rgba(91, 241, 255, 0.65));
  color: #0b1020;
  font-weight: 900;
}
.t-name-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.t-name {
  font-weight: 900;
}
.t-stars {
  color: var(--yellow);
  letter-spacing: 1px;
}
.t-meta {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.92rem;
}
.testimonial blockquote {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

/* About + FAQ */
.about {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 16px;
  align-items: start;
}
.about-card {
  padding: 18px 18px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow-soft);
}
.about-card h2 {
  margin: 0 0 10px;
}
.about-card p {
  margin: 0;
  color: var(--muted);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
.chip {
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.86);
}
.chip:nth-child(1) { border-color: rgba(255, 91, 214, 0.32); }
.chip:nth-child(2) { border-color: rgba(91, 241, 255, 0.28); }
.chip:nth-child(3) { border-color: rgba(255, 209, 102, 0.30); }
.chip:nth-child(4) { border-color: rgba(140, 255, 140, 0.22); }

.faq {
  padding: 18px 18px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow-soft);
}
.faq h3 {
  margin: 0 0 12px;
}
details {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.02);
  padding: 10px 12px;
  margin-top: 10px;
}
summary {
  cursor: pointer;
  font-weight: 900;
}
details p {
  color: var(--muted);
  margin: 8px 0 0;
  font-weight: 700;
}

/* Contact */
.contact {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 16px;
  align-items: start;
}
.contact-copy h2 {
  margin: 0 0 10px;
}
.contact-copy p {
  margin: 0 0 14px;
  color: var(--muted);
}

.contact-box {
  padding: 14px 14px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow-soft);
}
.contact-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.10);
}
.contact-row:last-child {
  border-bottom: 0;
}
.contact-label {
  color: var(--muted);
  font-weight: 800;
}
.contact-value {
  font-weight: 900;
  color: rgba(255, 255, 255, 0.9);
}

.form {
  padding: 18px 18px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow-soft);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
label {
  display: grid;
  gap: 8px;
  font-weight: 900;
}
input,
select,
textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(11, 16, 32, 0.55);
  color: rgba(255, 255, 255, 0.92);
  font-family: inherit;
  font-weight: 800;
  outline: none;
}
input:focus,
select:focus,
textarea:focus {
  border-color: rgba(91, 241, 255, 0.55);
  box-shadow: 0 0 0 4px rgba(91, 241, 255, 0.10);
}
.form-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 800;
}

/* Footer */
.site-footer {
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.015);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-weight: 800;
}
.footer-links {
  display: flex;
  gap: 14px;
}
.footer-links a:hover {
  color: rgba(255, 255, 255, 0.95);
}

/* Responsive */
@media (max-width: 980px) {
  .nav {
    display: none;
  }
  .menu-btn {
    display: inline-block;
  }
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-media {
    transform: none;
  }
  .cards {
    grid-template-columns: 1fr;
  }
  .gallery {
    grid-template-columns: 1fr 1fr;
  }
  .testimonials {
    grid-template-columns: 1fr;
  }
  .about,
  .contact {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .hero-highlights {
    grid-template-columns: 1fr;
  }
  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }
  .gallery {
    grid-template-columns: 1fr;
  }
}