  /* Airbnb : priorité maximale */
.airbnb-event {
  z-index: 3;
  font-weight: 600;
}

/* Booking : priorité intermédiaire */
.booking-event {
  z-index: 2;
  opacity: 0.85;
  font-size: 0.85em;
}

/* Abritel : priorité faible */
.abritel-event {
  z-index: 1;
  opacity: 0.7;
  font-size: 0.8em;
}
.hero h1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  line-height: 1.2;
}

.hero .brand {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
}

.hero .baseline {
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 400;
}

  
    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      margin: 0;
      color: #1f2937;
    }

    header {
      background: linear-gradient(to bottom, rgba(0,0,0,.35), rgba(0,0,0,.65)),
      url('../hero.jpeg') center/cover no-repeat;
      color: white;
      padding: 6rem 1.5rem;
      text-align: center;
      position: relative;
    }
.hero h1 {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero h1 span {
  display: block;
}


    header h1 {
      font-size: clamp(1.8rem, 5vw, 2.6rem);
      margin-bottom: .5rem;
    }

    header p {
      font-size: clamp(1rem, 3vw, 1.2rem);
      max-width: 720px;
      margin: 0 auto 1.5rem;
    }

    .cta {
      background: #16a34a;
      color: white;
      padding: 1rem 2rem;
      text-decoration: none;
      border-radius: .5rem;
      font-weight: 600;
      display: inline-block;
      transition: all .3s ease;
    }

    .cta:hover {
      background: #15803d;
      transform: translateY(-2px);
      box-shadow: 0 10px 25px rgba(22,163,74,.3);
    }

    .lang-switch {
      position: absolute;
      top: 1rem;
      right: 1rem;
      display: flex;
      gap: .5rem;
    }

    .lang-switch span {
      cursor: pointer;
      font-size: 1.3rem;
      opacity: .6;
    }

    .lang-switch span.active { opacity: 1; }

    section {
      padding: 3rem 1.5rem;
      max-width: 1100px;
      margin: auto;
    }

    h2 {
      font-size: 1.8rem;
      margin-bottom: 1rem;
    }

    .grid {
      display: grid;
      gap: 2rem;
    }

    @media(min-width:768px){
      .grid-2{grid-template-columns:1fr 1fr;}
      .grid-3{grid-template-columns:repeat(3,1fr);}
    }
.feature-card{
  background: var(--snow);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.05);
}

.feature-card:hover{
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.feature-icon{
width:36px;
height:36px;
margin-bottom:1rem;
color:var(--pine);
opacity:0.85;
}
.feature-card h3{
display:flex;
align-items:center;
gap:.75rem;
}

    ul { padding-left: 1.2rem; }

.badge{
display:inline-flex;
align-items:center;
gap:.6rem;
background:#c9a961;

color:#1e3d2f;                 /* texte vert foncé */

padding:.75rem 1.5rem;
border-radius:999px;

font-weight:600;
font-size:.95rem;

box-shadow:0 6px 18px rgba(201,169,97,0.35);

border:none;
}


    .gallery {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(150px,1fr));
      gap: 1rem;
    }

    .gallery img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: .75rem;
      cursor: zoom-in;
      transition: transform .3s ease;
    }

    .gallery img:hover { transform: scale(1.05); }

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.95);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  opacity: 0;                 /* ← AJOUT */
  transition: opacity 0.3s ease;  /* ← AJOUT */
}

.lightbox.active {
  opacity: 1;
}


.lightbox img {
  max-width: 95%;
  max-height: 90%;
  border-radius: 12px;
  transition: opacity 0.3s ease;
}

.lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}

.lightbox .nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 50px;
  color: white;
  cursor: pointer;
  padding: 20px;
}

.lightbox .prev { left: 10px; }
.lightbox .next { right: 10px; }

@media (max-width: 768px) {
  .lightbox .nav {
    font-size: 35px;
  }
}

    footer {
      background:#111827;
      color:#9ca3af;
      padding:2rem 1.5rem;
      text-align:center;
      font-size:.9rem;
    }
	.site-footer{
  background:#1e3d2f;
  color:#d9d9d9;
  text-align:center;
  padding:3rem 1.5rem;
}

.footer-brand{
  font-size:1rem;
  margin-bottom:1.5rem;
  opacity:0.9;
}

.footer-links{
  display:flex;
  justify-content:center;
  gap:2rem;
  flex-wrap:wrap;
  margin-bottom:2rem;
}

.footer-links a{
  color:#c9a961;
  text-decoration:none;
  font-weight:500;
  transition:opacity .2s ease;
}

.footer-links a:hover{
  opacity:0.8;
}

.footer-trust{
  display:flex;
  justify-content:center;
  gap:1.5rem;
  flex-wrap:wrap;
  font-size:0.9rem;
  opacity:0.85;
  border-top:1px solid rgba(255,255,255,0.1);
  padding-top:1.5rem;
}

	/* Équipements détaillés – pictos SVG noir & blanc */
.equip-details details {
  background: #f9fafb;
  padding: 1.5rem;
  border-radius: .75rem;
}

.equip-details summary {
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 1rem;
}

.equip-list {
  list-style: none;
  padding-left: 0;
}

.equip-item {
  display: flex;
  gap: .6rem;
  align-items: flex-start;
  margin-bottom: .5rem;
}

.equip-item svg {
  width: 18px;
  height: 18px;
  stroke: #111;
  fill: none;
  stroke-width: 1.8;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Sections escamotables */
/* ===== PREMIUM ACCORDION (SAFE) ===== */

.collapsible-section{
max-width:1100px;
margin:3rem auto;
}

.collapsible-header{
display:flex;
justify-content:space-between;
align-items:center;
cursor:pointer;

background:white;
padding:2rem 2.5rem;

border-radius:22px;
box-shadow:0 8px 25px rgba(0,0,0,.06);

transition:all .25s ease;

font-family:'Playfair Display',serif;
font-size:clamp(2rem,3vw,2.6rem);
color:var(--pine);
}

.collapsible-header:hover{
transform:translateY(-3px);
box-shadow:0 14px 35px rgba(0,0,0,.12);
}

.collapsible-header h2{
margin:0;
font-size:inherit;
font-weight:600;
}

.arrow{
color:var(--gold);
font-size:1.6rem;
transition:transform .3s ease;
}

.arrow.rotate{
transform:rotate(90deg);
}

/* Contenu */

.collapsible-content{
max-height:0;
overflow:hidden;
transition:max-height .5s ease, padding .3s ease;
}

.collapsible-content.open{
max-height:10000px;   /* valeur volontairement large */
}


.collapsible-content.open{
background:white;
border-radius:0 0 22px 22px;
box-shadow:0 15px 40px rgba(0,0,0,.08);

padding:2rem;
}



.arrow {
  transition: transform 0.3s ease;
  font-size: 20px;
}

.arrow.rotate {
  transform: rotate(90deg);
}


.legend {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.6rem 1.2rem;
  margin: 1rem 0 0.8rem;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  white-space: nowrap;
}


.box {
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  margin-right: 6px;
}

.low { background:#4ade80; }
.summer { background:#facc15; }
.mid { background:#fb923c; }
.high { background:#ef4444; }
.zone1 { background:#3b82f6; }
.zone2 { background:#7c3aed; }

.pricing-note {
  margin: 1rem 0 1.5rem;
  font-size: 0.95rem;
  opacity: 0.8;
  line-height: 1.4;
}

  
  .tarif-calendar {
  margin-top: 1.5rem;
}

.tarif-month {
  margin-bottom: 2rem;
}

.tarif-month h3 {
  margin-bottom: 0.6rem;
  font-size: 1.1rem;
}

.tarif-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}



.hors { background:#48c774; }
.ete { background:#f1c40f; }
.hiver-moyenne { background:#e67e22; }
.forte { background:#e74c3c; }
.vacances1 { background:#3b82f6; }
.vacances2 { background:#7c3aed; }

.year-header {
  font-weight: 600;
  cursor: pointer;
  margin: 20px 0 10px;
}

.year-content {
  display: none;
  margin-bottom: 30px;
}

.month-row {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.month-name {
  width: 120px;
  font-weight: 500;
}

.weeks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}


@media (max-width: 600px) {
  .month-section {
    margin-bottom: 10px;
  }

  .month-title {
    margin-bottom: 4px;
  }
}

@media (max-width: 600px) {

  .pricing-month {
    grid-template-columns: 70px 1fr;
    margin-bottom: 8px;
  }

  .month-name {
    font-size: 0.8rem;
  }

  .pricing-weeks {
    gap: 3px;
  }

  .week-box {
    font-size: 0.65rem;
    padding: 3px 0;
    border-radius: 4px;
  }
}

.month-section {
  line-height: 1.2;
}

  .month-title {
    font-size: 0.95rem;
    margin-bottom: 6px;
  }

.month-section {
  display: grid;
  grid-template-columns: 60px 1fr;
  align-items: center;
  gap: 6px;
  margin-bottom: 2px; /* interligne réduit */
}



.month-label {
  font-size: 0.9rem;
  font-weight: 600;
}

.pricing-weeks {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* 5 semaines */
  gap: 4px;
}

.week-box {
  padding: 4px 0;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  text-align: center;
  color: white;
  cursor: pointer;
}

.pricing-month {
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: center;
  margin-bottom: 18px;
}

.fc-day-sat .daily-price {
  font-weight: 700;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .daily-price {
    font-size: 0.85rem !important;
  }
}

.fc-day-sat {
  background-color: rgba(0,0,0,0.02);
}

.daily-price {
  font-size: 11px;
  opacity: 0.75;
}

.weekly-price {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 2px;
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  margin-top: 2rem;
}

.video-item h3 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .video-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
/* Dates bloquées avec rayures */
.fc-event.blocked {
  background: repeating-linear-gradient(
    45deg,
    #dc2626,
    #dc2626 8px,
    #b91c1c 8px,
    #b91c1c 16px
  ) !important;
  opacity: 0.75;
}
/* ===== PREMIUM VISUAL UPGRADE (SAFE) ===== */

:root{
--pine:#1e3a2f;
--pine-light:#2d5547;
--gold:#c9a961;
--snow:#ffffff;
--alpine:#f6f7f5;
--shadow-soft:0 6px 20px rgba(0,0,0,.06);
--shadow-medium:0 10px 30px rgba(0,0,0,.10);
}

body{
background:var(--alpine);
font-family:'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
color:var(--pine);
}

h1,h2,h3{
font-family:'Playfair Display', serif;
letter-spacing:-0.02em;
}

/* HERO UPGRADE */

header{
padding:7rem 1.5rem;
box-shadow:var(--shadow-soft);
}

.cta{
border-radius:50px;
padding:1rem 2rem;
font-weight:600;
box-shadow:var(--shadow-soft);
transition:.25s ease;
}

.cta:hover{
transform:translateY(-3px);
box-shadow:var(--shadow-medium);
}

/* TRUST BAR */

.trust-bar{
display:flex;
justify-content:center;
gap:2rem;
padding:1.2rem;
background:white;
box-shadow:var(--shadow-soft);
font-size:.95rem;
flex-wrap:wrap;
}

/* SECTION CARDS */

.feature-card,
.testimonial,
.benefit-card{
background:white;
padding:2rem;
border-radius:16px;
box-shadow:var(--shadow-soft);
}
.benefit-icon{
width:48px;
height:48px;
display:flex;
align-items:center;
justify-content:center;
margin-bottom:1.2rem;
color:#d4af37;                 /* or riche */
}

.benefit-icon svg{
width:26px;
height:26px;
}
.direct-booking h2{
font-size:clamp(2.6rem,4vw,3.2rem);
margin-bottom:3.5rem;
}

.benefit-card h3{
font-size:1.45rem;
margin-bottom:1rem;
}

.benefit-card p{
font-size:1.05rem;
line-height:1.7;
opacity:0.95;
}

.benefit-card{
background:rgba(255,255,255,0.06);
border-radius:20px;
padding:2.5rem;
transition:all .3s ease;
border:1px solid rgba(255,255,255,0.08);
}
.benefits-grid{
gap:2.8rem;
}

.benefit-card:hover{
transform:translateY(-6px);
box-shadow:0 20px 40px rgba(0,0,0,0.2);
}
.direct-booking{
background:linear-gradient(135deg,#1e3d2f,#2f5e49);
padding:6rem 2rem;
border-radius:40px;
color:white;
}

.benefits-grid{
display:grid;
gap:2rem;
}
@media(min-width:900px){
.benefits-grid{
grid-template-columns:repeat(3,1fr);
}
}

/* TESTIMONIALS */

.testimonial{
border-left:4px solid var(--gold);
}

.lang-switch{
position:absolute;
top:1rem;
right:1rem;
z-index:10;
}

.amenities{
padding:5rem 2rem;
}

.amenities h2{
font-size:clamp(2.2rem,3vw,2.6rem);
margin-bottom:2.5rem;
}

.amenities-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:1.2rem 3rem;
list-style:none;
padding:0;
}

.amenities-grid li{
position:relative;
padding-left:1.6rem;
font-size:1.05rem;
line-height:1.6;
}

.amenities-grid li::before{
content:"•";
position:absolute;
left:0;
color:#d4af37;
font-size:1.3rem;
line-height:1;
}


/* ===== PREMIUM HERO ===== */
.premium-hero{
position:relative;
height:92vh;
min-height:650px;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
overflow:hidden;

background:
linear-gradient(to bottom,
rgba(20,35,30,0.35) 0%,
rgba(20,35,30,0.55) 50%,
rgba(20,35,30,0.75) 100%),
url('../hero.jpeg') center/cover no-repeat;
}
.hero-content{
position:relative;
z-index:2;
}


.premium-hero{
background:url('../hero.jpeg') center/cover no-repeat;
position:relative;
height:100vh;
padding:0;
min-height:unset;
display:grid;
place-items:center;
align-items:center;
justify-content:center;
text-align:center;
color:white;
overflow:hidden;
}

/* Couche mate très légère */

.premium-hero::after{
content:"";
position:absolute;
inset:0;
background:rgba(15,25,20,0.25);
z-index:0;
pointer-events:none;   /* 👈 OBLIGATOIRE */
}


.premium-hero::before{
content:"";
position:absolute;
bottom:0;
left:0;
right:0;
height:120px;
background:linear-gradient(to top, #f6f7f5, transparent);
z-index:1;
pointer-events:none;
}

/* Ajustement hiérarchie titre hero */
.premium-hero .brand{
  display:block;
  font-size:clamp(3.2rem,5.5vw,5rem);
}

.premium-hero .baseline{
  display:block;
  font-size:clamp(1.9rem,3vw,2.8rem);
  margin-top:0.6rem;
}

.hero-content{
padding:3rem 2.5rem;
border-radius:30px;
transform:translateY(-40px);
}
.hero-content{
margin-top:-40px;
}

.hero-wrapper{
height:100%;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
position:relative;
}

.hero-trust{
position:absolute;
bottom:20px;
}

.premium-hero h1{
font-family:'Playfair Display',serif;
font-size:clamp(4rem,7vw,6rem);
line-height:1.05;
font-weight:600;
letter-spacing:-0.02em;
text-shadow:0 8px 35px rgba(0,0,0,0.45);
}

.premium-hero p{
font-size:clamp(1.2rem,2.2vw,1.5rem);
max-width:750px;
margin:0 auto 2.5rem;
opacity:.95;
text-shadow:0 3px 20px rgba(0,0,0,0.45);
}




.hero-badge{
display:inline-block;
background:rgba(255,255,255,.12);
padding:.6rem 1.4rem;
border-radius:50px;
font-size:.9rem;
margin-bottom:1.8rem;
backdrop-filter:blur(10px);
border:1px solid rgba(255,255,255,.2);
}

.hero-price{
font-size:clamp(2rem,3vw,2.4rem);
font-weight:700;
color:#c9a961;
}




.hero-cta{
display:flex;
gap:1rem;
justify-content:center;
flex-wrap:wrap;
margin-top:2.6rem;
}

.trust-icon{
color:#e0b84f;
font-size:1.2rem;      /* légèrement plus grand */
font-weight:600;       /* donne un peu de présence */
text-shadow:0 0 6px rgba(224,184,79,0.5);  /* glow très subtil */
}


.cta-gold{
background:#e0b84f;
color:#1e3a2f;
padding:1.1rem 2.8rem;
border-radius:50px;
font-weight:600;
text-decoration:none;
box-shadow:0 10px 30px rgba(201,169,97,.35);
}

.cta-outline{
border:2px solid rgba(255,255,255,.8);
color:white;
padding:1.1rem 2.8rem;
border-radius:50px;
text-decoration:none;
}
.hero-trust{
position:absolute;
bottom:25px;
left:50%;
transform:translateX(-50%);
display:flex;
gap:2.5rem;
flex-wrap:wrap;
font-size:.95rem;
z-index:3;
}

.trust-item{
display:flex;
align-items:center;
gap:.5rem;
color:white;
}

.trust-icon{
color:#c9a961;   /* 👈 or */
font-size:1.1rem;
}




/* ===== WHY DIRECT PREMIUM ===== */

.why-direct{
background:linear-gradient(135deg,#1e3a2f,#2d5547);
color:white;
padding:5rem 2rem;
border-radius:20px;
margin:4rem auto;
max-width:1200px;
}

.why-direct h2{
text-align:center;
margin-bottom:3rem;
font-family:'Playfair Display',serif;
font-size:2.5rem;
}

.benefits-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:2rem;
}

.benefit-card{
background:rgba(255,255,255,.08);
padding:2rem;
border-radius:16px;
}

.cta-footer{
background:linear-gradient(135deg,#6e96b3,#5f87a4);
padding:5rem 2rem;
text-align:center;
box-shadow:inset 0 0 200px rgba(0,0,0,.15);
color:white;
}

.cta-inner{
max-width:900px;
margin:auto;
}

.cta-footer h2{
font-family:'Playfair Display',serif;
font-size:clamp(2.2rem,4vw,3rem);
margin-bottom:1.5rem;
}

.cta-footer p{
font-size:1.2rem;
opacity:.95;
margin-bottom:3rem;
line-height:1.6;
}

.cta-buttons{
display:flex;
justify-content:center;
gap:2rem;
flex-wrap:wrap;
}

.cta-btn{
padding:1rem 2rem;
border-radius:40px;
font-weight:600;
text-decoration:none;
transition:.3s ease;
display:inline-flex;
align-items:center;
gap:.6rem;
}

.cta-btn.gold{
background:#c9a961;
color:#1e3d2f;
box-shadow:0 10px 30px rgba(201,169,97,.4);
}

.cta-btn.gold:hover{
transform:translateY(-3px);
}

.cta-btn.outline{
border:2px solid white;
color:white;
}

.cta-btn.outline:hover{
background:white;
color:#1e3d2f;
}

.site-footer{
background:#1e3d2f;
color:#d9d9d9;
text-align:center;
padding:2.5rem 1rem;
}

.footer-links{
margin-top:1rem;
display:flex;
justify-content:center;
gap:1.5rem;
flex-wrap:wrap;
}

.footer-links a{
color:#c9a961;
text-decoration:none;
}

.footer-links a:hover{
text-decoration:underline;
}
/* Testimonials avec texte tronqué */
.testimonial-text {
  position: relative;
  max-height: 120px;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.testimonial-text.expanded {
  max-height: 1000px;
}

.testimonial-text::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(to bottom, transparent, white);
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.testimonial-text.expanded::after {
  opacity: 0;
}

.read-more-btn {
  display: inline-block;
  margin-top: 0.5rem;
  color: #c9a961;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
  text-decoration: underline;
}

.read-more-btn:hover {
  color: #b89550;
}
/* ===== MOBILE HEADER FIX ===== */

@media (max-width: 768px){

  .premium-hero{
    height: auto;          /* supprime le 100vh */
    min-height: auto;
    padding: 120px 20px 60px;
  }

  .hero-wrapper{
    height: auto;
  }

  .hero-content{
    margin-top: 0;
    transform: none;
  }

  .hero-cta{
    flex-direction: column;
    gap: 16px;
  }

  .hero-trust{
    position: static;      /* enlève absolute */
    transform: none;
    margin-top: 40px;
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

}

.welcome-guide{
  padding:60px 20px;
  background:white;
  text-align:center;
}

.guide-card{
  max-width:800px;
  margin:auto;
  background:linear-gradient(135deg,#20422f,#2f6a4a);
  color:white;
  padding:50px;
  border-radius:30px;
}

.guide-card h3{
  font-size:1.8rem;
  margin-bottom:15px;
}

.guide-btn{
  display:inline-block;
  margin-top:25px;
  padding:14px 30px;
  background:#c9a961;
  color:#1c3a2a;
  border-radius:40px;
  font-weight:600;
  text-decoration:none;
  transition:.3s;
}

.guide-btn:hover{
  transform:translateY(-2px);
}
/* ===== FAQ SECTION ===== */

.faq-section{
  padding:80px 20px;
  background:#f8f7f4;
}

.faq-section h2{
  text-align:center;
  margin-bottom:50px;
  font-size:2.2rem;
}

.faq-accordion{
  max-width:900px;
  margin:auto;
}

.faq-item{
  border-bottom:1px solid #e2e2e2;
}

.faq-question{
  width:100%;
  background:none;
  border:none;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:22px 10px;
  font-size:1.1rem;
  font-weight:600;
  cursor:pointer;
}
.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .35s ease;
  padding:0 10px;
}

.faq-item.active .faq-answer{
  max-height:300px;
  padding:15px 10px 25px;
}

.faq-icon{
  transition:transform .3s ease;
  color:#c9a961;
}

.faq-item.active .faq-icon{
  transform:rotate(45deg);
}

/* ===== CALCULATEUR DE PRIX ===== */
.price-calculator {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border: 2px solid #d4af37;
  border-radius: 16px;
  padding: 2rem;
  margin: 2rem 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.price-calculator h3 {
  color: #1e3a2f;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
  font-family: 'Playfair Display', serif;
}

.calculator-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 640px) {
  .calculator-inputs {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.input-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #1e3a2f;
  font-size: 0.95rem;
}

.input-group input {
  width: 100%;
  padding: 0.85rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.input-group input:focus {
  outline: none;
  border-color: #d4af37;
  box-shadow: 0 0 0 3px rgba(212,175,55,0.1);
}

.calculator-result {
  background: linear-gradient(135deg, #1e3a2f 0%, #2d5547 100%);
  color: white;
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
}

.result-breakdown {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.result-breakdown span {
  font-size: 0.95rem;
  opacity: 0.9;
}

.result-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 700;
}

.result-total .price {
  color: #d4af37;
}

.calculator-error {
  background: #fef2f2;
  color: #dc2626;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
  text-align: center;
  font-size: 0.9rem;
  display: none;
}

.calculator-cta {
  margin-top: 1rem;
  display: none;
}

.calculator-cta a {
  display: inline-block;
  background: #d4af37;
  color: #1e3a2f;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.calculator-cta a:hover {
  background: #c9a961;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212,175,55,0.3);
}

/* === FULLCALENDAR PRICE POSITION FIX === */

.fc-daygrid-day-frame {
  position: relative;
}

.daily-price {
  position: absolute;
  bottom: 6px;
  left: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #2c3e35;
}

.weekly-price {
  position: absolute;
  top: 22px;
  right: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #1e3a2f;
}

/* Empêcher le scroll automatique vers les sections collapsibles */
html {
  scroll-behavior: smooth;
}

#tarification,
#calendar-section {
  scroll-margin-top: 0;
}
/* ===== SECTION ACTIVITÉS ===== */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.activity-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
}

.activity-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.activity-image {
  width: 100%;
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.activity-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.4) 100%
  );
}

.activity-content {
  padding: 1.8rem;
}

.activity-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: #1e3a2f;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.activity-content p {
  color: #6b7280;
  line-height: 1.6;
  font-size: 0.95rem;
}

.activities-cta {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  margin-top: 2rem;
  border-left: 4px solid #d4af37;
}

.activities-cta p {
  font-size: 1.05rem;
  color: #1e3a2f;
  font-weight: 500;
  margin: 0;
}

/* Mobile */
@media (max-width: 768px) {
  .activities-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .activity-image {
    height: 180px;
  }
  
  .activity-content {
    padding: 1.5rem;
  }

 }
/* HAMBURGER */

.hamburger{
position:fixed;
top:20px;
left:20px;
width:30px;
height:22px;
display:flex;
flex-direction:column;
justify-content:space-between;
cursor:pointer;
z-index:2000;
}

.hamburger span{
height:3px;
background:white;
border-radius:3px;
transition:.3s ease;
}

/* SIDE MENU */
.side-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 260px;
  height: 100vh;
  background: rgba(30, 58, 47, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 5px 0 30px rgba(0, 0, 0, 0.3);
  transform: translateX(-100%);
  transition: transform 0.35s ease;
  z-index: 1500;
  padding: 80px 25px;
  overflow-y: auto;
}

.side-menu.open {
  transform: translateX(0);
}

@media (max-width: 768px) {
  .side-menu {
    width: 220px;
    padding: 70px 20px;
  }
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1400;
}

.menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.side-menu-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.side-menu-content a {
  color: white;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 500;
  padding: 8px 0;
  transition: all 0.2s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.side-menu-content a:hover {
  color: #d4af37;
  transform: translateX(5px);
}

/* ===== BOUTON FLOTTANT MOBILE ===== */
/* Bouton flottant intelligent */
.smart-float-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: linear-gradient(135deg, #c9a961, #d4af37);
  color: #1e3a2f;
  padding: 0.9rem 1.5rem;
  border-radius: 50px;
  display: none;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  z-index: 999;
  text-decoration: none;
  transform: translateY(100px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.smart-float-btn.show {
  transform: translateY(0);
}

.smart-float-btn .btn-icon {
  font-size: 1.3rem;
}

.smart-float-btn:hover {
  background: linear-gradient(135deg, #b89550, #c9a961);
  transform: translateY(-3px);
  box-shadow: 0 6px 30px rgba(201, 169, 97, 0.4);
}

/* Afficher seulement sur mobile/tablette */
@media (max-width: 1024px) {
  .smart-float-btn {
    display: flex;
  }
}

/* Version compacte sur petit mobile */
@media (max-width: 400px) {
  .smart-float-btn {
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
  }
  
  .smart-float-btn .btn-text {
    display: none; /* Afficher seulement l'icône */
  }
  
  .smart-float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    padding: 0;
    justify-content: center;
  }
  
  .smart-float-btn .btn-icon {
    font-size: 1.5rem;
  }
}
.benefit-card.platform-option {
  background: rgba(255,255,255,0.05);
  border: 2px dashed rgba(255,255,255,0.3);
}

.platform-btn {
  display: inline-block;
  margin-top: 1rem;
  color: #d4af37;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.platform-btn:hover {
  color: #f4d58d;
  transform: translateX(5px);
}

/* Conteneur calendrier */
#calendar {
  max-width: 900px;
  margin: 2rem auto;
  background: white;
  padding: 1rem;
  border-radius: .75rem;
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
}

/* Airbnb = rouge */
.airbnb-event {
  background-color: #dc2626 !important;
  border-color: #dc2626 !important;
  color: #fff !important;
}

/* Booking = bleu */
.booking-event {
  background-color: #2563eb !important;
  border-color: #2563eb !important;
  color: #fff !important;
}

/* Abritel = violet */
.abritel-event {
  background-color: #7c3aed !important;
  border-color: #7c3aed !important;
  color: #fff !important;
}

/* Légende */
.calendar-legend {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin: 1rem 0;
  font-size: 0.9rem;
}

.calendar-legend span {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}

.calendar-legend i {
  width: 14px;
  height: 14px;
  display: inline-block;
  border-radius: 3px;
}
/* ===== FORMULAIRE DE CONTACT ===== */
.contact-form-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 4rem 2rem;
}

.contact-form-container {
  max-width: 700px;
  margin: auto;
  background: white;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.contact-form-container h2 {
  text-align: center;
  margin-bottom: 1rem;
  color: #1e3a2f;
}

.contact-form-intro {
  text-align: center;
  color: #6b7280;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-weight: 600;
  color: #1e3a2f;
  font-size: 0.95rem;
}

.form-group label .required {
  color: #ef4444;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.9rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #c9a961;
  box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #c9a961, #d4af37);
  color: #1e3a2f;
  border: none;
  padding: 1.1rem 2rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 1rem;
}

.submit-btn:hover {
  background: linear-gradient(135deg, #b89550, #c9a961);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(201, 169, 97, 0.3);
}

.submit-btn:active {
  transform: translateY(0);
}

.form-success {
  background: #d1fae5;
  color: #065f46;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  margin-top: 1rem;
  display: none;
}

.form-success.show {
  display: block;
}

.form-error {
  background: #fee2e2;
  color: #991b1b;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  margin-top: 1rem;
  display: none;
}

.form-error.show {
  display: block;
}

@media (max-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-form-container {
    padding: 2rem 1.5rem;
  }
}
/* ===== SECTION BLOG COLLAPSIBLE ===== */
#blog-content {
  padding: 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  transition: padding 0.3s ease;
}

#blog-content.open {
  padding: 2rem 1.5rem;
}

#blog-content .blog-intro {
  font-size: 1.1rem;
  color: #6b7280;
  line-height: 1.7;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2rem;
  padding: 0 1rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.blog-card-image {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.blog-card-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(201, 169, 97, 0.95);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
}

.blog-card-content {
  padding: 1.8rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1e3a2f;
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.blog-card-excerpt {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  font-size: 0.95rem;
}

.blog-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
}

.blog-card-meta {
  font-size: 0.9rem;
  color: #9ca3af;
}

.blog-card-link {
  color: #c9a961;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
}

.blog-card-link:hover {
  color: #b89550;
  gap: 0.8rem;
}

.blog-card-link::after {
  content: '→';
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  #blog-content.open {
    padding: 1.5rem 1rem;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .blog-card-image {
    height: 180px;
  }
  .blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}
}

