/* ==========================================================================
   V-DOSA (Venkateswara Loni Dosa) - Responsive Stylesheet
   Mobile-First Breakpoints & Fluid Typography Adjustments
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Large Desktops & Wide Screens (1200px and up)
   -------------------------------------------------------------------------- */
@media (min-width: 1200px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

/* --------------------------------------------------------------------------
   2. Tablets & Laptops (992px to 1199px)
   -------------------------------------------------------------------------- */
@media (max-width: 1199px) {
  :root {
    --section-padding: 80px 4%;
  }

  .hero-grid,
  .about-grid,
  .visit-grid {
    gap: 2.5rem;
  }

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

  .footer-brand {
    grid-column: span 3;
  }
}

/* --------------------------------------------------------------------------
   3. Tablets & Small Laptops (768px to 991px)
   -------------------------------------------------------------------------- */
@media (max-width: 991px) {
  .section-padding {
    padding: 4.5rem 0;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 380px;
    height: 100vh;
    background: rgba(13, 12, 10, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid var(--glass-border);
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
    padding: 3rem;
    transition: var(--transition-normal);
    z-index: 1001;
  }

  .nav-menu.active {
    right: 0;
  }

  .mobile-toggle {
    display: block;
  }

  .hero-grid,
  .about-grid,
  .visit-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    order: -1;
  }

  .hero-image-wrapper img {
    height: 380px;
  }

  .about-overlay-card {
    position: static;
    transform: none;
    max-width: 100%;
    margin-top: -30px;
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .reviews-rating-bar {
    flex-direction: column;
    text-align: center;
  }

  .map-wrapper {
    min-height: 340px;
  }
}

/* --------------------------------------------------------------------------
   4. Mobile Devices (Up to 767px)
   -------------------------------------------------------------------------- */
@media (max-width: 767px) {
  .section-header {
    margin-bottom: 2.5rem;
  }

  .hero {
    padding: 6.5rem 0 3.5rem 0;
  }

  .hero-title {
    font-size: 2.35rem;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .dishes-grid,
  .why-grid,
  .reviews-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

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

  .menu-banner-box {
    flex-direction: column;
    text-align: center;
    padding: 1.75rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: auto;
  }

  .floating-actions {
    bottom: 1.25rem;
    right: 1.25rem;
  }

  .floating-btn {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }

  .header-actions .btn-outline {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   5. Extra Small Devices (Up to 480px)
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta-group .btn {
    width: 100%;
  }

  .hero-floating-card {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: 1rem;
    max-width: 100%;
  }

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