/* 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;
}

body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  background: #f8edeb;
  color: #3B260E; /* Couleur de texte par défaut */
  overflow-x: hidden;
}

.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 {
   
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
    fill: #fff;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}


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

.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:#CE7650;
}

li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}
li:before {
    content: "•";
    color:  #CE7650;
    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);
}
.video-container {
    position: relative;
    width: 100%;
    /* Ajoutez d'autres propriétés de mise en page si nécessaire */
}

.video-poster {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Assure que l'image couvre l'espace sans déformation */
    z-index: 2; /* L'image est au-dessus de la vidéo */
    transition: opacity 0.5s ease-in-out; /* Ajoute une transition pour une disparition en douceur */
}

.video-poster.hidden {
    opacity: 0;
}

#responsiveVideo {
    width: 100%;
    height: auto;
}

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

.logo-wrapper {
    padding: 0 40px;
}


.LOGO-texte h1 {
    font-family: "Montserrat";
    font-size: 2.9em;
    text-align: left;
    color:  #CE7650;
}
.LOGO-texte h2 {
    font-size: 2em;
    text-align: left;
    color: #8F543E;
}


.LOGO-texte h3 {
    color: #9F553E;
    font-size: 1.3em;
}

.LOGO-texte p {
    font-size: 1.2em;
    margin-left: 5%;
    margin-right: 5%;
    color: #45261d;
}

.logo{
    width: 15%;
    margin-top: -4%;
    margin-bottom: -5%;
    left: 0;
}

.reach-out-button {
            background-color: #f8edeb;
            color: #45261d;
            padding: 15px 30px;
            border: none;
            border-radius: 5px;
            font-size: 1.1em;
            cursor: pointer;
            text-align: center;
            text-decoration: none;
            display: inline-block;
             box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            width: fit-content; /* S'adapte au contenu */
            margin-top: 10px;
        }
        .reach-out-button1 {
            background-color: #45261d;
            color: white;
            padding: 15px 30px;
            border: none;
            border-radius: 5px;
            font-size: 1.1em;
            cursor: pointer;
            text-align: center;
            text-decoration: none;
            display: inline-block;
             box-shadow: 0 4px 8px rgba(0, 0, 0, 0.7);
            width: fit-content; /* S'adapte au contenu */
            margin-top: 10px;
        }


.BU{
  padding: 30px 20px;
  background-color: #8F543E; /* Couleur de fond pour la section contact */
  margin: 30px auto;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  color: white; /* Texte blanc sur fond marron */
  text-align: center;
}

.BU h3{
    font-size: 2em;
  color: #45261d;
  font-family:  "Montserrat";
}

.BU P{
    font-size: 1em;
    text-align: justify;
    margin-left: auto;
    margin-right: auto;
    margin: 0 39px;
    padding: 0 95px;
}

.BU1 { /* Logo principal dans la section d'accueil */
  width: 10%;
  min-width: 100px; /* Taille minimale pour ne pas disparaître */
  max-width: 200px; /* Taille maximale */
  margin: -10px;
}

/* ESPACE PROMOTIONS */
/* ESPACE PROMOTIONS -  */
        #promotions {
            padding: 40px 0;
            text-align: center;
            background: #f9f6f4;
            position: relative;
            width: 100%;
            overflow: hidden; /*  : empêche le débordement */
        }
        
        #promotions h2 {
            color: var(--couleur-primaire-foncee);
            margin-bottom: 35px;
            font-size: 28px;
            font-weight: 600;
            position: relative;
            display: inline-block;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-align: center;
        }
        
        #promotions h2:after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 70px;
            height: 3px;
            background: var(--couleur-texte-clair);

        }
        
        /* CONTENEUR PRINCIPAL -  IMPORTANTE */
        .promo-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
            text-align: center;
            overflow: hidden; /*  : empêche le débordement du conteneur */
        }
        
        /* SWIPER   */
        .swiper-container {
            width: 100%;
            padding: 20px 0 50px;
            position: relative;
            overflow: hidden; /*  : cache tout contenu qui dépasse */
            margin: 0; /*  : supprime les marges par défaut */
        }
        
        .swiper-wrapper {
            padding: 15px 0;
            width: 100%; /*  : force la largeur à 100% */
        }
        
        .swiper-slide {
            background: white;
            border-radius: 6px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            transition: all 0.2s ease;
            display: flex;
            flex-direction: column;
            height: auto;
            border: 1px solid #e8e1dc;
            max-width: 100%; /*  : empêche le débordement des slides */
        }
        
        .swiper-slide:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.12);
        }
        
        .promo-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--couleur-texte-clair);
            color: white;
            padding: 6px 12px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 600;
            z-index: 10;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .swiper-slide img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .swiper-slide:hover img {
            transform: scale(1.03);
        }
        
        .slide-content {
            padding: 20px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }
        
        .swiper-slide h3 {
            color: var(--couleur-primaire-foncee);
            margin: 0 0 12px;
            font-size: 18px;
            font-weight: 600;
            text-align: justify;
        }
        
        .swiper-slide p {
            color: var(--couleur-texte-sombre);
            line-height: 1.5;
            margin-bottom: 20px;
            flex-grow: 1;
            font-size: 14px;
        }
        
        .swiper-slide .btn {
            display: inline-block;
            background: var(--couleur-accent-marron);
            color: white;
            padding: 10px 22px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.2s ease;
            text-transform: uppercase;
            font-size: 13px;
            letter-spacing: 0.5px;
            border: none;
            cursor: pointer;
        }
        
        .swiper-slide .btn:hover {
            background: var(--couleur-primaire-foncee);
            transform: translateY(-2px);
        }
        
        .swiper-button-next, .swiper-button-prev {
            color: var(--couleur-accent-marron);
            background: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            box-shadow: 0 3px 10px rgba(0,0,0,0.15);
            transition: all 0.2s ease;
            margin-top: 0; /*  : repositionnement des boutons */
        }
        
        .swiper-button-next:after, .swiper-button-prev:after {
            font-size: 18px;
            font-weight: bold;
        }
        
        .swiper-button-next:hover, .swiper-button-prev:hover {
            background: var(--couleur-accent-marron);
            color: white;
        }
        
        /*  : positionnement des boutons de navigation */
        .swiper-button-next {
            right: 10px;
        }
        
        .swiper-button-prev {
            left: 10px;
        }
        
        .swiper-pagination-bullet {
            width: 10px;
            height: 10px;
            background: var(--couleur-primaire-foncee);
            opacity: 1;
            text-align: center;
        }
        
        .swiper-pagination-bullet-active {
            background: var(--couleur-primaire-foncee);
        }
        
        @media (max-width: 768px) {
            #promotions {
                padding: 30px 0;
            }
            
            #promotions h2 {
                font-size: 24px;
            }
            
            .swiper-slide img {
                height: 180px;
            }
            
            .swiper-button-next, .swiper-button-prev {
                display: none;
            }
            
            /*  : espacement mobile */
            .promo-container {
                padding: 0 10px;
                 width: auto;
                 text-align: center;
            }
        }
        
        @media (max-width: 576px) {
            #promotions h2 {
                font-size: 22px;
            }
            
            .swiper-slide h3 {
                font-size: 17px;
            }
            
            .swiper-container {
                padding: 20px 0 50px;
            }
            
            /*  : padding réduit sur très petits écrans */
            .slide-content {
                padding: 15px;
            }
        }

/* Styles des sections Chambres et Services (généralisation) */
.chambre-wrapper, .bar-wrapper{
    margin: 30px auto;
    max-width: 1000px;
    padding: 0 20px;
}

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

.chambres h2, .bare h2 {
  font-size: 2.5em;
  color: #CE7650;
  margin-bottom: 15px;
}

.chambres h3, .bare h3 {
  font-size: 1.5em;
  color: #45261d;
  margin-bottom: 15px;
}


.chambres p, .bare p , {
  font-size: 3.5em;
  color: #3B260E;
  padding:  20px 30px;
  text-align: justify;
  margin-left: auto;
  margin-right: auto;
  max-width: 800px;
}

.chambres img{
    width: 285px;
    height: 190px;
    border-radius: 5px;
    filter: saturate(200%);

    margin-top: 20px;
    object-fit: cover;
}
.bare img{
     width: 283px;
    height: 190px;
    border-radius: 5px;
    filter: saturate(200%);
    
    margin-top: 20px;
    object-fit: cover;
}

/* Logo Buhanor entre sections */
.Blogo {
  width: 5%;
  min-width: 80px;
  max-width: 150px;
  display: block; /* Pour centrer avec margin: auto */
  margin:  auto;
  text-align: center;
}

/* Styles de la section Contact */
.Contact {
  padding: 30px 20px;
  background-color: #8F543E; /* Couleur de fond pour la section contact */
  border-radius: 35px;
  margin: 30px auto;
  max-width: 850px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  color: white; /* Texte blanc sur fond marron */
  text-align: center;
}

.CON h2 {
  font-size: 2em;
  color: white; /* ou une couleur claire cohérente */
  margin-bottom: 10px;
}

.CON h4 {
  font-size: 1.3em;
  color: white;
  margin-top: 10px;
  margin-bottom: 15px;
}

.CON p {
  color: white;
  text-align: center;
  margin: 0 auto 20px;
  font-size: 1.1em;
  max-width: 700px;
}

.contact-images {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 50px;
  margin-top: 20px;
}


   .CON2, .CON3 {
    width: calc(20% - 5px); /* Deux images par ligne */
}

.CON3{
    max-width: 75%; /* Limite la taille max */
    min-width: 35%;
  height: 20%;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.9);
}

.CON2{
    max-width: 50%; /* Limite la taille max */
  height: 10%;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.9);
} 

      .reviews-section {
            padding: 60px 20px;
            text-align: center;
        }

        .reviews-section h2 {
            font-size: 2.5em;
            color: var(--couleur-primaire-foncee);
            margin-bottom: 10px;
            font-weight: 700;
        }

        .reviews-section .subtitle {
            font-size: 1.2em;
            color: var(--couleur-texte-clair);
            margin-bottom: 50px;
        }

        .reviews-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .review-card-new {
            background-color: #fff;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            padding: 30px;
            flex: 1 1 300px;
            max-width: 350px;
            display: flex;
            flex-direction: column;
            text-align: left;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .review-card-new:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }

        .review-card-new .rating {
            margin-bottom: 15px;
        }

        .review-card-new .star-icon {
            color: #FFC107; /* Couleur or pour les étoiles */
            display: inline-block;
            font-size: 1.5em;
            margin-right: 2px;
        }

        .review-card-new blockquote {
            margin: 0;
            padding: 0;
            font-size: 1.1em;
            color: var(--couleur-texte-sombre);
            line-height: 1.6;
            font-style: italic;
            position: relative;
            flex-grow: 1;
        }
        
        .review-card-new blockquote::before {
            content: '“';
            font-size: 4em;
            color: var(--couleur-accent-marron);
            position: absolute;
            top: -20px;
            left: -15px;
            line-height: 1;
        }

        .review-card-new .author {
            display: flex;
            align-items: center;
            margin-top: 25px;
        }

        .review-card-new .author img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--couleur-primaire-foncee);
            margin-right: 15px;
        }

        .review-card-new .author-info strong {
            display: block;
            font-size: 1em;
            color: var(--couleur-primaire-foncee);
            font-weight: 600;
        }

        .review-card-new .author-info span {
            font-size: 0.9em;
            color: var(--couleur-texte-clair);
        }
/* GALERIE DIMAGE */ 

.BU2{
  padding: 30px 20px;
  background-color: #45261d; /* Couleur de fond pour la section contact */
  margin: 0px auto;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  color: white; /* Texte blanc sur fond marron */
  text-align: center;
}
.BU2 h2{
    font-size: 2.5em;
    font-family: "Revalia" ;
}
.BU2 p{
    font-size: 1.1em;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 15px;
    max-width: 1200px;
    margin: 9px auto;
    padding: 20px;
    background-color: #45261d;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.9);
}

.gallery-item {
    cursor: pointer;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.5);
    transition: transform 0.2s ease-in-out;
}

.gallery-item:hover {
    transform: scale(1.1);
}

.gallery-item img {
    width: 100%;
    height: 200px; /* Hauteur fixe pour les vignettes */
    object-fit: cover; /* Assure que l'image couvre l'espace sans être déformée */
    display: block;
}

/* Styles pour la Lightbox */
.lightbox {
    display: none; /* Caché par défaut */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9); /* Fond semi-transparent noir */
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    object-fit: contain; /* L'image s'adapte sans être coupée */
}

.close-btn, .prev-btn, .next-btn {
    position: absolute;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.close-btn {
    top: 15px;
    right: 35px;
}

.close-btn:hover,
.close-btn:focus,
.prev-btn:hover,
.next-btn:hover {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

.prev-btn {
    top: 50%;
    left: 30px;
    transform: translateY(-50%);
}

.next-btn {
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
}


  
/* ========== NOUVELLE SECTION BLOG HAUT DE GAMME ========== */
.blog-preview-section {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    padding: 80px 20px;
    overflow: hidden; /* Empêche les décorations de créer des barres de défilement */
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.section-header h2 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    background: linear-gradient(135deg, #CE7650, #8F543E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent; /* Fallback pour les anciens navigateurs */
    margin-bottom: 20px;
    letter-spacing: -2px;
    animation: fadeInDown 0.8s ease-out;
}

.section-header .subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: #8F543E;
    font-weight: 300;
    letter-spacing: 0.5px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.blog-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.blog-card {
    position: relative;
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    text-decoration: none;
    color: #45261d;
    border: 2px solid rgba(206, 118, 80, 0.1);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    animation: fadeInScale 0.6s ease-out both;
    box-shadow: 0 4px 20px rgba(69, 38, 29, 0.08);
}

.blog-card:nth-child(1) { animation-delay: 0.1s; }
.blog-card:nth-child(2) { animation-delay: 0.2s; }
.blog-card:nth-child(3) { animation-delay: 0.3s; }

.blog-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, #CE7650, #8F543E);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: xor;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.blog-card:hover::before {
    opacity: 1;
}

.blog-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(69, 38, 29, 0.15),
                0 0 60px rgba(206, 118, 80, 0.1);
}

.image-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #fdf3f1;
}

.blog-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.blog-card:hover img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(248, 237, 235, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.blog-card:hover .image-overlay {
    opacity: 1;
}

.blog-card-content {
    padding: 32px;
    position: relative;
    z-index: 2;
    background: #ffffff;
}

.blog-card-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
    letter-spacing: -0.5px;
    color: #45261d;
    transition: all 0.3s ease;
}

.blog-card:hover h4 {
    background: linear-gradient(135deg, #CE7650, #8F543E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-card-content p {
    color: #8F543E;
    line-height: 1.7;
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #CE7650;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: gap 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.blog-card:hover .read-more {
    gap: 16px;
}

.read-more::after {
    content: '→';
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.blog-card:hover .read-more::after {
    transform: translateX(4px);
}

.cta-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.cta-wrapper .reach-out-button1 {
    position: relative;
    padding: 20px 60px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #CE7650, #8F543E);
    border: none;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 8px 30px rgba(206, 118, 80, 0.25);
    letter-spacing: 0.5px;
}
.cta-wrapper .reach-out-button1 span {
    position: relative;
    z-index: 1;
}

.cta-wrapper .reach-out-button1:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 50px rgba(206, 118, 80, 0.4);
}
.cta-wrapper .reach-out-button1:active {
    transform: translateY(-2px) scale(1.02);
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@media (max-width: 1200px) {
    .blog-preview-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .blog-preview-section {
        padding: 40px 16px;
    }
    .section-header {
        margin-bottom: 50px;
    }
    .blog-preview-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .image-wrapper {
        height: 220px;
    }
    .blog-card-content {
        padding: 24px;
    }
    .cta-wrapper .reach-out-button1 {
        padding: 18px 40px;
        font-size: 1rem;
        width: 100%;
        max-width: 320px;
    }
}
  /* Styles généraux du footer */
.footer {
    background-color: white; /* Couleur de fond verte foncée */
    color: #45261d;
    font-family: "Revalia"; 
}
.footerr { 
            text-align: center; 
            padding: 2rem; 
            background-color: #020c1b; 
            color: #8892b0; 
        } 

/* 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: #555;
}
.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: #CE7650;
}

.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 */
}

.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 (max-width: 999px) {

    .nav-links {
        display: none; /* Masque les liens par défaut sur les petits écrans */
        flex-direction: column;
        width: 25%;
        background-color:  #45261d; /* Couleur de fond pour le menu ouvert */
        position: absolute;
        top: 50px; /* Ajuster en fonction de la hauteur de votre header */
        right: 0;
        text-align: center;
        padding: 14px 0px;
        font-size: 1.4em;
        margin: 0px 0px;
        z-index: 999;
    }
    .navbar img{
         max-width: 150px; /* Taille du logo dans la nav */
        height: auto;
    }
    .nav-links.active {
        display: flex; /* Affiche les liens quand le menu est actif */
    }
    .nav-links li {
        margin: 10px 0;
    }
    .hamburger-menu {
        display: block; /* Affiche le menu hamburger sur les petits écrans */
    }
    .E-CH P{
        padding: 0 2px;
    }
    .E-CH h1{
        font-size: 2.2em;
    }
    
}


@media (max-width: 799px) {
     .nav-links {
        display: none; /* Masque les liens par défaut sur les petits écrans */
        flex-direction: column;
        width: 25%;
        background-color:  #45261d; /* Couleur de fond pour le menu ouvert */
        position: absolute;
        top: 50px; /* Ajuster en fonction de la hauteur de votre header */
        right: 0;
        text-align: center;
        padding: 14px 0px;
        font-size: 1.2em;
        margin: 0px 0px;
        z-index: 999;
    }

    .navbar img{
         max-width: 150px; /* Taille du logo dans la nav */
        height: auto;
  
    }

    .nav-links.active {
        display: flex; /* Affiche les liens quand le menu est actif */
        padding: 0 13px;
    }

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

    .hamburger-menu {
        display: block; /* Affiche le menu hamburger sur les petits écrans */
    }

.LOGO-texte h1 {
    font-size: 2.8em;
  }
  .LOGO-texte h3 {
    font-size: 1em;
  }
  .LOGO-texte p {
    font-size: 1em;
  }

  .logo {
    width: 25%;
  }

  .button1{
    font-size: 25px;
  }
  .logo-wrapper {
    padding: 0 5px;
}

  .chambres img, .bare img {
    width: 49%; /* Une seule image par ligne sur mobile */
    height: ;
  }

  .bare img {
    width: 43%; /* Une seule image par ligne sur mobile */
    height: ;
  }

  .chambres h1, .bare h2 {
    font-size: 2em;
  }

  .chambres h3, .bare h3 {
    font-size: 1.3em;
  }

  .chambres p, .bare p , .BU P{
    font-size: 1em;
    padding: 2px;
  }

  .Blogo {
    width: 15%;
  }

  .CON h2 {
    font-size: 1.3em;
  }
  .CON h4 {
    font-size: 1em;
  }
  .CON p {
    font-size: 1em;
  }

  .CON2 {
    width: 25%; /* Une seule image par ligne */
    height: 5%;
  } 

  .CON3 {
    WIDTH: 48%;
    height: 20%;
  }
  
  .gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
   }
   .BU h3{
     font-size: 1.4em;
   }
   
 
}

@media (max-width:390px ) {
    .LOGO-texte h1{
        font-size: 1.9rem;
    }
     .LOGO-texte h2{
        font-size: 1.4rem;
    }
    .BU P {
        padding: 1px 3px;
        margin: 1px 3px;
        text-align: left;
    }
    .gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(95px, 1fr));
   }
   .nav-links{
    font-size: 1em;
   }
   .review-card {
    padding: 15px;
   }
}
@media (max-width: 999px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color:  #45261d;
        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;
    }
}
/* ========== STYLES POUR LE SLIDER D'AVIS ========== */
.reviews-swiper {
    padding-bottom: 60px; /* Espace pour les points de navigation */
}

.reviews-swiper .swiper-slide {
    height: auto; /* Permet aux cartes d'avoir une hauteur flexible */
    display: flex;
}

.reviews-swiper .swiper-pagination-bullet {
    background: var(--couleur-neutre-grise);
    width: 10px;
    height: 10px;
    opacity: 0.8;
}

.reviews-swiper .swiper-pagination-bullet-active {
    background: var(--couleur-accent-marron);
    width: 12px;
    height: 12px;
}
