* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background: #fafafa;
    color: #333;
}

/* Navbar */
nav {
    background: rgba(0,0,0,1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: auto;
}

nav .logo {
    color: white;
    font-weight: bold;
    font-size: 1.5em;
}

.nav-links a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

    .nav-links a:hover {
        color: #ff9800;
    }

.hamburger {
    display: none;
    font-size: 2em;
    color: white;
    cursor: pointer;
}

/* Mobile overlay menu */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,1);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: left 0.3s ease-in-out;
        z-index: 10000;
    }

        .nav-links.show {
            left: 0;
        }

        .nav-links a {
            font-size: 1.8em;
            color: #fff;
            margin: 20px 0;
            transition: color 0.3s, transform 0.3s;
        }

            .nav-links a:hover {
                color: #ff9800;
                transform: scale(1.1);
            }

    .hamburger {
        display: block;
        font-size: 2em;
        color: white;
        cursor: pointer;
        z-index: 10001;
    }
}

nav .logo img {
    height: 50px; /* Adjust logo size */
    display: block;
}

@media(max-width:768px) {
    nav .logo img {
        height: 40px; /* Slightly smaller on mobile */
    }
}
/* Slider */

.slider {
    position: relative;
    width: 100%;
    height: 100vh; /* Full height of viewport */
    overflow: hidden;
}
.slides {
    display: flex;
    transition: transform 0.6s ease-in-out;
    height: 100%;
}

.slide {
    position: relative;
    width: 100%;
    flex-shrink: 0;
}

    .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* Centered Caption */
.caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    padding: 18px 30px;
    border-radius: 10px;
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
    max-width: 80%;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeIn 1.2s ease forwards;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -40%);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

/* Arrows */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: #fff;
    padding: 14px;
    border-radius: 50%;
    font-size: 24px;
    user-select: none;
    z-index: 10;
    transition: background 0.3s;
}

    .prev:hover, .next:hover {
        background: rgba(255,255,255,0.3);
    }

.prev {
    left: 15px;
}

.next {
    right: 15px;
}

/* Dots */
.dots {
    position: absolute;
    bottom: 12px;
    width: 100%;
    text-align: center;
}

    .dots span {
        cursor: pointer;
        height: 12px;
        width: 12px;
        margin: 0 5px;
        background: #bbb;
        border-radius: 50%;
        display: inline-block;
        transition: background 0.3s, transform 0.3s;
    }

        .dots span.active {
            background: #fff;
            transform: scale(1.2);
        }

/* Responsive */
@media (max-width: 768px) {
    .caption {
        font-size: 1.2rem;
        padding: 12px 18px;
    }
}

@media (max-width: 480px) {
    .caption {
        font-size: 1rem;
        padding: 10px 14px;
    }
}

section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: auto;
}

h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.2em;
    color: #444;
}

/* Cards */
.menu, .catering {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 25px;
    text-align:center
}

.dish, .package {
    background: white;
    border-radius: 12px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
    text-align: center;
    overflow: hidden;
    transition: transform 0.3s;
    cursor: pointer;
}

    .dish:hover, .package:hover {
        transform: translateY(-5px);
    }

    .dish img, .package img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .dish h3, .package h3 {
        margin: 15px 0 5px;
    }

    .dish p, .package p {
        padding: 0 10px 20px;
    }

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: rgba(0,0,0,0.7);
}

.modal-content {
    background: #fff;
    margin: 5% auto;
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 700px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    animation: fadeIn 0.3s;
}

    .modal-content img {
        width: 100%;
        border-radius: 10px;
        margin-bottom: 15px;
    }

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

    .close:hover {
        color: #000;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

footer {
    background: #222;
    color: #eee;
    padding: 50px 20px 30px;
    text-align: center;
}

.footer-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    margin-bottom: 30px;
}

.footer-item {
    max-width: 350px;
}

    .footer-item h3 {
        color: #ff9800;
        margin-bottom: 10px;
        font-size: 1.2em;
    }

    .footer-item p,
    .footer-item a {
        color: #ccc;
        font-size: 0.95em;
        text-decoration: none;
    }

        .footer-item a:hover {
            color: #fff;
            text-decoration: underline;
        }

.footer-copy {
    font-size: 0.85em;
    color: #777;
}

/* Mobile */
@media(max-width: 600px) {
    .footer-info {
        flex-direction: column;
        gap: 30px;
    }

    .footer-item {
        max-width: 100%;
    }
}

/* Mobile adjustments */
@media(max-width:768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background: rgba(0,0,0,0.9);
    }

        .nav-links a {
            margin: 10px 0;
            text-align: center;
        }

    .hamburger {
        display: block;
    }

    .nav-links.show {
        display: flex;
    }

    .slider-text h1 {
        font-size: 2em;
        padding: 15px 25px;
    }

    .slider-text p {
        font-size: 1em;
    }

    .dish img, .package img {
        height: 180px;
    }

    .modal-content {
        width: 95%;
        padding: 15px;
    }

    section {
        padding: 60px 15px;
    }

    h2 {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

.menu {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.dish {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

    .dish:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 20px rgba(0,0,0,0.2);
    }

.dish-img {
    position: relative;
    overflow: hidden;
}

    .dish-img img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        transition: transform 0.4s;
    }

.dish:hover .dish-img img {
    transform: scale(1.1);
}

/* Overlay on hover */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,152,0,0.6);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s;
    font-weight: bold;
    font-size: 1.2em;
}

.dish:hover .overlay {
    opacity: 1;
}

/* Dish info */
.dish h3 {
    margin: 15px 0 5px;
    font-size: 1.3em;
    color: #333;
}

.dish p {
    padding: 0 10px 15px;
    color: #555;
}

/* Price tag */
.price {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff9800;
    color: white;
    padding: 5px 10px;
    border-radius: 12px;
    font-weight: bold;
}

/* Mobile adjustments */
@media(max-width:768px) {
    .dish-img img {
        height: 180px;
    }

    .dish h3 {
        font-size: 1.2em;
    }

    .overlay {
        font-size: 1em;
    }
}
 
    


#reviews {
    background: #fafafa;
    padding: 80px 20px;
    text-align: center;
}

    #reviews h2 {
        font-size: 2.2em;
        color: #444;
        margin-bottom: 40px;
    }

.review-slider {
    position: relative;
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
}

.review-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.review-card {
    flex: 0 0 33.3333%;
    background: #fff;
    padding: 25px;
    margin: 10px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    min-height: 180px;
}

.review-text {
    font-style: italic;
    margin-bottom: 15px;
    color: #555;
}

.review-author {
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.stars {
    color: #ff9800;
    font-size: 1.2em;
}

/* Arrows */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 7px;
    color: #333;
    font-weight: bold;
    font-size: 15px;
    border-radius: 50%;
    background: rgba(255,255,255,0.8);
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    user-select: none;
    transition: background 0.3s;
}

    .prev:hover, .next:hover {
        background: #ff9800;
        color: #fff;
    }

.prev {
    left: 15px;
}

.next {
    right: 10px;
}

/* Mobile */
@media(max-width: 768px) {
    .review-card {
        flex: 0 0 80%;
    }
}

#about {
    padding: 80px 20px;
    background: #fff;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: auto;
    gap: 40px;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

    .about-text h2 {
        font-size: 2.5em;
        color: #444;
        margin-bottom: 20px;
        position: relative;
    }

        .about-text h2::after {
            content: "";
            width: 60px;
            height: 4px;
            background: #ff9800;
            display: block;
            margin-top: 10px;
            border-radius: 2px;
        }

    .about-text p {
        font-size: 1.1em;
        line-height: 1.7;
        margin-bottom: 20px;
        color: #555;
    }

.about-btn {
    padding: 12px 25px;
    background: #ff9800;
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

    .about-btn:hover {
        background: #e68900;
    }

.about-img {
    flex: 1;
    min-width: 300px;
}

    .about-img img {
        width: 100%;
        border-radius: 15px;
        box-shadow: 0 6px 15px rgba(0,0,0,0.15);
        transition: transform 0.4s;
    }

        .about-img img:hover {
            transform: scale(1.05);
        }

/* Mobile-friendly */
@media(max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-text h2::after {
        margin: 10px auto 0;
    }

    .about-btn {
        margin-top: 10px;
    }
}
#partners {
    padding: 80px 20px;
    background: #f9f9f9;
    text-align: center;
}

    #partners h2 {
        font-size: 2.2em;
        color: #444;
        margin-bottom: 40px;
        position: relative;
    }

        #partners h2::after {
            content: "";
            width: 60px;
            height: 4px;
            background: #ff9800;
            display: block;
            margin: 10px auto 0;
            border-radius: 2px;
        }

.partners-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 1000px;
    margin: auto;
}

.partner {
    flex: 0 1 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

    .partner img {
        max-width: 120px;
        max-height: 60px;
        object-fit: contain;
        filter: grayscale(100%);
        opacity: 0.8;
        transition: all 0.3s ease;
    }

    .partner:hover img {
        filter: grayscale(0%);
        opacity: 1;
        transform: scale(1.1);
    }

/* Mobile */
@media(max-width: 600px) {
    .partners-container {
        gap: 25px;
    }

    .partner {
        flex: 0 1 40%;
    }

        .partner img {
            max-width: 100px;
        }
}