 @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap');
        @import url('https://fonts.googleapis.com/css2?family=Playpen+Sans:wght@400;500&display=swap');

        ::-webkit-scrollbar {
            display: none;
        }

        body {
            font-family: 'Roboto', sans-serif;
        }

        h2 {
            font-family: 'Playpen Sans', cursive;
        }

        a {
            outline: none;
            text-decoration: none;
            color: gray;
        }

        nav {
            background-color: white;
            position: fixed;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 20px;
            z-index: 99;
        }

        #navList {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 14px;
            gap: 25px;
        }

        #navList a {
            font-size: 17px;
        }

        #navList a:hover {
            color: black;
        }

        #menuBtn {
            display: none;
        }
        #menu {
            transform: none !important;
        }
        #menuNav {
            position: sticky;
            top: 50px;
            z-index: 999;

            background: rgba(255,255,255,0.7);
            backdrop-filter: blur(10px);
            padding: 5px 10px;
            border-radius: 0px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
        }

        section {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .upper {
            margin-top: 50px;
        }

        #about .col-lg-8 img {
            height: 100%;
        }

        .btn {
            border: none;
            border-radius: 0px;
        }

        .active-menu {
            border-bottom: 2px solid red;
        }

        #menu .btn:hover {
            border-bottom: 2px solid red;
        }

        #menu .col-lg-4,
        #menu .col-lg-3,
        #menu .col-md-4,
        #menu .col-6 {
            padding: 10px;
        }

        #menu .card {
            height: 100%;
            transition: transform 0.3s;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        #menu .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }

        #menu .card-img-top {
            width: 100%;
            height: 200px;
            object-fit: cover;
            object-position: center;
        }

        #menu .card-title {
            font-size: 1.1rem;
            font-weight: bold;
            margin-bottom: 10px;
        }

        #menu .card-text {
            font-size: 0.85rem;
            color: #666;
            line-height: 1.4; 
            min-height: 60px;
        }

        #menu .card-body {
            padding: 15px;
        }

        .appetizers-list {
            list-style: none;
            padding: 0;
            margin-top: 15px;
            text-align: left;
        }

        .appetizers-list li {
            padding: 8px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            justify-content: space-between;
        }

        .appetizers-list li:last-child {
            border-bottom: none;
        }

        .card {
            border: none;
            border-radius: 0px;
        }
        

        .linear {
            animation-timing-function: linear;
        }

        .infinite {
            animation-iteration-count: infinite;
        }

        @keyframes rotation {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(359deg);
            }
        }

        .menu-category {
            display: contents;
        }

        .menu-category .list-group-item {
            text-align: left;
        }

        @media (max-width:968px) {
            nav {
                padding: 10px;
            }

            body {
                text-align: center;
            }

            #menuBtn {
                display: block;
                z-index: 999;
            }

            #navList {
                margin-top: 0px;
                width: 100%;
                height: 100vh;
                position: absolute;
                top: 0px;
                right: -100%;
                background-color: whitesmoke;
                flex-direction: column;
                transition: 0.5s;
            }

            #navList a {
                font-size: 23px;
            }

            .col-lg-6 h2 {
                margin-top: 20px;
            }

            .d-flex {
                justify-content: center;
            }

            #about {
                text-align: left;
            }

            #events .card {
                text-align: left;
            }

            #chefs .card {
                margin: 20px 0px;
            }

            form .col-md-6 {
                margin-top: 30px;
            }

            #menu .card-img-top {
                width: 100% !important;
                height: 180px !important;
                object-fit: cover !important;
                object-position: center !important;
            }

            #drinksDessertsCategory .col-6 img {
                width: 100% !important;
                height: 280px !important;
                object-fit: cover !important;
                object-position: center !important;
                border-radius: 20px;
            }

            /* Single images (Boissons chaudes, Nos frappé, Smoothies, etc.) */
            #drinksDessertsCategory .col-md-6 img {
                width: 60% !important;
                height: 390px !important;
                object-fit: cover!important;
                object-position: center !important;
                border-radius: 20px;
                margin-left: auto;
                margin-right: auto;
                display: block;
            }

           #breakFastCategory .col-md-6 img {
                width: 100% !important;
                height: 300px !important;
                object-fit: cover !important;
                object-position: center !important;
                border-radius: 20px !important;
                display: inline-block !important;
            }

            /* Offer text */
            .offer-text {
                font-size: 14px;
                margin: 10px 0 20px;
                text-align: center;
                color: #444;
            }

            /* Titles */
            .menu-subtitle {
                text-align: center;
                margin-top: 25px;
                font-weight: 600;
            }

            /* Breakfast images */
            .breakfast-img {
                width: 100%;
                height: 160px;
                object-fit: cover;
                object-position: center;
                border-radius: 12px;
                margin: 10px 0;
            }

            /* Center single images automatically */
            .row:has(.col-6:nth-child(1):last-child),
            .single-image {
                justify-content: center !important;
                display: flex !important;
            }

            /* Supplement text */
            .supp-text {
                text-align: center;
                font-size: 13px;
                margin-top: 10px;
                color: #666;
            }

        }

       /* GLOBAL DARK MODE */
body.dark-mode {
    background-color: #121212 !important;
    color: #e5e5e5 !important;
}

/* NAVIGATION */
nav.dark-mode {
    background-color: #1a1a1a !important;
}
body.dark-mode #menuNav .btn {
    background-color: #2a2a2a !important;
    color: #eee !important;
    border: 1px solid #444 !important;
    border-radius: 20px;
}

body.dark-mode #menuNav .btn.active-menu {
    background-color: #e63946 !important; /* same red as your theme */
    color: #fff !important;
    border-color: #e63946 !important;
}

body.dark-mode #menuNav {
         background: #1a1a1a;
            backdrop-filter: blur(10px);
            padding: 5px 10px;
            border-radius: 0px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
/* SECTIONS & FOOTER */
section.dark-mode,
footer.dark-mode {
    background-color: #1a1a1a !important;
    color: #e5e5e5 !important;
}

/* HEADERS */
/* ALL TITLES IN DARK MODE */
body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4,
body.dark-mode h5 {
    color: #fff !important;
}

/* MENU TITLE */
body.dark-mode #menu p {
    color: #bbbbbb !important;
}

/* CARDS */
body.dark-mode .card {
    background-color: #1d1d1d !important;
    border: 1px solid #333 !important;
}

/* CARD TEXTS */
body.dark-mode .card-title,
body.dark-mode .card-text {
    color: #e5e5e5 !important;
}

/* LIST ITEMS */
body.dark-mode .list-group-item {
    background-color: #2a2a2a !important;
    color: #fff !important;
    border-color: #444 !important;
}

body.dark-mode .appetizers-list li {
    color: #fff !important;       /* Text white */
    border-bottom: 1px solid #444 !important;  /* Border darker */
    background-color: transparent !important;  /* Optional: remove any white bg */
}


/* ICON BOX (address, email, opening hours boxes) */
body.dark-mode .bg-light {
    background-color: #2a2a2a !important;
    color: #f2f2f2 !important;
}

body.dark-mode .bg-light i {
    color: #f2f2f2 !important;
}