:root {
    --primary-color: #fbde97;
    --secondary-color: #f04545;
    --background-color: #f4e8cf;
    --text-color: #333;
    --font-bebas: 'Bebas Neue', sans-serif;
    --font-oswald: 'Oswald', sans-serif;
}

/* Base Body */
body {
    font-family: var(--font-oswald), sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--background-color);
    color: var(--text-color);
}

/* === Navigation Bar === */
.custom-nav-btn {
    background-color: #dc3545;
    color: #fff !important;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(220, 53, 69, 0.3);
    text-align: center;
    display: inline-block;
    white-space: nowrap;
}

.custom-nav-btn:hover {
    background-color: #c82333;
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(220, 53, 69, 0.4);
}

.costumnav {
    width: 100% !important;
}

.navcolor {
    background-color: var(--background-color) !important;
    font-size: 1em;
}

.colornav {
    color: var(--secondary-color) !important;
}

/* === Fullscreen Video Banner === */
.video-banner {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
    background: #000;
}

.video-banner video {
    object-fit: cover;
    width: 100%;
    height: 100%;
    display: block;
}

/* === Content === */
.spacer {
    height: 1%;
    width: 100%;
}

.content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

/* Section Styling */
.sectionleft {
    padding: 20px;
    background-image: url('Pics/pattern.png');
    background-size: cover;
    background-blend-mode: multiply;
}

/* === Map === */
iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* === Dish Cards === */
.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.card-img-top {
    height: 235px;
    object-fit: cover;
    background: #fff;
}

.card-body {
    padding: 1.25rem;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #dc3545;
}

.card-text {
    font-size: 0.95rem;
    color: #444;
}

.card-text.fw-bold {
    margin-top: 0.5rem;
    font-size: 1.1rem;
    color: #28a745;
}

/* Cards Fade Animation */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Card Spacing */
#dishesContainer {
    row-gap: 20px;
}

/* === Footer (Optional if you add one) === */
footer {
    background-color: #333;
    color: #f4e8cf;
    padding: 2rem 0;
    text-align: center;
}

footer a {
    color: #f4e8cf;
    text-decoration: none;
}

footer a:hover {
    color: #fff;
}

/* === Media Queries === */
@media (max-width: 768px) {
    .video-banner {
        height: 100vh;
        width: 100vw;
    }

    .video-banner video {
        height: 100vh;
        width: 100vw;
        object-fit: cover;
    }

    .card-img-top {
        height: 180px;
    }

    .custom-nav-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }

    .card-title {
        font-size: 1.1rem;
    }

    .card-text {
        font-size: 0.85rem;
    }

    .content,
    .sectionleft {
        padding: 15px;
    }
}

@media screen and (max-width: 480px) {

    .row,
    .col-md-6,
    .sectionleft,
    .content {
        margin-bottom: 10px !important;
        padding-bottom: 10px !important;
    }

    .spacer {
        height: 10px !important;
    }

    .navbar {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }

    .video-banner {
        position: relative;
        width: 100vw;
        height: 100vh;
    }

    .video-banner video {
        position: absolute;
        top: 0;
        left: 0;
        min-width: 100%;
        min-height: 100%;
        object-fit: contain;
    }

    .card-img-top {
        height: 160px;
    }

    .card-title {
        font-size: 1rem;
    }

    .card-text {
        font-size: 0.8rem;
    }

    .custom-nav-btn {
        padding: 0.4rem 0.7rem;
        font-size: 0.85rem;
    }

    .content,
    .sectionleft {
        padding: 0px;
    }

    /* 🧽 Reduce vertical space between sections */
    .sectionleft,
    .content,
    #dishesContainer {
        margin-bottom: 10px !important;
    }

    /* Optional: reduce gap inside container */
    #dishesContainer {
        row-gap: 10px;
    }

    .nav-link,
    .dropdown-item {
        font-size: 0.9rem;
    }
}