
/* ============================================= */
/* =====         GENERAL STYLES          ===== */
/* ============================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #1a1a1a;
    color: #333;
}
   @media (min-width: 769px) {
       /* Styles for desktop devices */
       .menu-grid {
           grid-template-columns: repeat(4, 1fr);
       }
       .header {
           padding: 20px;
       }
       .nav-links {
           display: flex; /* Show nav links on desktop */
       }
       .hamburger {
           display: none; /* Hide hamburger menu on desktop */
       }
   }
/* ============================================= */
/* =====         HEADER & NAV            ===== */
/* ============================================= */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(9, 3, 37, 0.927);
    backdrop-filter: blur(15px);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: background 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.header.scrolled {
    background: rgba(9, 3, 37, 0.927);
}

.header .logo {
    font-size: 1.6rem;
    font-weight: bold;
    -webkit-text-stroke: 0.3px white;
    text-shadow: 1px 1px 2px rgb(208, 212, 54);
    color: white;
    display: flex;
    align-items: center;
}

.logo img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    margin-right: 10px;
    border: 2px solid #FFD700;
    box-shadow: 0 0 12px #FFD700;
    transition: transform 0.3s ease-in-out;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 10px;
}

.nav-links a {
    color: rgb(26, 211, 246);
    text-decoration: none;
    font-size: 1.1rem;
    padding: 8px 12px;
    border-radius: 5px;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}

.nav-links a:hover {
    background: rgb(236, 168, 34);
    color: black;
}

.hamburger {
    display: none;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    background: none;
    border: none;
    transition: transform 0.3s ease-in-out;
}
/* Mobile Menu */
@media (max-width: 1024px) {
    .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 0;
        right: -100%;
        background: black;
        backdrop-filter: blur(15px);
        width: 200px;
        height: 100vh;
        padding-top: 60px;
        text-align: center;
        transition: right 0.4s ease-in-out;
    }

    .nav-links a {
        padding: 15px;
        display: block;
        font-size: 0.9rem;
        color: white;
        font-weight: bold;
    -webkit-text-stroke: 0.3px rgba(218,239,42,0.433);
    text-shadow: 1px 1px 2px white;
    }

    /* Slide-in effect when menu is active */
    .nav-active {
        right: 0;
        
    }

    .hamburger {
        display: block;
    }

    /* Rotate hamburger icon when menu is open */
    .hamburger.active {
        transform: rotate(90deg);
        color: white;
    }
}
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">

.nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding-left: 20px;
    background: black;
    padding: 10px;
    border-radius: 5px;
    position: fixed;
    top: 0;
    left: 0;
    width: 20%; /* Set width to half the screen */
    height: 100vh; /* Full height */
    max-width: 300px; /* Limit max width for better design */
    overflow-y: auto;
    box-shadow: 2px 0px 10px rgba(255, 255, 255, 0.1);
}

.nav-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background 0.3s ease-in-out, transform 0.2s;
}

.nav-links a i {
    color: gold;
    font-size: 1.2rem;
    text-align: left;
}

.nav-links a:hover {
    background: rgba(255, 215, 0, 0.3);
    color: #FFD700;
    transform: scale(1.00);
}

/* Responsive - Adjust for mobile */
@media (max-width: 768px) {
    .nav-links {
        width: 50%; /* Make it cover more space on smaller screens */
        max-width: 250px;
    }
}


/* ============================================= */
/* =====     GALLERY & LIGHTBOX STYLES     ===== */
/* ============================================= */
/* Professional Hero Slider with Parallax */
.hero-slider {
    position: relative;
    height: 400px;
    width: 100%;
    background-size: cover;
    background-position: center;
    animation: slideshow 20s infinite ease-in-out;
    background-attachment: fixed; /* Parallax Effect */
}

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide-content {
    color: white;
    text-align: center;
    z-index: 2;
    padding: 20px;
}

.hero-slide-content h1 {
    font-size: 3rem;
    color: #ffcc00;
    margin-bottom: 10px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-slide-content p {
    font-size: 1.2rem;
    color: #eee;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.book-btn {
    display: inline-block;
    margin-top: 15px;
    background-color: #ffcc00;
    color: black;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: background 0.3s, transform 0.3s;
}

.book-btn:hover {
    background-color: black;
    color: #ffcc00;
    transform: scale(1.05);
}

/* Slideshow Keyframes */
@keyframes slideshow {
    0% { background-image: url('https://i.ibb.co/67xN9bQz/buffet-in-an-indian-restaurant.jpg'); }
    33% { background-image: url('https://i.ibb.co/vv41ZKcf/pngtree-exquisite-dining-arrangement-for-a-wedding-or-catered-event-photo-image-21053512.jpg'); }
    66% { background-image: url('https://i.ibb.co/MxCF7VPj/unspecified-7.jpg'); }
    100% { background-image: url('https://i.ibb.co/67xN9bQz/buffet-in-an-indian-restaurant.jpg'); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-slider {
        height: 300px;
    }

    .hero-slide-content h1 {
        font-size: 2rem;
    }

    .hero-slide-content p {
        font-size: 1rem;
    }

    .book-btn {
        font-size: 0.9rem;
        padding: 8px 16px;
    }
}
.gallery-section {
    padding: 80px 20px 60px;
    text-align: center;
}

.gallery-section h1 {
    font-size: 3rem;
    color: #ffcc00;
    margin-bottom: 10px;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}

.gallery-section p {
    font-size: 1.1rem;
    color: #ddd;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1600px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 3px solid #FFD700; /* ✅ Yellow border for each item */
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 204, 0, 0.4);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox.show {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 5px;
    transition: transform 0.3s ease;
    cursor: zoom-in;
}

.lightbox-content img.zoomed {
    transform: scale(1.5);
    cursor: zoom-out;
}

.lightbox-control {
    position: absolute;
    background: rgba(30, 30, 30, 0.6);
    color: white;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    transition: background 0.2s ease;
    padding: 10px 15px;
    border-radius: 5px;
    z-index: 2001;
}
.lightbox-control:hover {
    background: rgba(0, 0, 0, 0.8);
}

.lightbox-close { top: 15px; right: 15px; font-size: 1.5rem; }
.lightbox-prev { top: 50%; left: 15px; transform: translateY(-50%); }
.lightbox-next { top: 50%; right: 15px; transform: translateY(-50%); }

.lightbox-toolbar {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(30, 30, 30, 0.6);
    border-radius: 5px;
    padding: 5px;
    display: flex;
    gap: 10px;
}

.lightbox-toolbar button {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    padding: 8px;
    cursor: pointer;
    transition: color 0.2s ease;
}

.lightbox-toolbar button:hover {
    color: #ffcc00;
}

/* ============================================= */
/* =====          FOOTER STYLES          ===== */
/* ============================================= */
.down {
  
}
.footer {
    background: black;
    color: white;
    padding: 40px 0px;
    text-align: left; /* Aligns all text to the left */
    font-size: 14px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
}

/* Logo Section */
.footer-logo {
    text-align: left;
    margin-left: 15px;
    max-width: 250px;
}

.footer-logo img {
    width: 190px;
    height: auto;
    border-radius: 0%;
    box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease-in-out;
}

.footer-logo img:hover {
    transform: scale(1.1);
}

.footer-logo h3 {
    margin-top: 10px;
    font-size: 18px;
    font-weight: bold;
    color: #ffcc00;
}

/* Links & Contact */
.footer-links, .footer-contact, .footer-social {
    margin: 10px;
    min-width: 200px;
    text-align: left; /* Ensures text is aligned left */
}

.footer-links h4, .footer-contact h4, .footer-social h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #ffcc00;
}

.footer-links a, .footer-contact p {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 5px;
}

.footer-links a:hover {
    color: #ffcc00;
    background-color: #dfb02869;
}

/* Social Media Icons */
.footer-social a {
    font-size: 20px;
    color: white;
    margin: 5px;
    transition: color 0.3s ease-in-out;
}

.footer-social a:hover {
    color: #ffcc00;
}

/* Bottom Copyright */
.footer-bottom {
    margin-bottom: 30px;
    margin-top: 50px;
    font-size: 12px;
    color: #ccc;
    text-align: center;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: left;
    }
}

  @keyframes fadeInLeft {
    from {
      opacity: 0;
      transform: translateX(-50px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes fadeInRight {
    from {
      opacity: 0;
      transform: translateX(50px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes gradientAnimation {
    0% {
      background-position: 0% 50%;
    }
    100% {
      background-position: 100% 50%;
    }
  }

  /* Hover effects */
  a:hover {
    opacity: 0.8;
  }

  iframe:hover + div {
    background: rgba(0, 0, 0, 0);
  }

  /* Responsive adjustments for mobile */
  @media (max-width: 768px) {
    footer {
      padding: 20px 10px;
    }
    h2 {
      font-size: 1.8rem;
    }
    p {
      font-size: 0.9rem;
    }
    iframe {
      height: 250px; /* Smaller height for mobile */
    }
  }

#backToTop {
    position: fixed;
    bottom: 15px;
    left: 10px;  /* Move to the left side */
    background: #ff6600;
    color: white;
    border: none;
    padding: 8px 12px;
    width: 80px;
    height: 40px;
    font-size: 0.9rem;
    font-weight: bold;
    border-radius: 5px;
    display: none; /* Initially hidden */
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease-in-out, transform 0.2s;
    z-index: 1000; /* Keep it above other elements */
    text-align: center;
}

#backToTop:hover {
    background: black;
    transform: scale(1.1);
}
/* ============================================= */
/* =====     RESPONSIVE (MOBILE) STYLES    ===== */
/* ============================================= */
@media (max-width: 768px) {
    /* --- Header & Nav --- */
    .header {
        padding: 10px 15px;
    }
    .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        background: black;
        width: 200px;
        height: 100vh;
        padding-top: 60px;
        text-align: left;
        transition: right 0.4s ease-in-out;
        gap: 0;
    }
    .nav-links a {
        padding: 15px;
        display: block;
        font-size: 1.2rem;
        width: 100%;
    }
    .nav-active {
        right: 0;
    }
    .hamburger {
        display: block;
    }
    .hamburger.active {
        transform: rotate(90deg);
    }

    /* --- Gallery --- */
    .gallery-section h1 {
        font-size: 2.5rem;
    }
    .gallery-container {
        grid-template-columns: 1fr;
    }
}
    
/* === WhatsApp Button for ALL devices (not just mobile) === */
.whatsapp-button {
    position: fixed;
    bottom: 15px;
    right: 10px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.whatsapp-button:hover {
    transform: scale(1.1);
}

.whatsapp-button img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}