*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}
html{
    scroll-behavior: smooth;
}
body{
    background: #fff;
    color: #333;
    overflow-x: hidden;
}
.icon{
    border-radius: 50%;
}
img{
    max-width: 100%;
    display: block;
}
a{
    text-decoration: none;
}
ul{
    list-style: none;
}
h1,h2,h3{
    font-family: 'Playfair Display', serif;
}
header{
    width: 100%;
    height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 8%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(8px);
    transition: 0.4s;
}
.logo{
    display: flex;
    align-items: center;
    gap: 15px;
}
.logo img{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}
.logo h2{
    color: white;
    font-size: 25px;
}
.logo span{
    color: #D4AF37;
}
nav ul{
    display: flex;
    gap: 30px;
}
nav a.active{
    text-decoration: underline;
    text-decoration-color: #C89B3C;
    font-size: 17px;
    color: #C89B3C;
}
nav ul li a{
    color: white;
    font-size: 17px;
    position: relative;
    transition: 0.3s;
}
nav ul li a.active{
    text-decoration: underline;
    text-decoration-color: #C89B3C;
    font-size: 17px;
    color: #C89B3C;
}
nav ul li a::after{
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: #D4AF37;
    bottom: -8px;
    left: 0;
    transition: 0.4s;
}
nav ul li a:hover{
    color: #D4AF37;
}
nav ul li a:hover::after{
    width: 100%;
}
.menu-toggle{
    display: none;
    color: white;
    font-size: 32px;
    cursor: pointer;
    z-index: 1002;
}
.menu-toggle i{
    color: #fff;
}
.hero{
    margin-top: 70px;
    width: 100%;
    height: 500px;
    background: url("../images/hotel1.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    position: relative;
    align-items: center;
    text-align: center;
}
.hero-overlay{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}
.hero-content{
    position: relative;
    z-index: 2;
    color: white;
    max-width: 850px;
    animation: fadeUp 1.3s ease;
}
.welcome{
    color: #D4AF37;
    letter-spacing: 5px;
    font-size: 18px;
    margin-top: 70px;
}
.hero-content h1{
    font-size: 70px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.hero-content h1 span{
    color: #D4AF37;
}
.description{
    font-size: 21px;
    line-height: 1.8;
    margin-bottom: 40px;
}
.hero-buttons{
    display: flex;
    justify-content: center;
    gap: 20px;
}
.btn{
    background: #D4AF37;
    color: white;
    padding: 15px 35px;
    border-radius: 35px;
    transition: 0.4s;
    font-weight: bold;
}
.btn:hover{
    background: #b98d15;
    transform: translateY(-5px);
}
@keyframes fadeUp{
    from{
        opacity: 0;
        transform: translateY(40px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}
.about{
    padding: 100px 8%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    align-items: center;
    background: #fff;
}
.about-image{
    overflow: hidden;
    border-radius: 10px;
}
.about-image img{
    width: 100%;
    height: 300px;
    border-radius: 10px;
    transition: 0.5s;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}
.about-image:hover img{
    transform: scale(1.05);
}
.about-content h2{
    font-size: 45px;
    margin-bottom: 20px;
    color: black;
}
.about-content h2 span{
    color: #D4AF37;
}
.about-content p{
    font-size: 17px;
    line-height: 1.9;
    color: black;
    margin-bottom: 20px;
}
.section-title{
    text-align: center;
    margin-bottom: 20px;
}
.section-title h2{
    font-size: 45px;
    color: black;
}
.section-title span{
    color: #D4AF37;
}
.section-title p{
    color: black;
    margin-top: 15px;
    font-size: 25px
}
.hotel-carousel{
    padding: 100px 8%;
    background: #fff;
}
.carousel{
    width: 100%;
    height: 350px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.25); 
}
.carousel .slide{
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: 1s;
}
.carousel .slide.active{
    opacity: 1;
}
.carousel .slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.carousel .slide::after{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.20);
}
.slide-text{
    position: absolute;
    z-index: 5;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    color: #D4AF37 ;
    width: 80%;
    text-align: center;
}
.slide-text p{
    font-size: 20px;
    line-height: 1.8; 
    color: white; 
}
.slide-text h3{
    font-size: 48px;
    margin-bottom: 20px;
    color: #D4AF37;
}
.carousel .slide img{
    transition: transform 8s linear;
}
.carousel .slide.active img{
    transform: scale(1.08);
}
.chambres-preview{
    padding: 100px 8%;
    background: #f8f8f8;
}

.cards{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}
.chambre-card{
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    transition: 0.4s;
}
.chambre-card:hover{
    transform: translateY(-12px);
    box-shadow: 0 25px 45px rgba(0,0,0,0.20);
}
.chambre-card img{
    width: 100%;
    height: 265px;
    object-fit: cover;
    transition: 0.5s;
}
.chambre-card:hover img{
    transform: scale(1.08);
}
.card-content{
    padding: 25px;
}
.card-content h3{
    font-size: 28px;
    color: black;
    margin-bottom: 20px;
}
.card-content p{
    margin-bottom: 10px;
    color: black;
    line-height: 1.8;
}
.card-content .disponible{
    color: #0a9b36;
    font-weight: bold;
}
.card-content .occupee{
    color: #d62828;
    font-weight: bold;
}
.card-content btn{
    margin-top: 20px;
    display: inline-block;
}


footer{
    background:linear-gradient(180deg,#111,#000);
    color:#ddd;
    margin-top:80px;
}

.footer-top{
    background:#D4AF37;
}

.footer-container{
    width:90%;
    margin:auto;
    padding:20px 0;
    display:grid;
    grid-template-columns:1.3fr 1fr 1fr 1fr;
    gap:35px;

}

.footer-box h3{

color:#D4AF37;
margin-bottom:25px;
font-size: 24px;
}
.footer-brand{
    text-align: left;
}
.footer-logo-img{
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 18px;
    border: 4px solid #D4AF37;
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.5);
}
.footer-brand h2{
    color: #fff;
    font-size: 38px;
    margin-top: 15px;
    font-family: 'Playfair Display', serif;
}
.footer-brand h2 span{
    color: #D4AF37;
}
.footer-brand p{
    color: #bbb;
    line-height: 1.8;
}

.footer-text{

    line-height:1.9;

    color:#bbb;

    margin-top:20px;

}

.footer-box a{

    display:block;

    color:#ccc;

    margin-bottom:15px;

    transition:.4s;

}

.footer-box a:hover{

    color:#D4AF37;

    transform:translateX(8px);

}

.footer-box p{

    margin-bottom:15px;

    line-height:1.8;

}

.footer-box i{

    color:#D4AF37;

    margin-right:10px;

}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.12);

    text-align:center;

    padding:30px;

    color:#aaa;

}

.realisateurs{

    margin-top:10px;

    line-height:1.8;

}


@media(max-width:900px){
    header{
        padding: 0 4%;
    }
    .logo img{
        width: 55px;
        height: 55px;
    }
    .logo h2{
        font-size: 20px;
    }
    nav ul{
        gap: 15px;
    }
    nav ul li a{
        font-size: 14px;
    }
    .footer-container{
        grid-template-columns: repeat(2, 1fr);
    }
    .cards{
        grid-template-columns: repeat(2, 1fr);
    }
}
@media(max-width:768px){
    .menu-toggle{
        display: block;
        position: fixed;
        top: 25px;
        right: 20px;
        font-size: 30px;
        color: white;
        cursor: pointer;
        z-index: 2000;
    }
  header{
    height: 80px;
    padding: 15px 20px;
  }
  .logo img{
    width: 50px;
    height: 50px;
  }
  .logo h2{
    font-size: 20px;
  }
  nav{
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    background: #111;
    z-index: 1000;
    padding-top: 100px;
    width: 260px;
    transition: 0.4s;
    overflow-y: auto;
  }
  nav.active{
    right: 0;
  }
  nav ul{
    flex-direction: column;
    align-items: center;
    gap: 30px;
    display: flex;
  }
  nav ul li {
        list-style: none;
    }
    nav ul li a{
        color: #fff;
        font-size: 20px;
    }
    section{
        padding: 60px 5%;
    }
    .cards{
        grid-template-columns: 1fr;
    }
    .footer-container{
        grid-template-columns: 1fr;
        text-align: center;
    }
    footer{
        padding: 40px 5% 20px;
    }
    .footer-box a:hover{
        padding-left: 0;
    }
    .section-title h2{
        font-size: 28px;
    }
}


@media(max-width:768px){

    .hero{
        height: auto;
        min-height: 420px;
        padding: 110px 6% 60px;
        margin-top: 0;
    }
    .hero-content{
        max-width: 100%;
    }
    .welcome{
        margin-top: 0;
        font-size: 14px;
        letter-spacing: 3px;
    }
    .hero-content h1{
        font-size: 32px;
        line-height: 1.3;
    }
    .description{
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 25px;
    }
    .hero-buttons{
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }
    .hero-buttons .btn{
        width: 100%;
        text-align: center;
        padding: 14px 20px;
        font-size: 15px;
    }

    .about{
        grid-template-columns: 1fr;
        padding: 60px 6%;
        gap: 30px;
        text-align: left;
    }
    .about-image img{
        height: 220px;
    }
    .about-content h2{
        font-size: 26px;
        margin-bottom: 15px;
    }
    .about-content p{
        font-size: 15px;
        line-height: 1.7;
    }
    .about-content .btn{
        display: inline-block;
        width: auto;
        padding: 12px 25px;
        font-size: 14px;
        white-space: nowrap;
    }

    .section-title h2{
        font-size: 26px;
    }
    .section-title p{
        font-size: 16px;
    }
    .hotel-carousel{
        padding: 60px 5%;
    }
    .carousel{
        height: 220px;
    }
    .slide-text{
        bottom: 30px;
        width: 90%;
    }
    .slide-text h3{
        font-size: 24px;
        margin-bottom: 8px;
    }
    .slide-text p{
        font-size: 14px;
    }

    .card-content .btn{
        width: 100%;
        text-align: center;
        padding: 12px 20px;
    }
}

.footer-brand{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.footer-brand img{
    margin: 0 auto 18px;
}

.footer-box{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.footer-box h3{
    text-align: center;
}
.footer-box a{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: auto;
    margin-bottom: 15px;
}
.footer-box a i{
    margin-right: 0;
}
.footer-box p{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-align: left;
}
.footer-box p i{
    margin-right: 0;
}

@media(max-width:768px){
    .footer-container{
        text-align: center;
    }
}

@media(max-width:400px){
    .hero-content h1{
        font-size: 26px;
    }
    .description{
        font-size: 14px;
    }
    .about-content h2{
        font-size: 22px;
    }
}