:root {
    /* fonts ------------*/


    /* colors -----------*/

    --red-color: #B50D0D;
    --pink-color: #B73842;
    --grey-color: #383838;
    --light-color: white;
    --dark-color: black;

}
.body{
    background-color: beige;
}

/* Navbar */
.navbar{
    background-color: bisque;
    transition: background-color 0.5s linear;
}

.navbar-scrolled {
    background-color: #333; /* Couleur de fond de la navbar après le scroll */
    /* Autres styles pour la navbar après le scroll */
  }

.btn-reservation {
    background-color: var(--light-color) !important;
    color: var(--red-color) !important;
    font-weight: bold !important;
    border-color: var(--red-color) !important;
    margin-right: 1.5em;
}

.logo {
    margin-left: 2em;
}


/* Homepage */

.welcome {
    color: var(--pink-color);
    white-space: nowrap;
    font-size: 2rem;
    padding: 0;
    margin: 0;
    animation: Scroll 5s linear infinite;
    font-weight: bold;
}

@keyframes Scroll {
    0% {
        transform: translateX(-30%);
    }

    100% {
        transform: translateX(30%);
    }
}
.test{
    height: 243% !important;
}

/* Header */

.header {
    height: 300px;
}


.header .header-image {
    background-image: url('/assets/images/paysage.jpg');
    background-size: cover;
}

.btn-dropdown {
    width: 300px;
    background-color: transparent;
    backdrop-filter: blur(20px);
    color: var(--light-color);
}

.test {
    height: 100vh; /* Utilise la hauteur totale de la fenêtre */
    display: flex;
    justify-content: center;
    align-items: center;
}
.test .test1 {
    background-image: url('/assets/images/paysage.jpg');
    background-size: cover;
    width: 100%;
    height: 100%;
}

.dropdown-menu {
    width: clamp(300px, 300px, 300px);
}

/* Style personnalisé pour les cartes */

.card {
    margin-bottom: 30px;
    padding: 23px;
}

.card-img-top {
    height: 250px;
    object-fit: cover;
    width: 100%;
}

.card-title {
    margin-bottom: 0;
}

.card-text {
    font-size: 16px;
}

.button {
    display: flex;
    justify-content: space-between;
    padding-top: 15px;
}

.container {
    padding-top: 50px;

}
.cardRestaurant{
    min-height: 200px;

}