body {
    margin: 0;
    padding: 0;
    background-color: #111111;
}

.bloc-accueil {
    background-image: url("Images/photo_chambe.avif"); 
    background-size: cover; 
    background-position: center;
    height: 100vh; 
    position: relative; 
}

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 50px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.logo_onyx {
    width: 180px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.navigation {
    margin-left: auto;
    display: flex;
    gap: 15px; 
}

.bouton-menu {
    border: 1.5px solid white; 
    background-color: transparent;
    color: white;
    padding: 8px 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border-radius: 5px; 
    transition: all 0.3s ease;
}

.bouton-menu:hover {
    background-color: white;
    color: black;
}

.texte-accueil {
    position: absolute;
    bottom: 12%; 
    left: 5%; 
    color: white;
    font-family: Arial, sans-serif; 
}

.texte-accueil h1 {
    font-size: 3.5rem;
    font-weight: 300; 
    margin-bottom: 10px;
}

.texte-accueil p {
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.texte-service {
    color: black;
}

.texte-service p{
    color: black;
}


.bouton-decouvrir {
    background-color: white;
    color: black;
    padding: 12px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
    transition: background-color 0.3s;
}

.bouton-decouvrir:hover {
    background-color: #e0e0e0;
}

.bloc-hotel {
    background-color: #141414;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 10%;
    gap: 60px;
}

.image-accueil {
    flex: 1;
}

.image-accueil img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.bloc-hotel .boite-texte {
    flex: 1;
}

.boite-texte h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.boite-texte p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #cccccc;
}

.bloc-service {
    background-color: #f4f2ee;
    color: #000000;
    display: flex;
    align-items: center;
    padding: 120px 10%;
    gap: 80px;
}

.groupe-images-spa {
    flex: 1;
    position: relative;
    min-height: 350px;
}

.image-spa-1 img {
    width: 60%;
    position: relative;
    z-index: 2;
}

.image-spa-2 img {
    width: 55%;
    position: absolute;
    right: 0;
    top: 100px;
    z-index: 1;
}

.bloc-service .boite-texte {
    flex: 1;
}

.bloc-footer {
    width: 100%;
}

.photo-footer img {
    width: 100%;
    height: auto;
    display: block;
}

.bloc-footer {
    background-color: #0a0a0a;
    color: white;
    padding: 70px 10% 20px 10%;
    border-top: 1px solid #222222;
}

.footer-contenu {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; 
    margin-bottom: 50px;
}

.footer-colonne {
    flex: 1;
    min-width: 200px;
    margin-bottom: 20px;
}

.footer-colonne h3 {
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-weight: 400;
    letter-spacing: 2px; 
    color: #ffffff;
}

.footer-colonne p, 
.footer-colonne a {
    color: #999999;
    font-size: 0.95rem;
    line-height: 1.8;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.footer-colonne a:hover {
    color: #ffffff;
}

.footer-bas {
    text-align: center;
    border-top: 1px solid #222222;
    padding-top: 25px;
}

.footer-bas p {
    color: #666666;
    font-size: 0.85rem;
}