/* Responsive Styles */
@media (max-width: 992px) {
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reservation-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .nav-links {
        position: absolute;
        top: 90px; /* Just below the hamburger menu */
        right: 10px;  /* Add space from the right edge */
        width: 150px; /* Adjust width as needed */
        background-color: var(--white);
        flex-direction: column;
        padding: 0;
        overflow: hidden;
        max-height: 0; /* Initially hidden */
        transition: max-height var(--animation-speed) ease-in-out;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
        border-radius: 8px; /* Rounded corners */
    }
    
    .nav-links.active {
        max-height: 280px; /* Adjust based on content size */
        padding: 10px 0; /* Add padding when opened */
    }
    
    .nav-links li {
        margin: 5px 0;
        padding: 8px 15px;
    }
    
    .nav-links li:hover {
        background: #f0f0f0;
    }
    
    
    
 
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}






/* Media query for smaller screens */
@media screen and (max-width: 768px) {
    /* Add space at the bottom of the page for the fixed icons */
    body {
      padding-bottom: 60px;
    }
    
    /* Make the theme toggle stay in the header */
    .theme-toggle {
      position: absolute;
      right: 100px; /* Adjust as needed to position next to hamburger */
      top: 50%;
      transform: translateY(-50%);
    }
    
    /* Position the nav-icons at the bottom */
    .nav-icons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background-color: var(--background); /* Or your preferred color */
      padding: 15px;
      box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
      z-index: 100;
      display: flex;
      justify-content: space-around;
    }
    
    /* Style the icons in the bottom bar */
    .nav-icon {
      display: flex;
      flex-direction: column;
      align-items: center;
      font-size: 1.2rem;
    }
    
    /* Add labels under the icons if desired */
    .nav-icon::after {
      content: attr(data-label);
      font-size: 0.7rem;
      margin-top: 5px;
    }
  }







@media (max-width: 576px) {
    .dishes-grid,
    .menu-items {
        grid-template-columns: 1fr;
    }
    
    .why-us-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .hero-btns .btn {
        display: block;
        margin: 10px auto;
        width: 200px;
    }
}