 Styles généraux */
/* Variables CSS pour les couleurs */
:root {
  --couleur-primaire-foncee: #45261d;
  --couleur-accent-marron: #8F543E;
  --couleur-texte-clair: #CE7650;
  --couleur-texte-sombre: #3B260E;
  --couleur-neutre-grise: #AFA099;
}

/* Réinitialisation de base */
body, h1, h2, h3, p, ul, li {
  margin: 0;
  padding: 0;
}

/* Base de la typographie */
.revalia-regular {
  font-family: "Revalia", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.montserrat-regular { /* Remplacer par la classe générée par Google Fonts si différente */
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400; /* Exemple, ajustez selon votre lien Google Fonts */
  font-style: normal;
}
/*site Buhanor*/
body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  background: black;
  color: #d9dcd6; /* Couleur de texte par défaut */
}

.montserrat-<uniquifier> {
  
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
 /* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Animation sur le défilement */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition-property: opacity, transform;
  transition-duration: 1s;
  transition-timing-function: ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
header {
    background-color: #45261d;
    color: white;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    left: 0px;
    right: 0px;
    background-color:black;
    
}

.navbar img{
  width: 100px; /* Taille du logo dans la nav */
  height: auto;
  margin-left: 10px; 
}
/* Liens de navigation */
.nav-links {
    list-style: none;
    margin: 5px 59px;
    padding: 0;
    display: flex; /* Affiche les liens côte à côte par défaut (grands écrans) */
    font-size: 1.2em;
    gap: 15px;
}

.nav-links li {
    margin-bottom: 0;
}
.nav-links a {
     font-family: "Revalia", sans-serif;
    color: white;
    text-decoration: none;
    padding: 5px 0;
    transition: color 0.5s ease;
}

.nav-links a:hover {
    color:  #f20089;
}

li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}
li:before {
    content: "•";
    color: #f20089;
    font-weight: bold;
    position: absolute;
    left: 0;
}
/* Menu Hamburger */
.hamburger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger-menu .bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px 0;
    transition: all 0.3s ease-in-out;
}

.hamburger-menu.open .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger-menu.open .bar:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.open .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ===== Section Hero ===== */
.hero {
    /* Remplacez 'city-background.jpg' par le chemin de votre image */
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8)), url('belle-coucher-soleil-plage-cap-skirring-buhanor.jpg');
    height: 400px;
    background-position: center;
    background-size: cover;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-content {
    max-width: 600px;
    padding: 20px;
}

.hero h1 {
    font-size: 2.5rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

/* Petits points sous le titre */
.dots {
    margin-bottom: 20px;
}

.dots span {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: white;
    margin: 0 4px;
}

.hero p {
    font-size: 1.1rem;
    font-weight: 300;
}
.chambre-wrapper {
    margin: 55px 40px;
    
    padding: 30 20px;
}

.chambress  {
  text-align: center;
  padding: 30px;
  margin-bottom: 20px;
  border-radius: 16px;
   background-color: ;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.chambress h2  {
    font-size: 2.5rem;
    color: #A96668;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.chambress p {
  font-size: 1.5rem;
    font-weight: 300;
  color: #ffafcc;
  text-align: justify;
  padding: 5px 70px;
}

.chambres-wrapper {
    margin: 55px 40px;
    
    padding: 30 20px;
}

.chambres  {
  text-align: center;
  padding: 30px;
  margin-bottom: 20px;
  border-radius: 16px;
   background-color: ;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.chambres h2  {
    font-size: 2.5rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.chambres p {
  font-size: 1.5rem;
    font-weight: 300;
  color: white;
  text-align: justify;
  padding: 5px 70px;
}
.uton{
    background-color: NONE; /* Green */
  border: none;
  color: white;
  padding: 17px 12px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  transition-duration: 0.2s;
  cursor: pointer;

 }

.uton1 {
  background-color:#A96668 ;
  color: white;
   border-radius: 45PX;
  font-family: "Revalia";
  font-size: 24px;
 
}

.uton1 a{
    text-decoration: none;
    color: inherit;
}
.utton{
    background-color: NONE; /* Green */
  border: none;
  color: white;
  padding: 17px 12px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  transition-duration: 0.2s;
  cursor: pointer;

 }

.reach-out-button {
            background-color: #A96668;
            color: #fff;
            padding: 15px 30px;
            border: none;
            border-radius: 5px;
            font-size: 1.1em;
            cursor: pointer;
            text-align: center;
            text-decoration: none;
            display: inline-block;
            transition: background-color 0.3s ease;
            width: fit-content; /* S'adapte au contenu */
            margin-top: 10px;
        }
        .reach-out-button1 {
            background-color: #3a0ca3;
            color: #fff;
            padding: 15px 30px;
            border: none;
            border-radius: 5px;
            font-size: 1.1em;
            cursor: pointer;
            text-align: center;
            text-decoration: none;
            display: inline-block;
            transition: background-color 0.3s ease;
            width: fit-content; /* S'adapte au contenu */
            margin-top: 10px;
        }

        

  /* Styles généraux du footer */
.footer {
    background-color: black; /* Couleur de fond verte foncée */
    color: white;
    font-family: "Revalia"; 
}

/* Section supérieure du footer (localisation, réservations, plateformes) */
.footer-top {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap; /* Permet aux sections de passer à la ligne sur de petits écrans */
    margin-bottom: 0px; /* Espace entre la section du haut et la section du bas (logo/nom) */
}

.footer-section {
    margin-bottom: 20px; /* Espace sous chaque section sur petits écrans */
    text-align: center; /* Alignement du texte à gauche par défaut */
}

.footer-section h3 {
    text-align: center;
    margin-bottom: 10px;
    margin-top: 9px;
    font-size: 1.5em;
}

.footer-section p {
       font-family: "Montserrat";
      font-size: 1.1em;
     color: white;
}
.footersectionblog{
    margin-bottom: 20px; /* Espace sous chaque section sur petits écrans */
    text-align: justify; /* Alignement du texte à gauche par défaut */

}
.footersectionblog h3 {
    text-align: center;
    margin-bottom: 10px;
    font-size: 1.5em;
}

.footersectionblog p {
    text-align: center;
    color: white;
    margin: 0;
} 
.footersectionblog a{
     font-family: "Montserrat";
      font-size: 1.1em;
     color: white;
}

.footer-section a {
    color: inherit;
    text-decoration: none;
}
/* Styles pour les icônes des plateformes */
.platform-icons {
    display: flex;
    align-items: center;
}

.platform-icons img {
    height: 40px; /* Taille des icônes */
    margin-right: 20px; /* Espace entre les icônes */

}
/* Section inférieure du footer (logo) */
.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; /* Permet au logo et au texte de passer à la ligne si nécessaire */
}
.footerr { 
            text-align: center; 
            padding: 2rem; 
            background-color: #020c1b; 
            color: #8892b0; 
        } 

.footer-logo {
    width: 300px;
    height: auto; /* Hauteur du logo, ajustez selon vos besoins */
    margin-right: 15px; /* Espace entre le logo et le texte "BUHANOR" */
}


/* Media queries pour la responsivité (facultatif mais recommandé) */
@media (max-width: 768px) {
    .footer-top {
        flex-direction: column; /* Empile les sections verticalement sur les petits écrans */
        align-items: center; /* Centre les sections empilées */
    }

    .footer-section {
        width: 100%; /* Chaque section prend toute la largeur */
        text-align: center; /* Centre le texte des sections */
    }

    .platform-icons {
        justify-content: center; /* Centre les icônes sur petits écrans */

    }

    .footer-logo {
        margin-right: 0; /* Pas de marge à droite quand empilé */
        margin-bottom: 10px; /* Marge sous le logo quand empilé */
    }
}
/* Media Queries pour les écrans plus petits */

@media (max-width: 1250px) {

    .nav-links{
        margin: 5px 40px;
        font-size: 1.4em;
    }
}


/* Media Queries pour les écrans plus petits */
@media (max-width: 799px) {
     .hero h1 {
       font-size: 1.3rem;
       letter-spacing: 2px;
       margin-bottom: 15px;
       text-align: center;
     }

     .hero p{
        font-size: 1em;
     }
     
      .chambre-wrapper {
    margin: 55px 2px;
    padding: 30 2px;
     }


.chambress h2  {
    font-size: 2.5rem;
    color: #A96668;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.chambress p {
  font-size: 1rem;
    font-weight: 300;
  color: #ffafcc;
  text-align: left;
  padding: 10px 0px;
}

.chambres-wrapper {
    margin: 55px 5px;
    
    padding: 30 5px;
}

.chambres  {
  text-align: center;
  padding: 30px;
  margin-bottom: 20px;
  border-radius: 16px;
   background-color: ;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.chambres h2  {
    font-size: 2.5rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.chambres p {
  font-size: 1rem;
    font-weight: 300;
  color: white;
  text-align: left;
  padding: 5px 5px;
}

}

@media (max-width: 999px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color:black;
        position: absolute;
        top: 70px; /* Ajustez selon la hauteur réelle de .navbar */
        right: 0;
        text-align: center;
        padding: 20px 0;
        font-size: 1.4em;
        z-index: 999;
        transform: translateX(100%);
    }

    .nav-links.active {
        display: flex;
        transform: translateX(0);
    }

    .nav-links li {
        margin: 15px 0;
    }

    .hamburger-menu {
        display: block;
    }

    .brand-logo img {
        width: 120px;
    }
}

@media (max-width: 799px) {
    .nav-links {
        width: 35%;
        margin: 0;
        top: 70px;
        font-size: 1.2em;
    }

    .nav-links.active {
        display: flex;
        padding: 20px 0;
        MARGIN-TOP: -5%;
    }
    li {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .brand-logo img {
        width: 100px;
    }
}

