/* ==========================================================
   Vibe Youth — Template #35
   LIGHT THEME youth template
   Palette: White #ffffff | Soft Gray #f4f5f7 | Deep Indigo #4f46e5
            Light Lavender #ede9fe | Text Primary #1e1b4b | Text Secondary #6b7280
   Fonts:  Space Grotesk (headings) + DM Sans (body)
   Prefix: vy-
   ========================================================== */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Space+Grotesk:wght@500;600;700&display=swap');

/* ---------- Custom Properties ---------- */
:root {
  --vy-white: #ffffff;
  --vy-gray: #f4f5f7;
  --vy-indigo: #4f46e5;
  --vy-indigo-dark: #4338ca;
  --vy-lavender: #ede9fe;
  --vy-text: #1e1b4b;
  --vy-text-secondary: #6b7280;
  --vy-border: #e5e7eb;
  --vy-shadow: 0 4px 24px rgba(79, 70, 229, 0.08);
  --vy-radius: 16px;
  --vy-transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--vy-text);
  background: var(--vy-white);
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--vy-transition);
}

ul {
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.15;
}

/* ---------- Utility ---------- */
.vy-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.vy-section {
  padding: 100px 0;
}

.vy-section-header {
  text-align: center;
  margin-bottom: 60px;
}

.vy-section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: var(--vy-text);
}

.vy-section-header p {
  font-size: 1.125rem;
  color: var(--vy-text-secondary);
  max-width: 580px;
  margin: 0 auto;
}

.vy-label {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vy-indigo);
  background: var(--vy-lavender);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

/* ---------- Demo Banner ---------- */
.vy-demo-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: var(--vy-indigo);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 10px 24px;
  font-size: 0.85rem;
  font-weight: 500;
}

.vy-demo-banner a {
  color: var(--vy-lavender);
  text-decoration: underline;
  font-weight: 600;
}

.vy-demo-banner a:hover {
  color: #fff;
}

/* ---------- Navigation ---------- */
.vy-nav {
  position: fixed;
  top: 40px;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background var(--vy-transition), box-shadow var(--vy-transition);
}

.vy-nav.scrolled {
  background: var(--vy-white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.vy-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.vy-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--vy-text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.vy-logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--vy-indigo);
  color: #fff;
  border-radius: 10px;
  font-size: 1rem;
}

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

.vy-nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--vy-text);
  transition: color var(--vy-transition);
}

.vy-nav-links a:hover {
  color: var(--vy-indigo);
}

.vy-nav-cta {
  background: var(--vy-indigo) !important;
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 100px;
  font-weight: 600 !important;
  transition: background var(--vy-transition) !important;
}

.vy-nav-cta:hover {
  background: var(--vy-indigo-dark) !important;
}

/* ---------- Hamburger ---------- */
.vy-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.vy-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--vy-text);
  border-radius: 2px;
  transition: transform var(--vy-transition), opacity var(--vy-transition);
}

.vy-hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.vy-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.vy-hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Mobile Menu ---------- */
.vy-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--vy-white);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--vy-transition);
}

.vy-mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}

.vy-mobile-menu-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.vy-mobile-link {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--vy-text);
}

.vy-mobile-link:hover {
  color: var(--vy-indigo);
}

.vy-mobile-cta {
  display: inline-block;
  background: var(--vy-indigo);
  color: #fff;
  padding: 14px 36px;
  border-radius: 100px;
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 12px;
}

/* ---------- 1. Hero ---------- */
.vy-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 112px;
}

.vy-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.vy-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vy-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.92) 0%,
    rgba(237, 233, 254, 0.85) 40%,
    rgba(255, 255, 255, 0.78) 100%
  );
  z-index: 1;
}

.vy-hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 0 24px;
  margin: 0 auto;
  text-align: center;
}

.vy-hero-content h1 {
  font-size: 4rem;
  color: var(--vy-text);
  margin-bottom: 20px;
  line-height: 1.1;
}

.vy-hero-content h1 em {
  font-style: italic;
  color: var(--vy-indigo);
}

.vy-hero-content p {
  font-size: 1.2rem;
  color: var(--vy-text-secondary);
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

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

.vy-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--vy-indigo);
  color: #fff;
  padding: 14px 32px;
  border-radius: 100px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background var(--vy-transition), transform var(--vy-transition);
}

.vy-btn-primary:hover {
  background: var(--vy-indigo-dark);
  transform: translateY(-2px);
}

.vy-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--vy-white);
  color: var(--vy-text);
  padding: 14px 32px;
  border-radius: 100px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid var(--vy-border);
  cursor: pointer;
  transition: border-color var(--vy-transition), transform var(--vy-transition);
}

.vy-btn-secondary:hover {
  border-color: var(--vy-indigo);
  color: var(--vy-indigo);
  transform: translateY(-2px);
}

/* ---------- 2. About ---------- */
.vy-about {
  background: var(--vy-white);
}

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

.vy-about-image {
  border-radius: var(--vy-radius);
  overflow: hidden;
  box-shadow: var(--vy-shadow);
}

.vy-about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.vy-about-text h2 {
  font-size: 2.25rem;
  margin-bottom: 20px;
}

.vy-about-text p {
  color: var(--vy-text-secondary);
  margin-bottom: 32px;
  font-size: 1.05rem;
}

.vy-stats {
  display: flex;
  gap: 40px;
}

.vy-stat h3 {
  font-size: 2rem;
  color: var(--vy-indigo);
  margin-bottom: 4px;
}

.vy-stat span {
  font-size: 0.85rem;
  color: var(--vy-text-secondary);
  font-weight: 500;
}

/* ---------- 3. Weekly Schedule ---------- */
.vy-schedule {
  background: var(--vy-gray);
}

.vy-schedule-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.vy-schedule-card {
  background: var(--vy-white);
  border-radius: var(--vy-radius);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--vy-shadow);
  transition: transform var(--vy-transition);
}

.vy-schedule-card:hover {
  transform: translateY(-6px);
}

.vy-schedule-icon {
  width: 60px;
  height: 60px;
  background: var(--vy-lavender);
  color: var(--vy-indigo);
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.vy-schedule-card h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.vy-schedule-card .vy-time {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--vy-indigo);
  margin-bottom: 12px;
}

.vy-schedule-card p {
  color: var(--vy-text-secondary);
  font-size: 0.95rem;
}

/* ---------- 4. Events ---------- */
.vy-events {
  background: var(--vy-white);
}

.vy-events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.vy-event-card {
  background: var(--vy-white);
  border-radius: var(--vy-radius);
  overflow: hidden;
  box-shadow: var(--vy-shadow);
  border: 1px solid var(--vy-border);
  transition: transform var(--vy-transition);
}

.vy-event-card:hover {
  transform: translateY(-6px);
}

.vy-event-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.vy-event-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vy-event-date {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--vy-indigo);
  color: #fff;
  padding: 8px 14px;
  border-radius: 10px;
  text-align: center;
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.2;
}

.vy-event-date .vy-day {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
}

.vy-event-date .vy-month {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.vy-event-body {
  padding: 24px;
}

.vy-event-body h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.vy-event-body p {
  color: var(--vy-text-secondary);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.vy-event-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--vy-indigo);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.vy-event-link:hover {
  gap: 8px;
}

/* ---------- 5. Small Groups ---------- */
.vy-groups {
  background: var(--vy-gray);
}

.vy-groups-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.vy-group-card {
  background: var(--vy-white);
  border-radius: var(--vy-radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--vy-shadow);
  transition: transform var(--vy-transition);
}

.vy-group-card:hover {
  transform: translateY(-6px);
}

.vy-group-emoji {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.vy-group-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.vy-group-card p {
  color: var(--vy-text-secondary);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.vy-group-tag {
  display: inline-block;
  background: var(--vy-lavender);
  color: var(--vy-indigo);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
}

/* ---------- 6. Connect / Social ---------- */
.vy-connect {
  background: var(--vy-white);
}

.vy-connect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.vy-connect-card {
  background: var(--vy-gray);
  border-radius: var(--vy-radius);
  padding: 40px 32px;
  text-align: center;
  transition: transform var(--vy-transition), box-shadow var(--vy-transition);
}

.vy-connect-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--vy-shadow);
}

.vy-connect-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #fff;
}

.vy-connect-icon.vy-instagram {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
}

.vy-connect-icon.vy-youtube {
  background: #ff0000;
}

.vy-connect-icon.vy-discord {
  background: #5865f2;
}

.vy-connect-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.vy-connect-card p {
  color: var(--vy-text-secondary);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.vy-connect-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--vy-indigo);
}

/* ---------- 7. Parent Info / Accordion ---------- */
.vy-parents {
  background: var(--vy-gray);
}

.vy-accordion {
  max-width: 720px;
  margin: 0 auto;
}

.vy-accordion-item {
  background: var(--vy-white);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.vy-accordion-header {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--vy-text);
  text-align: left;
}

.vy-accordion-header:hover {
  color: var(--vy-indigo);
}

.vy-accordion-icon {
  font-size: 1.25rem;
  transition: transform var(--vy-transition);
  color: var(--vy-indigo);
}

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

.vy-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.vy-accordion-body-inner {
  padding: 0 24px 20px;
  color: var(--vy-text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ---------- 8. CTA ---------- */
.vy-cta {
  background: var(--vy-indigo);
  color: #fff;
  text-align: center;
  padding: 100px 24px;
}

.vy-cta h2 {
  font-size: 2.75rem;
  margin-bottom: 16px;
  color: #fff;
}

.vy-cta p {
  font-size: 1.15rem;
  opacity: 0.85;
  max-width: 520px;
  margin: 0 auto 36px;
}

.vy-btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--vy-indigo);
  padding: 14px 36px;
  border-radius: 100px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: transform var(--vy-transition), box-shadow var(--vy-transition);
}

.vy-btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* ---------- 9. Footer ---------- */
.vy-footer {
  background: var(--vy-text);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 40px;
}

.vy-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.vy-footer-brand h3 {
  font-size: 1.35rem;
  color: #fff;
  margin-bottom: 12px;
}

.vy-footer-brand p {
  font-size: 0.9rem;
  max-width: 300px;
  line-height: 1.7;
}

.vy-footer-col h4 {
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 16px;
}

.vy-footer-col a {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 10px;
  transition: color var(--vy-transition);
}

.vy-footer-col a:hover {
  color: var(--vy-lavender);
}

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

/* ---------- Scroll Reveal ---------- */
.vy-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.vy-reveal.vy-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive: 1024px ---------- */
@media (max-width: 1024px) {
  .vy-hero-content h1 {
    font-size: 3.25rem;
  }

  .vy-about-grid {
    gap: 40px;
  }

  .vy-groups-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vy-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ---------- Responsive: 768px ---------- */
@media (max-width: 768px) {
  .vy-nav-links {
    display: none;
  }

  .vy-hamburger {
    display: flex;
  }

  .vy-hero-content h1 {
    font-size: 2.5rem;
  }

  .vy-about-grid {
    grid-template-columns: 1fr;
  }

  .vy-stats {
    justify-content: center;
  }

  .vy-schedule-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .vy-events-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .vy-groups-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }

  .vy-connect-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .vy-section {
    padding: 72px 0;
  }

  .vy-section-header h2 {
    font-size: 2rem;
  }

  .vy-footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ---------- Responsive: 480px ---------- */
@media (max-width: 480px) {
  .vy-hero-content h1 {
    font-size: 2rem;
  }

  .vy-hero-content p {
    font-size: 1rem;
  }

  .vy-hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .vy-stats {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .vy-cta h2 {
    font-size: 2rem;
  }

  .vy-section {
    padding: 56px 0;
  }

  .vy-demo-banner {
    flex-direction: column;
    gap: 4px;
    font-size: 0.75rem;
    padding: 8px 16px;
  }
}
