/* --- Basic Setup --- */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        scroll-behavior: smooth;
    }

    body {
        font-family: 'Poppins', sans-serif;
        line-height: 1.6;
        color: #333;
    }


    body::-webkit-scrollbar {
        display: none;
        /* hide scrollbar */
    }

    /* --- Header & Navigation Bar --- */
header {
    background-color: #ffffff;
    border-bottom: 3px solid #ff8c00;
    padding: 15px 5%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none
}

.logo img {
    height: 60px;
}

.logo span {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
}

.nav-links ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    color: #e67e22;
    font-weight: 500;
    font-size: 1.2rem;
    transition: color 0.3s ease;
    /* ADDED for the underline effect */
    position: relative;
    padding-bottom: 5px;
}

.nav-links a:hover {
    color: #d35400;
}

/* --- ADDED FOR THE ACTIVE LINK --- */
.nav-links a.active {
    color: #d35400;
    font-weight: 600;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #ff8c00;
}
/* --- END OF ACTIVE LINK STYLES --- */

.mobile-menu-button {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #333;
}

    /* --- Responsive Design --- */
    @media (max-width: 768px) {
        .nav-links {
            display: none;
            /* Hide links by default on mobile */
            position: absolute;
            top: 72px;
            /* Height of the header */
            left: 0;
            width: 100%;
            background-color: #fff;
            flex-direction: column;
            padding: 20px 0;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .nav-links.active {
            display: flex;
            /* Show when active */
        }

        .nav-links ul {
            flex-direction: column;
            width: 100%;
            align-items: center;
            gap: 20px;
        }

        .mobile-menu-button {
            display: block;
            /* Show hamburger button */
        }
    }


    .hero {
        height: 80vh;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        overflow: hidden;
        /* ensures video doesn’t overflow */
        color: #fff;
    }

    /* Video styling */
    .hero-video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* covers container without distortion */
        z-index: 0;
        /* behind the content */
    }

    /* Dark overlay */
    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 1;
        /* overlay above video, below content */
    }

    /* Hero content */
    .hero-content {
        position: relative;
        z-index: 2;
    }

    /* CTA button and responsive styles remain unchanged */

    .hero-content h1 {
        font-size: 4rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
    }

    .hero-content .tagline {
        font-size: 1.75rem;
        font-weight: 400;
        margin-bottom: 2rem;
    }

    .cta-button {
        display: inline-block;
        background-color: #e67e22;
        color: #fff;
        padding: 14px 28px;
        border-radius: 50px;
        /* Pill shape */
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        transition: all 0.3s ease;
    }

    .cta-button:hover {
        background-color: #d35400;
        transform: translateY(-3px);
    }





    /* --- Responsive Design --- */
    @media (max-width: 768px) {
        .nav-links {
            display: none;
            /* Hide links by default on mobile */
            position: absolute;
            top: 72px;
            /* Height of the header */
            left: 0;
            width: 100%;
            background-color: #fff;
            flex-direction: column;
            padding: 20px 0;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .nav-links.active {
            display: flex;
            /* Show when active */
        }

        .nav-links ul {
            flex-direction: column;
            width: 100%;
            align-items: center;
            gap: 20px;
        }

        .mobile-menu-button {
            display: block;
            /* Show hamburger button */
        }

        .hero-content h1 {
            font-size: 2.5rem;
        }

        .hero-content .tagline {
            font-size: 1.2rem;
        }
    }






/* --- General Section Styling (Add if you don't have it) --- */
.content-section {
    padding: 80px 5%;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -15px;
    width: 80px;
    height: 4px;
    background-color: #ff8c00;
}

.btn {
    display: inline-block;
    background-color: #e67e22;
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn:hover {
    background-color: #d35400;
    transform: translateY(-3px);
}






.content-section-dark {
    padding: 80px 5%;
    background-color: #f8f9fa;
    
    /* A very light grey for contrast */
    position: relative;
    /* Needed for positioning nav arrows */
}










.menu-container {
    display: flex;
    min-height: 100vh;
    flex-wrap: wrap;
}

/* LEFT PANEL */
.menu-left {
    flex: 1;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: white;
}

.slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 1;
    transition: opacity 1s ease-in-out, background-image 1s ease-in-out;
    background-color: #000;
    /* fallback */
}

.slideshow.fade {
    opacity: 0.7;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.left-content {
    position: relative;
    text-align: center;
    padding: 20px;
    z-index: 2;
}

.restaurant-name {
    font-size: 2.5rem;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.slogan {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.opening-hours {
    margin-top: 30px;
    font-size: 1rem;
    line-height: 1.6;
}

.website {
    margin-top: 20px;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* RIGHT PANEL */
.menu-right {
    flex: 1;
    background: #fafafa;
    padding: 40px;
    overflow-y: auto;
    max-height: 100vh;
}

.menu-section {
    margin-bottom: 40px;
}

.menu-section h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #ff8c00;
    border-bottom: 2px solid #ddd;
    display: inline-block;
    padding-bottom: 5px;
}

.menu-item {
    margin-bottom: 20px;
}

.menu-item h3 {
    font-size: 1.2rem;
    display: flex;
    justify-content: space-between;
    color: #333;
}

.menu-item p {
    font-size: 0.95rem;
    color: #666;
}

/* SCROLL STYLING */
.menu-right::-webkit-scrollbar {
    width: 8px;
}

.menu-right::-webkit-scrollbar-thumb {
    background: #ff8c00;
    border-radius: 4px;
}

.menu-right::-webkit-scrollbar-track {
    background: #eee;
}

/* RESPONSIVE STYLES */
@media (max-width: 1024px) {
    .restaurant-name {
        font-size: 2rem;
    }

    .slogan {
        font-size: 1rem;
    }

    .menu-right {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .menu-container {
        flex-direction: column;
    }

    .menu-left {
        height: 60vh;
    }

    .menu-right {
        max-height: none;
        height: auto;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .restaurant-name {
        font-size: 1.6rem;
    }

    .slogan {
        font-size: 0.9rem;
    }

    .menu-section h2 {
        font-size: 1.4rem;
    }

    .menu-item h3 {
        font-size: 1rem;
    }

    .menu-item p {
        font-size: 0.85rem;
    }
}















/* --- Attractive Footer Section --- */
.site-footer {
    background-color: #2c3e50;
    /* A modern, dark blue-grey */
    color: #bdc3c7;
    /* A soft, light grey for text */
    padding: 60px 0 20px 0;
    font-size: 0.95rem;
    border-bottom: 3px solid #ff8c00;
}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    /* This creates 4 responsive columns */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-column {
    padding: 0 10px;
}

.footer-column h3 {
    font-size: 1.2rem;
    color: #ff8c00;
    /* Using your brand's orange */
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
}

/* Stylish underline for headings */
.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 50px;
    height: 2px;
    background-color: #ff8c00;
    
}


.footer-logo {
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    margin-bottom: 15px;
}

.footer-logo img {
    height: 60px;
}

.footer-logo span {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
}

.footer-tagline {
    line-height: 1.7;
}

.footer-links,
.contact-details,
.opening-hours {
    list-style: none;
    padding: 0;
}

.footer-links a,
.contact-details span,
.opening-hours li {
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #ff8c00;
    padding-left: 5px;
}

.contact-details li,
.opening-hours li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-details i {
    color: #ff8c00;
    margin-right: 15px;
    font-size: 1.1rem;
    margin-top: 4px;
}

/* Social Media Icons */
.social-links {
    margin-top: 25px;
}

.social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1rem;
    text-decoration: none;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #ff8c00;
    transform: translateY(-3px);
}

/* Bottom Copyright Bar */
.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    /* A slightly lighter line */
}



/* --- Footer Responsiveness --- */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    /* --- ADD THIS NEW RULE --- */
    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .contact-details li,
    .opening-hours li {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
        margin-top: 20px;
    }

    .contact-details li,
    .opening-hours li {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
        margin-top: 20px;
    }
}
/* Back to Top Button */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #e67e22;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: none; /* hidden by default */
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    z-index: 999;
}

#backToTop:hover {
    background-color: #d35400;
    transform: translateY(-3px);
}
