/* Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/* Lato */
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");

/* ligne */
hr {
    width: 100px;
    height: 20px;
    margin-top: 5px;
    background-color: #004aad;
    border: none;
}
/* Polices */
.poppins_bold {
    font-family: "Poppins", sans-serif;
    font-weight: bold;
    font-style: normal;
    color: #60c338;
}
.poppins_light {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
    color: #004aad;
}
.lato_regular {
    font-family: "Lato", sans-serif;
    font-weight: 500;
    font-style: normal;
}
.lato_regular_italic_bold {
    font-family: "Lato", sans-serif;
    font-weight: bold;
    font-style: italic;
    color: #60c338;
}
.lato_regular_bold {
    font-family: "Lato", sans-serif;
    font-weight: bold;
    color: #004aad;
}
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Lato", sans-serif;
    scroll-behavior: smooth;
}
a {
    text-decoration: none;
}
.main {
    width: 90%;
    margin: auto;
}
/* banner_page */
.banner_page {
    background-repeat: repeat;
    background-size: contain;
    height: 60vh;
    width: 100%;
}
.banner_page .layer {
    height: 100%;
    width: 100%;
    background-color: rgba(128, 128, 128, 0.6);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}
.banner_page .layer h2 {
    font-size: 2rem;
}
/* banner_page */

.nav {
    height: 15vh;
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.075) 0px 2px 4px 0px;
    position: sticky;
    top: 0;
    z-index: 5000;
}

.nav .toogle a img {
    width: 10rem;
}

.nav .menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    font-size: 2rem;
    color: gray;
}
.nav .close {
    display: none;
}
.nav .menu-close {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    position: relative;
    color: gray;
}
.nav .link {
    font-size: 14px;
    transition: transform 0.3s ease-in-out;
}

.nav .link ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.nav .link ul li {
    position: relative;
}

.nav .link ul li a {
    display: block;
    align-items: center;
    padding: 1rem;
}

.nav .link ul li .reservation {
    outline: 0;
    text-align: center;
    border-radius: 3px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    background: #0852b3;
    border-color: #0852b3;
    font-weight: 500;
    text-transform: uppercase;
    color: white;
    width: max-content;
}

.nav .link ul li .reservation:hover {
    background: #004aad;
    border-color: #004aad;
}

.nav .link ul li a:hover {
    color: #60c338;
}

.nav .link ul li a i {
    transition: transform 0.2s ease-in-out;
    font-size: 10px;
}

.nav .link ul li a span {
    margin-right: 10px;
}

.nav .link ul li ul li a span {
    margin-right: 10px;
}

.nav .link li ul {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    width: 13rem;
    z-index: 9000;
    transform: scale(0.5);
    display: block;
    border-radius: 0.5rem;
    transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out,
        visibility 0.2s ease-in-out;
    box-shadow: 0 2px 4px -1px rgb(0 0 0 / 16%), 0 4px 5px 0 rgb(0 0 0 / 11%),
        0 1px 10px 0 rgb(0 0 0 / 10%);
}

.nav .link li:hover > ul {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
    display: block;
}

.nav .link li ul li {
    display: block;
}

.nav .link li ul li:hover {
    border-radius: 0.5rem;
}

.nav .link li ul li a span {
    margin-right: 1rem;
}

.nav .link li ul li ul {
    left: 100%;
    top: 0;
}

#language-select {
    padding: 6px 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
    color: #333;
    width: 120px;
}

#language-select:hover,
#language-select:focus {
    outline: none;
    border-color: #66afe9;
    box-shadow: 0 0 5px rgba(102, 175, 233, 0.6);
}

@media (max-width: 1250px) {
    .banner_page {
        background-size: cover;
    }
    .banner_page .layer h2 {
        font-size: 1.5rem;
    }
    .nav {
        height: auto;
        flex-direction: column;
        align-items: flex-start;
    }
    .nav .close {
        display: flex;
        width: 100%;
        justify-content: space-between;
        padding: 20px;
    }
    .nav .toogle {
        display: flex;
        justify-content: space-between;
        width: 100%;
        padding: 10px;
    }
    .nav .menu-toggle {
        display: flex;
    }
    .nav .link {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: white;
        transform: translateX(-100%);
        text-align: center;
        z-index: 1000;
    }
    .nav .link ul {
        flex-direction: column;
        box-shadow: none;
    }
    .nav.link li ul {
        width: 100%;
        box-shadow: none;
        position: relative;
    }
    .nav .link li ul {
        visibility: visible;
        opacity: 1;
        position: relative;
        width: 100%;
        z-index: 9000;
        display: block;
        transform: scale(1);
        box-shadow: none;
        display: none;
    }
    .nav .link ul li .reservation {
        margin: auto;
    }
    .nav .link li:hover > ul {
        display: none;
    }

    .nav .link.show {
        transform: translateX(0);
    }
    .nav .menu-close {
        display: block;
    }
}
/* navbar */

/* footer */
.footer {
    width: 100%;
}
.footer span {
    font-size: 20px;
    font-weight: 300;
    transform: scale(0.8);
    text-align: center;
}
.footer .info {
    display: flex;
    flex-wrap: wrap-reverse;
    height: max-content;
    justify-content: space-around;
    padding: 100px 0;
    color: white;
    background-color: #2c2c2c;
    gap: 3rem;
}
.footer .info img {
    width: 13rem;
}
.footer .info .contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.footer .info .contact img {
    cursor: pointer;
    margin: 20px 0;
}
.footer .info .newsletter form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.footer .info .newsletter form input {
    padding: 6px 12px;
    background: rgb(31, 32, 35);
    border: 1px solid rgb(60, 63, 68);
    border-radius: 4px;
    font-size: 13px;
    color: rgb(247, 248, 248);
    height: 46px;
    width: 250px;
    appearance: none;
    transition: border 0.15s ease 0s;
}
.footer .info .newsletter form div {
    display: flex;
    align-items: center;
}
.footer .info .newsletter form input:focus {
    outline: none;
    box-shadow: none;
    border-color: #004aad;
}
.footer .info .newsletter form button {
    border: none;
    cursor: pointer;
    padding: 6px 12px;
    height: 46px;
    background-color: transparent;
}
.footer .info .newsletter form button img {
    width: 2rem;
}
.footer .copyright {
    text-align: center;
    color: white;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 30px 0;
}
.footer .copyright span {
    color: #60c338;
}
/* footer */

/* loader */
#load {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background-color: #fff;
}
.loader {
    width: 40px;
    height: 20px;
    --c: no-repeat radial-gradient(farthest-side, #004aad 93%, #004aad);
    background: var(--c) 0 0, var(--c) 50% 0, var(--c) 100% 0;
    background-size: 8px 8px;
    position: relative;
    animation: l4-0 1s linear infinite alternate;
}
.loader:before {
    content: "";
    position: absolute;
    width: 8px;
    height: 12px;
    background: #60c338;
    left: 0;
    top: 0;
    animation: l4-1 1s linear infinite alternate,
        l4-2 0.5s cubic-bezier(0, 200, 0.8, 200) infinite;
}
@keyframes l4-0 {
    0% {
        background-position: 0 100%, 50% 0, 100% 0;
    }
    8%,
    42% {
        background-position: 0 0, 50% 0, 100% 0;
    }
    50% {
        background-position: 0 0, 50% 100%, 100% 0;
    }
    58%,
    92% {
        background-position: 0 0, 50% 0, 100% 0;
    }
    100% {
        background-position: 0 0, 50% 0, 100% 100%;
    }
}
@keyframes l4-1 {
    100% {
        left: calc(100% - 8px);
    }
}
@keyframes l4-2 {
    100% {
        top: -0.1px;
    }
}
/* loader */

/* btn-top */
#btn-top {
    background-color: #60c338;
    color: white;
    padding: 15px;
    font-size: 18px;
    position: fixed;
    display: none;
    right: 30px;
    bottom: 45px;
    z-index: 500;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px 0px;
}

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}

.alert-success {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6;
}

.alert-danger {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
}
