﻿
body {
    background: #0f0f0f;
    color: #d7c39c;
    font-family: 'Georgia', serif;
}

.section-title {
    font-size: 42px;
    font-weight: bold;
    text-align: center;
    margin-top: 20px;
}
.section-title-top {
    margin-top: 150px;
}


.section-sub {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #c8c8c8;
}

/* Sticky Tabs */
.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 45px;
/*    position: sticky;*/
    top: 140px;
    z-index: 10;
    background: #0f0f0f;
    padding: 15px 0;
}

    .menu-tabs button {
        border: 1px solid #d7c39c;
        background: transparent;
        padding: 10px 28px;
        border-radius: 25px;
        font-size: 17px;
        cursor: pointer;
        color: #d7c39c;
        transition: 0.3s;
    }

    .menu-tabs .active {
        background: #d7c39c;
        color: #000;
        font-weight: bold;
    }

/* Carousel */
.carousel img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 15px;
}

/* Menu Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    padding: 40px 80px;
}

/* Menu Tabs - Gold Theme */
.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 25px 0;
    background: #0f0f0f; /* matches your header/footer */
    border-bottom: 1px solid rgba(255, 215, 0, 0.15);
}

    /* Default button style */
    .menu-tabs .tab-btn {
        font-size: 22px;
        font-weight: 500;
        background: none;
        border: none;
        color: #b8a37f; /* light gold */
        padding: 10px 25px;
        cursor: pointer;
        opacity: 0.7;
        transition: 0.3s ease;
        position: relative;
    }

        /* Hover effect */
        .menu-tabs .tab-btn:hover {
            opacity: 1;
            color: #e3c281; /* richer gold */
        }

        /* Active tab */
        .menu-tabs .tab-btn.active {
            opacity: 1;
            color: #f1d59b;
            font-weight: 600;
        }

            /* Active underline */
            .menu-tabs .tab-btn.active::after {
                content: "";
                position: absolute;
                bottom: -5px;
                left: 50%;
                transform: translateX(-50%);
                width: 35px;
                height: 2px;
                background: #d4b06a;
                border-radius: 5px;
            }


.slider-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

/* Mobile */
@media (max-width: 768px) {
    .slider-img {
        height: 260px;
    }
}
