/* Police stystème native */
body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 
                'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 
                'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: #f5f0e6;
    color: #1e1e1e;
    padding-top: 60px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

footer {
    margin-top: auto;
}

.navbar .container {
    align-items: center;
}

@media (max-width: 991.98px) {
    .navbar-nav {
        padding: 0.5rem 0;
        align-items: flex-start;
        text-align: left !important;
    }

    .navbar-nav .nav-item {
        margin-top: 0.25rem;
    }

    .navbar-nav .btn {
        display: inline-block;
        max-width: 100%;
    }

    .navbar-nav .nav-item:last-child .btn {
        margin-left: 0 !important;
    }
}

@media (min-width: 992px) {
    .navbar-nav {
        align-items: center;
    }

    .navbar-nav .nav-item:last-child .btn {
        margin-left: 0.5rem;
    }
}

h1, h2 {
    font-weight: 700;
}
.bg-bordeaux {
    background-color: rgb(95, 54, 1) !important;
}
.btn-primary {
    background-color: rgba(70, 39, 0, 0.76);
    border: none;
}
.btn-primary:hover {
    background-color: rgb(53, 30, 0);
}
.hero {
    height: 100vh;
    margin-top: -60px;
    padding-top: 60px;
    background: url('/images/background.avif')  no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
}
/* effet sombre pour lisibilite */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
}
.hero-content {
    position: relative;
    z-index: 2;
}    
.hero h1 {
    font-size: 48px;
    z-index: 2;
}
.card img {
    object-fit: cover;
    height: 200px;
}

.menu-action-btn {
    display: inline-block;
    padding: 10px 20px;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
}

.menu-action-btn-retour {
    margin-top: 20px;
    background: rgba(70, 39, 0, 0.76);
}

.menu-action-btn-commander {
    margin-left: 10px;
    background: #5f3601;
}

.menu-detail ul {
    list-style: none;
    padding-left: 0;
}

.menu-detail li {
    margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
    .hero {
        height: 80vh;
    }
    .card img {
        height: 250px;
    }
}
                