@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

* {
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

footer {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    background-color: rgb(248, 249, 250);
    color: rgb(32, 32, 32);
    padding: 20px;
}

.presentation-fond-reduit {
    height: 300px !important;
}

.presentation-fond {
    height: 500px;
    background-image: url('../images/fonds/salle.png');
    background-repeat: no-repeat;
    background-size: cover;
    backdrop-filter: blur(4px);
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.presentation-fond h1 {
    color: rgb(248, 242, 230);
    z-index: 50;
    position: relative;
    text-align: center;
}

.reservation {
    background-color: rgb(245, 125, 125);
    padding: 10px 20px 10px 20px;
    color: white;
    border-radius: 5px;
    animation: infinite reserver 5s ease-in-out;
}

.presentation-resto {
    padding: 80px 20px 80px 20px;
    background-color: rgb(158, 124, 60);
    height: fit-content;
    color: white;
}

.presentation-resto-sombre {
    padding: 80px 20px 80px 20px;
    background-color: rgb(102, 79, 36);
    height: fit-content;
    color: white;
}

.horaires  {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.presentation-resto .row .col {
    padding: 5px;
}

.chef,
.citation-chef {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
}

.chef {
    gap: 20px;
}

.image-chef {
    width: 250px;
    border-radius: 20px;
}

.presentation-resto-separateur {
    margin-top: 20px;
    display: none;
}

.facade {
    height: 600px;
    background-image: url("../images/fonds/facade.png");
    background-size: cover;
    color: rgb(231, 203, 165);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.nav-link {
    transition: 0.5s;
}

.nav-link:hover {
    color: rgb(245, 125, 125);
    transition: 0.5s;
}

.text-center {
    padding-bottom: 10px;
}

@keyframes reserver {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}
.table-mobile {
    display: none;
    flex-direction: column;
    gap: 10px;
}
@media (max-width: 900px) {
    .presentation-resto .row {
        flex-direction: column !important;
    }

    .chef {
        flex-direction: column;
    }

    .presentation-resto-separateur {
        display: block;
    }

    .table-pc {
        display: none;
    }
    .table-mobile {
        display: flex;
    }
}

.images-galerie {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.images-galerie img {
    border-radius: 5px;
    width: 50vw;
}

.images-galerie hr {
    width: 60%;
}

.images-galerie figure {
    color: lightgray;
    text-decoration: underline;
}

a {
    color: white;
    text-decoration: none;
}
td {
    width: 15vw;
    height: 50px;
    text-align: center;
}

th {
    text-align: center;
}

table {
    background-color: transparent !important;
}
