/* ==========================================================================
   LAPTOP & SMALL DESKTOP (Max-width: 1200px)
   ========================================================================== */
@media screen and (max-width: 1200px) {
  .header {
    padding: 20px 5%;
  }
  .header.scrolled {
    padding: 10px 5%;
  }
  section {
    padding: 80px 5%;
  }
  .hero-title {
    font-size: 48px;
  }
}

/* ==========================================================================
   TABLET & IPAD (Max-width: 992px)
   ========================================================================== */
@media screen and (max-width: 992px) {
  /* Navigation adjustments */
  .mobile-menu-btn {
    display: flex;
    z-index: 1001;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: rgba(36, 20, 11, 0.98);
    backdrop-filter: blur(15px);
    border-left: 1px solid rgba(200, 155, 60, 0.3);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 80px 40px;
    transition: var(--transition-smooth);
    z-index: 1000;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-link {
    font-size: 18px;
  }

  .header.scrolled {
    padding: 15px 5%;
  }

  /* Two Column Layouts Collapse */
  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-media {
    order: -1; /* Image on top on tablet/mobile */
  }

  .reservation-container {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 40px 30px;
  }
  
  /* Timeline adjustments */
  .experience-timeline::before {
    left: 20px;
  }
  
  .timeline-item {
    grid-template-columns: 1fr;
    gap: 0;
    padding-left: 50px;
    margin-bottom: 45px;
  }
  
  .timeline-marker {
    left: 20px;
    width: 36px;
    height: 36px;
    padding: 8px;
  }
  
  .timeline-item:nth-child(even) .timeline-content,
  .timeline-item:nth-child(odd) .timeline-content {
    grid-column: 1;
    text-align: left;
    padding: 20px;
  }

  /* Gallery Notched Row overrides for tablet */
  .gallery-notched-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .gallery-notched-card {
    height: 140px;
  }

  /* Testimonials and Footer for tablet */
  .testimonials-notched-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 500px;
  }
  .testimonial-notched-card {
    height: auto;
    min-height: 230px;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  /* Carousel overrides for tablet */
  .viewport-corner-mandala {
    display: none;
  }
  .dishes-carousel-container {
    padding: 0 45px;
  }
  .dish-card {
    flex: 0 0 calc((100% - 24px) / 2);
  }
}

/* ==========================================================================
   MOBILE & SMARTPHONE (Max-width: 768px)
   ========================================================================== */
@media screen and (max-width: 768px) {
  /* Scrollbar hide for mobile cursors */
  .custom-cursor, .custom-cursor-dot {
    display: none; /* Hide custom cursor on touch devices */
  }
  
  section {
    padding: 60px 20px;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .section-title {
    font-size: 28px;
  }

  /* Hero Section Mobile */
  .hero-subtitle-top {
    font-size: 16px;
  }
  
  .hero-title {
    font-size: 30px;
    line-height: 1.25;
  }
  
  .highlight-bengal {
    font-size: 40px;
  }

  .hero-text-divider {
    margin: 8px 0 16px;
  }

  .hero-desc {
    font-size: 15px;
    margin-bottom: 24px;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 280px;
    margin: 0;
  }
  
  .btn-hero-explore {
    width: 100%;
    justify-content: center;
  }
  
  /* Carousel overrides for mobile */
  .dishes-carousel-container {
    padding: 0 35px;
  }
  .dish-card {
    flex: 0 0 100%;
  }
  .carousel-arrow {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
  .prev-arrow { left: -10px; }
  .next-arrow { right: -10px; }

  /* About Story Mobile */
  .about-facade-drawing {
    display: none;
  }
  .story-framed-wrapper {
    width: 290px;
    height: 203px;
  }

  /* Gallery Notched Row overrides for mobile */
  .gallery-notched-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .gallery-notched-card {
    height: 100px;
  }

  /* Testimonials Mobile */
  .testimonials-margin-alpona {
    display: none;
  }
  .testimonials-notched-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }
  .testimonial-notched-card {
    height: auto;
    min-height: 230px;
  }
  .test-card-inner {
    padding: 16px 12px;
  }

  /* Footer Mobile */
  .footer-corner-alpona {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-bottom-centered {
    padding-top: 20px;
  }
}
