/* ═══════════════════════════════════════════════════════════
   SR Play House — Responsive Stylesheet (Dark Theme)
   Mobile-First Breakpoints & Dark Navigation Drawer
   ═══════════════════════════════════════════════════════════ */

/* ══════════════════════════════════════════════════════════
   MOBILE BASE (< 480px)
   ══════════════════════════════════════════════════════════ */

/* Hamburger visible on mobile */
.navbar__hamburger {
  display: flex;
}

.navbar__menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 320px;
  height: 100vh;
  background: #0E1017;
  border-left: 1px solid var(--color-border);
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: calc(var(--nav-height) + var(--space-xl)) var(--space-xl) var(--space-xl);
  gap: var(--space-md);
  box-shadow: -10px 0 40px rgba(0,0,0,0.8);
  transition: right var(--transition-base);
  z-index: var(--z-overlay);
  overflow-y: auto;
}

.navbar__menu.active {
  right: 0;
}

.navbar__link {
  font-size: var(--fs-md);
  padding: var(--space-sm) 0;
  width: 100%;
  border-bottom: 1px solid var(--color-border-light);
}

.navbar__actions {
  flex-direction: column;
  width: 100%;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.navbar__cta,
.navbar__phone {
  width: 100%;
  justify-content: center;
}

/* Mobile nav overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(6px);
  z-index: var(--z-dropdown);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile CTA bar */
.mobile-cta {
  display: flex;
}

.whatsapp-float {
  bottom: 84px;
}

.scroll-top {
  bottom: 154px;
}

/* Hero mobile */
.hero {
  min-height: 90vh;
}

.hero__content {
  padding: var(--space-2xl) var(--space-md);
}

.hero__actions {
  flex-direction: column;
}

.hero__actions .btn {
  width: 100%;
}

.hero__cricket-ball {
  display: none;
}

/* Features strip: 2 columns */
.features-strip__grid {
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

/* Testimonials: single column */
.testimonials__grid {
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

/* Footer: single column */
.footer__grid {
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.footer__bottom {
  flex-direction: column;
  text-align: center;
}

/* Pricing cards: single column */
.pricing-grid {
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.pricing-card--featured {
  transform: none;
}

.pricing-card--featured:hover {
  transform: translateY(-6px);
}

/* Facility grid: single column */
.facility-grid {
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

/* Gallery: 2 columns */
.gallery-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}

/* Contact: single column */
.contact-grid {
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

/* Booking: single column */
.booking-layout {
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.order-summary {
  position: static;
}

.page-header {
  padding: calc(var(--nav-height) + var(--space-xl)) 0 var(--space-2xl);
}

.section {
  padding: var(--space-2xl) 0;
}

h1 { font-size: var(--fs-2xl); }
h2 { font-size: var(--fs-xl); }
h3 { font-size: var(--fs-lg); }

.admin-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.lightbox__nav {
  width: 40px;
  height: 40px;
}

.lightbox__nav--prev { left: 12px; }
.lightbox__nav--next { right: 12px; }

.confirmation-detail {
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-xs);
}

.quick-booking__form {
  flex-direction: column;
}

/* ══════════════════════════════════════════════════════════
   SMALL TABLETS (≥ 480px)
   ══════════════════════════════════════════════════════════ */
@media (min-width: 480px) {
  .facility-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }

  .confirmation-detail {
    flex-direction: row;
    align-items: center;
  }

  .confirmation-box__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .confirmation-box__actions .btn {
    flex: 1;
    min-width: 180px;
  }
}

/* ══════════════════════════════════════════════════════════
   TABLETS (≥ 768px)
   ══════════════════════════════════════════════════════════ */
@media (min-width: 768px) {
  h1 { font-size: var(--fs-3xl); }
  h2 { font-size: var(--fs-2xl); }
  h3 { font-size: var(--fs-xl); }

  .section {
    padding: var(--space-3xl) 0;
  }

  .features-strip__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
  }

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

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

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

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .footer__bottom {
    flex-direction: row;
    text-align: left;
  }

  .booking-layout {
    grid-template-columns: 1fr 350px;
  }

  .order-summary {
    position: sticky;
    top: calc(var(--nav-height) + var(--space-lg));
  }

  .hero {
    min-height: 100vh;
  }

  .hero__actions {
    flex-direction: row;
  }

  .hero__actions .btn {
    width: auto;
  }

  .hero__cricket-ball {
    display: block;
  }

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

  .quick-booking__form {
    flex-direction: row;
    align-items: flex-end;
  }
}

/* ══════════════════════════════════════════════════════════
   DESKTOP (≥ 1024px)
   ══════════════════════════════════════════════════════════ */
@media (min-width: 1024px) {
  h1 { font-size: var(--fs-4xl); }
  h2 { font-size: var(--fs-3xl); }
  h3 { font-size: var(--fs-2xl); }

  .section {
    padding: var(--space-4xl) 0;
  }

  .navbar__hamburger {
    display: none;
  }

  .navbar__menu {
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    border-left: none;
    flex-direction: row;
    align-items: center;
    padding: 0;
    gap: var(--space-xl);
    box-shadow: none;
    overflow: visible;
  }

  .navbar__link {
    border-bottom: none;
  }

  .nav-overlay {
    display: none !important;
  }

  .navbar__actions {
    flex-direction: row;
    width: auto;
    margin-top: 0;
  }

  .navbar__cta,
  .navbar__phone {
    width: auto;
  }

  .mobile-cta {
    display: none;
  }

  .whatsapp-float {
    bottom: 28px;
  }

  .scroll-top {
    bottom: 104px;
  }

  .testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pricing-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .pricing-card--featured {
    transform: scale(1.03);
  }

  .pricing-card--featured:hover {
    transform: scale(1.03) translateY(-8px);
  }

  .facility-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }

  .booking-layout {
    grid-template-columns: 1fr 380px;
  }
}

/* ══════════════════════════════════════════════════════════
   LARGE DESKTOP (≥ 1200px)
   ══════════════════════════════════════════════════════════ */
@media (min-width: 1200px) {
  .container {
    padding: 0 var(--space-xl);
  }

  .hero__content {
    max-width: 960px;
  }
}
