@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&display=swap');
*{
    padding: 0;
    margin: 0;
    font-family: "Cinzel", serif;
}
:root{
    --first-color : #1A1A1A;
    --second-color:#D2AC66;
    --third-color:white;
}
li{
    list-style: none;
}
a{
    text-decoration: none;
}
body{
    background-color:black;
}
.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: url(./imgs/nav\ back.png);
    background-position: center;
    background-size: cover;
}
.navbar .list ul{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}
.navbar .list a{
    color: var(--third-color);
    font-size: 1.2rem;
    opacity: .7;
}
.navbar .list a:hover{
    color: var(--second-color);
}
.navbar .list .active{
    color: var(--second-color);
    opacity: 1;
}
.navbar .logo img{
    width: 50px;
}

.home{
    height: 80vh;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 6rem 6rem;
    background: url(./imgs/home\ logo.png);
    background-position: center;
    background-size: cover;
}
.home .left{
    flex-basis: 50%;
    padding-top: 3rem;
}
.home .left img{
    display: none;
}


.home p{
    color: var(--third-color);
    font-weight: 300;
    margin-top: 2rem;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}
.home a{
    color: var(--second-color);
    border: 1px solid var(--second-color);
    background-color: rgba(210, 172, 102,0.2);
    margin-top: 2rem;
    padding: .5rem 3rem;
    border-radius: 20px;
    font-size: 1.2rem;
}
.home a:hover{
    opacity: .8;
}
.home h1{
    color: var(--third-color);
    font-size: 3.5rem;
}
.home .highlight {
    display: inline-block;
    color: var(--second-color); /* Default color */
    position: relative;
    opacity: 1;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}
.highlight.hidden {
    opacity: 0;
    transform: translateY(-100%);
}
.highlight.fade-out {
    opacity: 0;
    transform: translateY(-100%);
}
.highlight.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.reservation .top,.news{
    background: url(./imgs/reservation.png);
    background-position: center;
    background-size: cover;
    height: 40vh;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 1.5rem;
    margin-top: -12rem;
    align-items: center;
}
.reservation .top h1{
    color: var(--third-color);
    font-size: 2.2rem;
}

.reservation .reserve,.news .new{
    width: 80%;
    background-color: var(--first-color);
    border: 2px solid var(--second-color);
    height: 20rem;
    position: absolute;
    margin-top: 4rem;
}
.reservation .reserve .steps{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 0;
}
.reservation .reserve span{
    height: .2rem;
    width: 5rem;
    background-color: #D9D9D9;
}
.reservation .reserve .step{
    color: #D9D9D9;
    font-size: 1.5rem;
    border: 2px solid #D9D9D9;
    border-radius: 100%;
    width: 4rem;
    height: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(217, 217, 217,0.2);
}
.reservation .steps .active{
    background-color: rgba(210, 172, 102,0.2);
    border: 2px solid var(--second-color);
    color: var(--second-color);
}

.reservation .datas{
    display: none;
}
.reservation .activedatas{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}
.reservation .data{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .5rem;
}
.reservation .data label{
    color:rgba(217, 217, 217,0.8);
}
.reservation .data input{
    width: 15rem;
    height: 2rem;
    padding: .5rem;
    border-radius: 15px;
    background-color: rgba(217, 217, 217,0.2);
    border: 1px solid var(--second-color);
    color: var(--third-color);
}
.reservation .data input:focus{
    outline: none;
    border: 2px solid var(--second-color);
}
.reservation .next{
   margin-top: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.reservation .next button{
    background-color: var(--second-color);
    color: var(--third-color);
    border: 1px solid var(--second-color);
    padding: 1rem 3rem;
    border-radius: 5px;
    width: 30%;
    font-size: 1.2rem;
    font-weight: bolder;
    cursor: pointer;
}
.reservation .next .hide{
    display: none;
}

.pictures{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 13rem;
}
.pictures h1{
    color: var(--third-color);
}

.gallery-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    padding: 20px;
    border-top: 1px solid var(--second-color);
    margin-top: 2rem;
}

.gallery {
    display: inline-flex;
    transition: transform 0.5s ease;
}

.gallery img {
    height: 250px; /* Adjust height as needed */
    margin-right: 10px;
    flex-shrink: 0;
    z-index: -100;
}

.gallery img:last-child {
    margin-right: 0;
}

.gallery-container::-webkit-scrollbar {
    display: none;
}

.gallery-container {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}


.pictures p{
    color: var(--third-color);
    font-weight: 300;
    font-size: 1rem;
    text-align: center;
    padding: .5rem 6rem;
    margin-bottom: 1rem;
    opacity: .7;
}
.pictures a,.offers a{
    color: var(--second-color);
    border: 1px solid var(--second-color);
    border-radius: 15px;
    background-color: rgba(210, 172, 102,0.2);
    padding: 1rem 3rem;
    font-size: 1.2rem;
}
.pictures a:hover{
    background-color: rgba(210, 172, 102,0.7);

}

.services,.restauration{
    background-color: var(--first-color);
    height: 110%;
    margin-top: 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 1rem 0rem;
}
.services h1,.restauration h1{
    color: var(--third-color);
    font-size: 2.5rem;
}

.services h1 span,.restauration h1 span{
    color: var(--second-color);
}
.services p{
    font-size: 1rem;
    text-align: center;
    padding: .5rem 6rem;
    color: #D9D9D9;
    opacity: .7;
}

.service{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3.5rem;
    margin-top: 2rem;
}
.service img{
    width: 140px;
}


.offers{
    height: 110%;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 1rem 0rem;
}
.offers h1{
    color: var(--third-color);
    font-size: 2.5rem;
}

.offers h1 span{
    color: var(--second-color);
}
.offers .plans{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4.5rem;
    margin-bottom: 2rem;
}
.offers .plan{
    background: linear-gradient(rgba(26, 26, 26,.8),rgba(26, 26, 26,.7));
    height: 110%;
    border-radius: 15px;
    padding: 1rem;
    width: 18rem;
    margin-top: 2rem;
}
.offers .plan h2{
    color: var(--third-color);
    text-align: center;
    margin-bottom: 1.5rem;
}
.offers .plan h3{
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--third-color);
    font-weight: 300;
    font-size: 1rem;
    margin-bottom: .5rem;
    gap: .5rem;
}
.offers .plan .advantages{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.offers .active{
    border: 1px solid var(--second-color);
    background-color: rgba(210, 172, 102,0.2);
    box-shadow: 0px 4px 4px 00px var(--second-color);
}

.restauration{
    background: linear-gradient(#1A1A1A,black);
}
.restauration p{
    color: var(--third-color);
    font-size: 1rem;
}
.menus{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
    gap: 2rem;
}
.menu{
    width: 18rem;
    height: 20rem;
    border-radius: 15px;
    background-color: var(--first-color);
}
.menu .top{
    height: 70%;
    border-radius: 15px 15px 0 0;
    transition: transform .5s ease-in-out;
}
.menu .bottom{
    padding: .5rem 1rem;
    height:25%;
}
.menu h2{
    color: var(--third-color);
    
}
.menu h5{
    color: var(--third-color);
    opacity: .7;
    font-weight: 300;
}
.menu:hover .top{
    transform: rotate(3deg);
    border-radius: 15px;
}

.news{
    margin-top: 4rem;
}

.news .new{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 0;
}
.news h1{
    color: var(--third-color);
    font-size: 3.2rem;
}
.news p{
    color: var(--third-color);
    opacity: .7;
}
.news .new{
    height: 15rem;
}
.news form{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3rem;
    gap: 1rem;
}
.news form input{
    width: 35rem;
    height: 3rem;
    padding: .5rem;
    background-color: rgba(217, 217, 217,0.2);
    border: 1px solid var(--first-color);
}
.news form button{
    background-color: var(--second-color);
    color: var(--third-color);
    padding: .5rem 3rem;
    font-size: 1.5rem;
    height: 4rem;
    border: 1px solid var(--second-color);
}


footer{
    background-color: #2D2D2D;
    height: 110%;
    margin-top: 8rem;
    padding: 1rem 5rem;
}
footer .top{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
footer form{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
footer h2{
    color: var(--third-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
footer form input , footer textarea{
    width: 25rem;
    background-color: rgba(217, 217, 217,0.2);
    height: 2rem;
    border: 1px solid var(--first-color);
    padding: .5rem;
    margin-bottom: 1rem;
}
footer form textarea{
    height: 10rem;
    resize: none;
}
footer form button{
    border: 1px solid var(--second-color);
    background-color: var(--second-color);
    color: var(--third-color);
    padding: .5rem 2rem;
}
footer .mns{
    display: flex;
    align-items: flex-start;
    gap: 15rem;
}
footer ul{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
footer ul li a{
    color: var(--third-color);
    opacity: .8;
    margin-bottom: .6rem;
}

footer .center{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
}

footer .center .left{
    flex-basis: 40%;
}
footer .center p{
    color: var(--third-color);
    font-size: .9rem;
    font-weight: 300;
    opacity: .8;
   margin-top: 2rem;
   line-height: 2rem;
}

footer .bottom{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}
footer .bottom img{
    width: 30px;
}
footer .copy{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
}
footer .copy p{
    color: var(--third-color);
    font-size: .9rem;
}
footer .copy a{
    color: var(--second-color);
}


.navmenu{
    display: none;
}

footer iframe{
    width: 500px;
    height: 350px;
}




.res-home{
    background: url(./imgs/bg.png);
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-items: center;
    align-items: center;
    padding-top: 10rem;
    gap: 2rem;
}
.res-home img{
    width: 230px;
}
.res-home h1{
    color: var(--third-color);
    font-size: 3.5rem;
}
.rooms,.rest{
    background: linear-gradient(#1A1A1A,black);
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.rooms h1,.rest h1{
    font-size: 2.5rem;
    color: var(--third-color);
}
.rooms h1 span,.rest h1 span{
    color: var(--second-color);
}
.rooms p,.rest p{
    color: var(--third-color);
    opacity: .8;
    text-align: center;
    font-size: 1rem;
    padding: .5rem 6rem;
}
.chambres{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    margin: 4rem 0;
}
.chambre{
    width: 22rem;
    height: 25rem;
    border-radius: 15px;
    background-color: var(--first-color);
}
.chambre .top{
    height: 65%;
    border-radius: 15px 15px 0 0;
    transition: transform .5s ease-in-out;
}
.chambre .bottom{
    padding: 1rem;
    
}
.chambre h2{
    color: var(--third-color);
    font-size: 1.2rem;
}
.chambre p{
    color: var(--third-color);
    opacity: .7;
    font-weight: 300;
    text-align: left;
    padding: .5rem 0;
}
.chambre a,.restaurants a{
    color: var(--first-color);
    font-weight: 500;
}
.chambre h3,.restaurants h3{
    text-align: center;
    background-color: var(--third-color);
    padding: .5rem 2rem;
    border-radius: 10px;
}
.chambre:hover .top{
    transform: rotate(3deg);
    border-radius: 15px;
}
.rooms .discover{
    background-color:rgba(210, 172, 102,0.2); 
    color: var(--second-color);
    padding: 1rem 3rem;
    border-radius: 25px;
    font-weight: 500;
    font-size: 1.2rem;
}
.rooms .discover:hover{
    opacity: .7;
}
.meeting{
    background-color: black;
}
.restaurants{
    margin: 4rem 0;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 3rem;
}
.restaurants h3{
    margin: .5rem 0;
}
.restaurants .menu{
    height: 25rem;
}

.reservenow{
    background: url(./imgs/reservenow.png);
    background-position: center;
    background-size: cover;
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
}
.reservenow h1{
    color: var(--third-color);
    font-size: 3.5rem;
}
.reservenow h3{
    color: var(--second-color);
    font-size: 2rem;
    font-weight: 300;
}
.imgs .top{
    width: 47rem;
    height: 20rem;
    border: 1px solid var(--second-color);
    margin-left: 2rem;
    margin-top: -10rem;
}
.imgs .bottom{
    display: flex;
    width: 47rem;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 2rem ;
}
.imgs .bottom img{
    width: 110px;
}

.imgs .description{
    width: 47rem;
    margin-left: 2rem;
}
.imgs p{
    color: var(--third-color);
}
.reserve-form{
    position: absolute;
    right: 10%;
    top: 40%;
    background-color: var(--first-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--second-color);
    border-radius: 15px;
}
.reserve-form form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}
.reserve-form .data{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .5rem;
    width: 100%;
}
.reserve-form form h1{
    color: var(--third-color);
    font-size: 3.5rem;
}
.reserve-form label{
    color: var(--third-color);
    font-size: 1.2rem;
}
.reserve-form input{
    width: 95%;
    height: 2rem;
    background-color: transparent;
    border: 1px solid var(--second-color);
    padding: .5rem;
    margin-bottom: .5rem;
    color: var(--third-color);
}
.reserve-form button{
    background-color: var(--second-color);
    color: var(--third-color);
    padding: 1rem;
    border-radius: 10px;
    cursor: pointer;
    width: 24rem;
}

.res-offers{
    margin-top: 10rem;
}

.login-form{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    flex-direction: column;
}
.login-form form{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.login-form label{
    color: white;
}
.login-form input{
    width: 20rem;
    height: 2rem;
    border: 1px solid var(--second-color);
    padding: .5rem;
    color: var(--second-color);
    margin-bottom: 2rem;
}
.login-form button{
    border: 1px solid var(--second-color);
    background-color: var(--second-color);
    padding: 1rem 4rem;
    color: white;
    cursor: pointer;
    font-size: 1.5rem;
}
nav .container{
    display: flex;
}
nav .container a{
    color: white;
    margin-left: 2rem;
}
.login-form h1{
    color: var(--second-color);
    margin: 1rem 0;
}
@media only screen and (max-width:1000px){
    .navbar .list ul{
        flex-direction: column;
        position: absolute;
        background-color: var(--first-color);
        padding: 2rem;
        top: -110%;
        right: -0%;
        transition:  .5s ease-in-out;
    }

    .navbar .list .showmenu{
        top: 10%;
    }
    .navmenu{
        display: block;
    }

    .navmenu i{
        font-size: 2.5rem;
        color: var(--second-color);
    }
    .home{
        height: 85vh;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        padding: 2rem 1rem;
        background: url(./imgs/home\ logo.png);
        background-position: left;
        background-size: cover;
    }
    .home .left{
        flex-basis: 100%;
        padding-top: 3rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .home .left img{
        width: 100px;
        margin-top: 1rem;
        display: block;
    }
    .home .left h1{
        font-size: 1.5rem;
    }
    .reservation .reserve{
        height: 40rem;
    }
    .reservation .activedatas{
        flex-direction: column;
    }
    .reservation .next button{
        width: 70%;
    }
    .pictures{
        margin-top: 30rem;
    }
    .pictures h1{
        text-align: center;
        padding: .5rem 3rem;
    }
    .pictures p{
        padding: 1rem 3rem;
        text-align: justify;
    }
    section h1{
        text-align: center;
    }
    .services h1,.restauration h1,.offers h1{
        font-size: 1.5rem;
    }
    .services p,.restauration p{
        font-size: 1rem;
        padding: .5rem 3rem;
        text-align: justify;
    }
    .restauration p{
        text-align: center;
    }
    .service{
        display: grid;
        grid-template-columns: repeat(2,1fr);
    }
    .offers h1{
        padding: .5rem 3rem;
    }
    .plans{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1rem;
    }
    .menus{
        display: grid;
        grid-template-columns: repeat(2,1fr);
    }
    .menus .menu{
        width: 11rem;
    }
    .menu .top{
        height: 60%;
    }
    .menu .bottom{
        text-align: center;
    }
    .news{
        margin-top: 3rem;
    }
    .news .new{
        height: 18rem;
        width: 90%;
    }
    .news .new h1{
        font-size: 2rem;
    }
    .news .new p{
        text-align: center;
        font-size: 1rem;
    }
    .news .new input{
        width: 70%;
    }
    .news .new button{
        padding: 1rem;
        font-size: 1rem;
    }

    footer{
        margin-top: 10rem;
    }
    footer .top{
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    footer .top .mns{
        flex-direction: column;
        gap: 1rem;
    }
    footer .top input,footer .top textarea{
        width: 20rem;
    }
    footer form{
        justify-content: center;
        align-items: center;
        margin-top: 1rem;
    }
    footer .center{
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    footer .center .left{
        flex-basis: 100%;
        align-items: center;
        justify-content: center;
        display: flex;
        flex-direction: column;
    }
    footer .center p{
        text-align: justify;
    }
    footer .center .right{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    footer iframe{
        width: 300px;
        height: 300px;
    }
    footer .copy p{
        text-align: center;
    }

    .restaurants{
        grid-template-columns: repeat(1,1fr);
    }
    .rest h1,.rooms h1{
        text-align: center;
    }
    .rest p,.rooms p{
        text-align: justify;
        padding: .5rem 2rem;
    }
    .res-home{
        height: 50vh;
        background-position: right;
    }
    .chambres{
        display: flex;
        flex-direction: column;
        justify-items: center;
        align-items: center;
    }

    .reserve-form{
        position:static;
        margin-top: 2rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .reserve-form form{
        padding: 1rem;
    }
    .reserve-form form h1{
        font-size: 2.5rem;
    }
    .imgs .top{
        width: 90%;
        margin-left: 1rem;
    }
    .imgs .bottom{
        display: grid;
        grid-template-columns: repeat(3,1fr);
        width: 90%;
        margin: 1rem;
    }
    .imgs .bottom img{
        width: 100px;
    }
    .imgs .description{
        width: 90%;
        margin: 1rem;
    }
    .imgs .description p{
        text-align: justify;
    }
}