.hero-apropos{
    height: 50vh;
    background: url("../images/hotel.jpg");
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 70px;
}
.hero-overlay{
    background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.45));
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    animation: fadeIn 1.3s ease;
}
@keyframes fadeIn{
    from{
        opacity: 0;
        transform: translateY(-40px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}
.hero-overlay h1{
    font-size: 55px;
    font-weight: bold;
    margin-top: 50px;
}
.hero-overlay h1::after{
    content: "";
    display: block;
    width: 200px;
    height: 4px;
    background: #d4af37;
    margin: 18px auto 0;
    border-radius: 5px;
}
.hero-overlay p{
    font-size: 22px;
    max-width: 700px;
    margin-top: 20px;
}
.notre-histoire{
    display: flex;
    align-items: center;
    gap: 70px;
    padding: 100px 8%;
    background: #fff;
}
.histoire-image{
    flex: 1;
    display: block;
    border-radius: 10px;
    animation: slideLeft 1s ease;  
}
.histoire-image img{
    width: 100%;
    height: 850px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.18);
    transition: 0.5s ease;
}
.histoire-image img:hover{
    transform: scale(1.1);
}
@keyframes slideLeft{
    from{
        opacity: 0;
        transform: translateX(-60px);
    }
    to{
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes slideRight{
    from{
        opacity: 0;
        transform: translateX(60px);
    }
    to{
        opacity: 1;
        transform: translateX(0);
    }
}
.histoire-content{
    flex: 1;
    animation: slideRight 1s ease;
}
.histoire-content span{
    color: #c9a227;
    font-size: 15px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: bold;
}
.histoire-content h2{
    font-size: 50px;
    color:#c9a227;
    margin: 20px 0 35px;
    font-family: Georgia, serif;
}
.histoire-content p{
    color: black;
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 20px;
    text-align: justify;
}
.histoire-content strong{
    color: #c9a227;
}
.histoire-content blockquote{
    margin: 35px 0;
    padding: 25px 30px;
    background: #f8f3e7;
    border-left: 5px solid #c9a227;
    color: black;
    font-size: 18px;
    font-style: italic;
    line-height: 1.7;
}
.histoire-chiffres{
    display: flex;
    justify-content: space-between;
    margin-top: 45px;
    gap: 25px;
}
.histoire-chiffres div{
    text-align: center;
}
.histoire-chiffres h3{
    color: #c9a227;
    font-size: 32px;
    font-family: Georgia, serif;
    margin-bottom: 8px;
}
.histoire-chiffres span{
    color: black;
    font-size: 14px;
}
.nos-valeurs{
    padding: 100px 8%;
    background: #f8f8f8;
}
.section-title{
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}
.section-title span{
    color: #c9a227;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    font-size: 25px;
}
.section-title h2{
    font-size: 48px;
    color: #111;
    margin: 15px 0;
    font-family: Georgia, serif;
}
.section-title p{
    color: black;
    line-height: 1.8;
}
.valeurs-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
}
.valeur-card{
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: 0.4s;
}
.valeur-card:hover{
    transform: translateY(-10px);
}
.valeur-card i{
    font-size: 45px;
    color: #c9a227;
    margin-bottom: 20px;
}
.valeur-card h3{
    color: #111;
    margin-bottom: 15px;
}
.valeur-card p{
    color: black;
    line-height: 1.8;
}
.galerie-premium{
    padding: 100px 8%;
    background: #f8f8f8;
}
.galerie-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap:25px;
    margin-top: 50px;
}
.galerie-item{
   position: relative;
   overflow: hidden;
   border-radius: 18px; 
}
.galerie-item img{
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: 0.6s;
}
.galerie-item:hover img{
    transform: scale(1.1);
}
.overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 25px;
    opacity: 0;
    transition: 0.4s;
}
.galerie-item:hover .overlay{
    opacity: 1;
}
.overlay h3{
    color: #c9a227;
    font-size: 22px;
    margin: 0;
}
.cta-hotel{
    background: url("../images/chambres/suite1.jpg") center/cover no-repeat;
    padding: 120px 8%;
    position: relative;
    text-align: center;
}
.cta-overlay{
    background: rgba(0,0,0,0.4);
    padding: 80px 40px;
    border-radius: 10px;
    color: #fff;
}
.cta-overlay span{
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
}
.cta-overlay h2{
    font-size: 50px;
    margin: 20px 0;
    font-family: Georgia, serif;
    line-height: 1.3;
}
.cta-overlay p{
    max-width: 750px;
    margin: 0 auto 40px;
    line-height: 1.9;
    color: #eee;
}
.cta-buttons{
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.btn-reserver, .btn-contact{
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.4s;
}
.btn-reserver{
    background: #d4af37;
    color: #fff;
}
.btn-contact{
    border: 2px solid #fff;
    color: #fff;
}
.btn-reserver:hover{
    background: #fff;
    color: #111;
}


/* @media(max-width:900px){
    .notre-histoire{
        flex-direction: column;
        padding: 60px 5%;
    }
    .histoire-image img{
        height: 400px;
    }
    .histoire-content h2{
        font-size: 38px;
    }
    .histoire-chiffres{
        flex-direction: column;
        gap: 30px;
    }
} */

@media (max-width: 1024px) {
    .histoire-image img{
        height: 600px;
    }
    .hero-overlay h1{
        font-size: 44px;
    }
    .histoire-content h2{
        font-size: 40px;
    }
    .cta-overlay h2{
        font-size: 40px;
    }
}

@media (max-width: 900px) {
    .notre-histoire{
        flex-direction: column;
        gap: 45px;
        padding: 70px 6%;
    }
    .histoire-image img{
        height: 400px;
    }
    .histoire-chiffres{
        flex-wrap: wrap;
        gap: 20px;
    }
    .histoire-chiffres div{
        flex: 1 1 40%;
    }
}

@media (max-width: 768px) {
    .hero-apropos{
        height: 40vh;
        margin-top: 60px;
    }
    .hero-overlay h1{
        font-size: 34px;
    }
    .hero-overlay h1::after{
        width: 140px;
    }
    .hero-overlay p{
        font-size: 17px;
        padding: 0 15px;
    }
    .nos-valeurs, .galerie-premium{
        padding: 70px 6%;
    }
    .section-title h2{
        font-size: 34px;
    }
    .section-title span{
        font-size: 18px;
    }
    .valeurs-grid{
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 20px;
    }
    .valeur-card{
        padding: 30px 20px;
    }
    .galerie-grid{
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 15px;
    }
    .galerie-item img{
        height: 220px;
    }
    .cta-hotel{
        padding: 80px 6%;
    }
    .cta-overlay{
        padding: 50px 25px;
    }
    .cta-overlay h2{
        font-size: 30px;
    }
    .cta-overlay p{
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .hero-overlay h1{
        font-size: 26px;
    }
    .hero-overlay p{
        font-size: 15px;
    }
    .histoire-content h2{
        font-size: 28px;
    }
    .histoire-content blockquote{
        padding: 18px 20px;
        font-size: 15px;
    }
    .histoire-chiffres div{
        flex: 1 1 100%;
    }
    .histoire-chiffres h3{
        font-size: 26px;
    }
    .histoire-image img{
        height: 260px;
    }
    .valeurs-grid{
        grid-template-columns: 1fr;
    }
    .galerie-grid{
        grid-template-columns: 1fr;
    }
    .galerie-item img{
        height: 240px;
    }
    .cta-overlay h2{
        font-size: 24px;
    }
    .cta-buttons{
        flex-direction: column;
        align-items: stretch;
    }
    .btn-reserver, .btn-contact{
        text-align: center;
    }
}