/* 
  Kaibalya - Responsive Stylesheet
  Author: Bolt AI
  Description: Responsive styles for Kaibalya -  Welcome to Kaibalya Food
*/

/* ----- TABLE OF CONTENTS -----
  1. Global Responsive Styles
  2. Header & Navigation
  3. Hero Section
  4. Section Layouts
  5. Cards & Grid Layouts
  6. Forms
  7. Footer
----- */

/* Large Devices (Desktops, less than 1200px) */
@media (max-width: 1199.98px) {
  /* General Adjustments */
  :root {
    --section-padding: 70px;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero-content h1 {
    font-size: 3rem;
  }
  
  /* Section Layouts */
  .about-wrapper {
    gap: 3rem;
  }
  
  /* Room Cards */
  .room-card {
    flex-direction: column;
  }
  
  .room-slider {
    width: 100%;
    height: 300px;
  }
  
  /* Contact Wrapper */
  .contact-wrapper {
    flex-direction: column;
  }
  
  .contact-map {
    height: 400px;
  }
  
  /* Location Layout */
  .location-container {
    flex-direction: column;
  }
}

/* Medium Devices (Tablets, less than 992px) */
@media (max-width: 991.98px) {
  /* General Adjustments */
  :root {
    --section-padding: 60px;
  }
  
  h1 {
    font-size: 2.25rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  /* Header & Navigation */
  .hamburger {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 0;
    flex-direction: column;
    background-color: var(--white);
    width: 80%;
    max-width: 300px;
    height: 100%;
    padding-top: 120px;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-lg);
    z-index: 1000;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-menu li {
    margin: 0;
    width: 100%;
    text-align: center;
  }
  
  .nav-menu li a {
    display: block;
    padding: 1rem;
    font-size: 1.1rem;
  }
  
  .nav-menu li a::after {
    display: none;
  }
  
  /* Hero Section */
  .hero-content h1 {
    font-size: 2.75rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-buttons .btn {
    width: 100%;
    max-width: 250px;
    margin-bottom: 1rem;
  }
  
  /* About Section */
  .about-wrapper {
    flex-direction: column;
    gap: 3rem;
  }
  
  .about-image {
    order: -1;
  }
  
  /* Special Offer */
  .special-offer-wrapper {
    flex-direction: column;
  }
  
  .special-offer-image {
    order: -1;
    height: 250px;
  }
  
  /* Custom Packages */
  .custom-packages-wrapper {
    flex-direction: column;
  }
  
  .custom-packages-image {
    height: 300px;
  }
  
  /* Newsletter */
  .newsletter-wrapper {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  
  .newsletter-form-large {
    flex-direction: column;
    gap: 1rem;
  }
  
  /* Booking CTA */
  .booking-cta-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
}

/* Small Devices (Landscape phones, less than 768px) */
@media (max-width: 767.98px) {
  /* General Adjustments */
  :root {
    --section-padding: 50px;
    --container-padding: 1rem;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .section-header {
    margin-bottom: 2rem;
  }
  
  .hero-content h1 {
    font-size: 2.25rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  /* Page Headers */
  #page-header {
    height: 40vh;
    min-height: 300px;
  }
  
  .page-header-content h1 {
    font-size: 2.25rem;
  }
  
  /* Menu Category Tabs */
  .menu-category-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
  
  .category-tab {
    white-space: nowrap;
  }
  
  /* Menu Items */
  .menu-item {
    flex-direction: column;
  }
  
  .menu-item-image {
    width: 100%;
    height: 200px;
  }
  
  /* Travel Features */
  .travel-features {
    gap: 1.5rem;
  }
  
  /* Package Cards */
  .packages-container {
    grid-template-columns: 1fr;
  }
  
  /* FAQ Container */
  .faq-container {
    padding: 0 1rem;
  }
  
  .faq-question h3 {
    font-size: 1rem;
  }
  
  /* Forms */
  .booking-form-container, 
  .testimonial-form-container, 
  .contact-form-container {
    padding: 2rem 1.5rem;
  }
  
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  
  /* Footer */
  .footer-top {
    gap: 2rem;
  }
}

/* Extra Small Devices (Portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  /* General Adjustments */
  :root {
    --section-padding: 40px;
  }
  
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.35rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  .section-title {
    font-size: 1.35rem;
  }
  
  .hero-content h1 {
    font-size: 1.75rem;
  }
  
  .testimonials-stats {
    flex-direction: column;
    gap: 2rem;
  }
  
  .bulk-order-cta {
    flex-direction: column;
    gap: 1rem;
  }
  
  .bulk-order-cta .btn {
    width: 100%;
  }
  
  /* Video Testimonials */
  .video-testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  /* Contact Info Cards */
  .contact-info-cards {
    grid-template-columns: 1fr;
  }
  
  /* Social Icons Large */
  .social-icons-large {
    flex-wrap: wrap;
  }
  
  /* Modal Content */
  .modal-content {
    padding: 2rem 1.5rem;
  }
  
  /* Booking Tabs */
  .booking-tabs {
    flex-direction: column;
  }
  
  .booking-tab {
    flex-direction: row;
    justify-content: center;
    width: 100%;
    padding: 1rem;
  }
  
  .booking-tab i {
    margin-bottom: 0;
    margin-right: 1rem;
  }
  
  /* Policy Cards */
  .policies-container {
    grid-template-columns: 1fr;
  }
  
  /* WhatsApp Button */
  .whatsapp-btn {
    bottom: 20px;
    right: 20px;
  }
  
  .whatsapp-btn a {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}