/*/* ✅ Style personnalisé */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    font-family: 'Poppins', sans-serif;
}

.navbar {
    background: #222;
    padding: 10px 20px;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
}

.navbar-nav .nav-item {
    margin-left: 10px;
}

.navbar-nav .nav-link {
    color: #fff !important;
    font-weight: 500;
    transition: 0.3s;
}

.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
    color: #f8b400 !important;
}

.navbar-toggler {
    border: none;
    outline: none;
}

/* ✅ La classe main-container prendra tout l’espace disponible */
/* ✅ Permet au contenu de pousser le footer vers le bas */
.main-container {
    flex: 1;
    padding-bottom: 50px; /* ✅ Ajoute un espace en bas pour éviter le chevauchement */
}

/* ✅ Ajuster l'input et le bouton GO pour un alignement parfait */
.input-group {
    display: flex;
    align-items: center;
    max-width: 500px;
    margin: auto;
}

.input-group .form-control {
    flex-grow: 1;
    border-radius: 5px;
    border-right: none;
}

.order-option {
    text-align: center;
    margin-top: 15px;
}

/* ✅ Assurer que le bouton GO reste bien aligné */
#orderBtn {
    display: block;
    /*margin: 1px auto;
    padding: 10px 30px;
    font-size: 1rem;*/
    font-weight: bold;
    border-radius: 5px;
    background-color: #28a745;
    color: white;
    border: none;
    cursor: pointer;
}

#orderBtn:hover {
    background-color: #218838;
}

/* ✅ Assurer que l'input et la liste déroulante aient la même taille */
.form-control {
    height: 45px;
    font-size: 16px;
    border-radius: 5px;
}

/* ✅ Ajuster l'alignement des champs et du bouton "GO!" 
.input-group {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 500px;
    margin: auto;
}*/

/* ✅ Assurer que le bouton "GO!" soit bien à droite 
.input-group button {
    height: 60px;
    font-size: 16px;
    padding: 0 20px;
    margin-left: 5px;
    white-space: nowrap;
}*/

/* ✅ Style du bouton */
#orderBtn, #orderBtnPickup {
    background-color: #28a745;
    color: white;
    border: none;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
}

#orderBtn:hover, #orderBtnPickup:hover {
    background-color: #218838;
}


/* ✅ Section Catégories */
.categories, .top-dishes, .testimonials, .location {
    text-align: center;
    margin-top: 50px;
}

.category-container, .dishes-container {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.category, .dish {
    text-align: center;
    width: 200px;
}

.category img, .dish img {
    width: 100%;
    border-radius: 10px;
}

/* ✅ Témoignages */
.testimonial {
    background: #f8f8f8;
    padding: 15px;
    margin: 10px auto;
    width: 60%;
    border-radius: 10px;
}

/* ✅ Carte Google Maps */
#map {
    width: 80%;
    height: 300px;
    margin: auto;
    background: #ddd;
}



/* ✅ Footer toujours en bas */
footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 10px 0;
    width: 100%;
    margin-top: auto;
}

.local-toast {
    opacity: 1;
    pointer-events: none;
    font-size: 0.9rem;
    white-space: nowrap;
}
