/* reset & base */
html { scroll-behavior: smooth; }
* { margin:0; padding:0; box-sizing:border-box; }
body {

  background-size: cover;
  font-family: 'Poppins', sans-serif;
  
}
html, body {
  overflow-x: hidden;
}


/* ===== HEADER ===== */
.header {
  position: fixed; /*  fixe tout le header */
  top: 0;
  left: 0;
  width: 100%;
  padding: 0px 10px;
  display: flex;
  justify-content: space-between; /* logo à gauche, liens à droite */
  align-items: center;
  background: #BFAE99;
  
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  z-index: 1000;
}

/* Logo */
.logo-img {
  height: 90px;
  width: auto;
  transition: transform 0.2s ease;
}

.logo-img:hover {
  transform: scale(1.25);
}

/* ===== NAVBAR ===== */
.navbar {
  display: flex;
  justify-content: flex-end;
}

.navbar a {
  font-size: 30px;
  color: #704F32; 
  text-decoration: none;
  font-weight: 900;
  margin-left: 70px;
  margin-right: 50px;
  transition: color 0.3s, transform 0.3s;
  font-family:'Great Vibes', cursive;
  transform: translateY(-10px);
  animation: navFade 0.6s ease forwards;
  animation-delay: calc(0.1s * var(--i));
}

@keyframes navFade {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.navbar a:hover {
  color: white;
  transform: translateY(-2px);
}
.chevron-container {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.chevron {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}


.chevron-1 {
  width: 61%;
  background: #704F32;
  z-index: 1;
  /* ✅ FORME CORRECTE */
  clip-path: polygon(
    0 0,
    100% 0,
    75% 50%,
    100% 100%,
    0 100%
  );
}

.chevron-2 {
  width: 62%;
  background: #7F5539;
  opacity: 0.8;
  z-index: 0;
  /* ✅ FORME CORRECTE */
  clip-path: polygon(
    0 0,
    100% 0,
    75% 50%,
    100% 100%,
    0 100%
  );
}


.chevron-3 {
  width: 63%;
  background: #B08968;
  opacity: 0.6;
  z-index: -1;
  /* ✅ FORME CORRECTE */
  clip-path: polygon(
    0 0,
    100% 0,
    75% 50%,
    100% 100%,
    0 100%
  );
}



.home-content {
  position: relative;
  z-index: 3;
  width: 50%;
  padding: 87.5px 80px;
}

.home-image img {
  width: 100%;
  height: auto;
  display: block;
}


.home-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;        /* un peu moins large */
  height: 100%;
  z-index: 0;
  overflow: hidden; /* 🔑 empêche le débordement */

  /* forme inverse du frame */
  clip-path: polygon(
    25% 0,
    100% 0,
    100% 100%,
    25% 100%,
    0 50%
  );
}

.home-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;        /* remplit sans déformation */
  object-position: center; /* évite le zoom bizarre */
}

.wel { color:#B08968; font-family:'Great Vibes', cursive; font-size:45px; margin-bottom:20px;padding-top:80px;padding-left:160px; }
.logo-subtitle { color:#BFAE99; font-family:'Great Vibes', cursive; font-size:61px; margin-bottom:20px;padding:30px;-webkit-text-stroke: 0.01px #BFAE99; text-align: center; }
.logo-title { font-family:'Great Vibes', cursive; font-size:35px; color:#B08968; font-weight:750; margin:40px 0; text-align:center }
.text { display:inline-block; min-width:30px; text-align:center; }

/* social icons */
.home-sci { display:flex; justify-content:center; margin-top:25px; }
.home-sci a {
  display:inline-flex; justify-content:center; align-items:center; width:45px; height:45px; border:2px solid #BFAE99; border-radius:50%;
  font-size:22px; color:#BFAE99; text-decoration:none; margin:0 10px;
  opacity:0; transform:translateX(-18px) scale(.96); animation:slideIn .6s cubic-bezier(.2,.9,.3,1) forwards; animation-delay:calc(.1s * var(--i)); transition:all .3s;
}
@keyframes slideIn { from{opacity:0; transform:translateX(-18px) scale(.96)} to{opacity:1; transform:translateX(0) scale(1)} }
.home-sci a:hover { background:#BFAE99; color:#704F32; transform:translateY(-8px); box-shadow:0 0 20px #BFAE99; }

/* button */
.btn-box { margin-top:35px;margin-left:195px; display:inline-block; padding:7px 40px; font-size:25px; color:#633825; background:#B08968; border-radius:50px; text-decoration:none; transition:all .3s;font-family:'Great Vibes', cursive;-webkit-text-stroke: 1px #633825; }
.btn-box:hover { box-shadow:0 0 15px #BFAE99, 0 0 40px #BFAE99; transform:translateY(-3px);color:#BFAE99;-webkit-text-stroke: 1px white; }

/* ===== ABOUT ===== */
.about {
  padding:100px 8%;
  position:relative;
  z-index:1;
  background:#BFAE99;
}

.about-container {
  max-width:1700px;
  margin:0 auto;
  font-family:'Great Vibes', cursive;
}

.about-title {
  text-align:center;
  font-size:44px;
  color:#B08968;
  margin-bottom:40px;
}

.about-title span {
  color:#633825;
}

/* layout about */
.about-content {
  display:flex;
  flex-wrap:wrap;
  gap:30px;
  align-items:flex-start;
  justify-content:center;
  flex-direction:row-reverse;
  -webkit-text-stroke: 0.5px #633825;
  font-family: 'Georgia', 'Times New Roman', serif;
}

.about-image {
  flex:1 1 40%;
  max-width:500px;
  height: 600px;
}

.about-image img {
  width:100%;
  border-radius:8px;
  box-shadow:0 6px 30px rgba(0,0,0,0.2);
  display:block;
  border-left:4px solid #704F32;
}

/* texte */
.about-text {
  flex:1 1 55%;
  background:#B08968;
  border-left:4px solid #704F32;
  padding:30px 20px;
  border-radius:8px;
  color:#222;
  
}

.about-text p {
  font-size:17.4px;
  line-height:1.7;
  margin-bottom:16px;
  text-indent:40px;
  color: #633825;
}

/* info box */ 
.about-info { background:#B08968; border-left:4px solid #704F32; padding:12px 16px; border-radius:8px; color:#633825; margin-top:12px;font-size: 17.5px; text-align: center; font-family: 'Georgia', 'Times New Roman', serif; }
.btn-box { margin-top:35px;margin-left:195px; display:inline-block; padding:7px 40px; font-size:25px; color:#633825; background:#B08968; border-radius:50px; text-decoration:none; transition:all .3s;font-family:'Great Vibes', }
.btn-box:hover { box-shadow:0 0 15px #BFAE99, 0 0 40px #BFAE99; transform:translateY(-3px);}

/* ====== ROOMS (kept simpler) ====== */
.rooms { padding:100px 8%; background:#BFAE99; color:#222;font-family:'Great Vibes', cursive; }
.section-title { text-align:center; font-size:44px; color:#B08968; font-family:'Great Vibes', cursive; margin-bottom:30px; }
.rooms-content { display:flex; flex-wrap:wrap; gap:105px; justify-content:center; }
.room-card { width:550px;height: 650px; background:#B08968; border-left:4px solid #704F32;border-radius: 10px; overflow:hidden; box-shadow:0 6px 20px rgba(0,0,0,0.08); transition:all .35s; opacity:0; transform:translateY(30px); }
.room-card.visible { opacity:1; transform:translateY(0); }
.room-image img { width:100%; height:350px; object-fit:cover; transition:transform .45s; }
.room-card:hover { transform:translateY(-8px) scale(1.02); box-shadow:0 12px 30px rgba(0,0,0,0.12); }
.room-card:hover img { transform:scale(1.06); }
.room-info { padding:16px 20px; display: flex; justify-content: center; align-items: center; flex-direction: column; }
.room-info h3 { color:#633825; margin-top:10px;margin-bottom:20px;font-weight: 600;font-size: 28px;text-align: center;font-family:'Great Vibes', cursive; }
.room-info p { color:#633825; line-height:1.6;font-size: 18px;font-weight: 400;text-align: center;font-family: 'Georgia', 'Times New Roman', serif; }
.section-title span { color:#633825; }


.btn-details { margin-top:25px; padding:10px 30px; font-size:20px; color:#B08968; background:#633825; border:none; border-radius:50px; cursor:pointer; font-family:'Great Vibes', cursive; transition:all .3s; }
.btn-details:hover { box-shadow:0 0 15px #633825, 0 0 40px #633825; transform:translateY(-3px); }

/* modal */
.modal { display:none; position:fixed; inset:0; background:rgba(0,0,0,0.5); justify-content:center; align-items:center; z-index:1200; }
.modal .modal-content { background:#B08968; padding:22px; border-radius:12px; max-width:520px; width:90%; transform:scale(.9); opacity:0; animation:zoomIn .28s forwards; }
.close { position:absolute; top:10px; right:14px; font-size:22px; cursor:pointer; color:#633825; }

/* animations */
@keyframes zoomIn { from{transform:scale(.9); opacity:0} to{transform:scale(1); opacity:1} }

/* ===== data-animate system (centralized) ===== */
[data-animate] { opacity:0; transition: all .8s cubic-bezier(.2,.9,.3,1); }
[data-animate="slide-left"] { transform: translateX(-40px); }
[data-animate="slide-right"] { transform: translateX(40px); }
[data-animate="slide-up"] { transform: translateY(30px); }
[data-animate].visible { opacity:1; transform: translateX(0) translateY(0); }

/* responsive */
@media (max-width: 900px) {
  .about-content { flex-direction:column; text-align:center; }
  .about-image, .about-text { flex: 1 1 100%; max-width:90%; }
  .room-card { width: 90%; }
}

/* ===== MODAL ENHANCEMENT ===== */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  justify-content: center;
  align-items: center;
  z-index: 2000;
  backdrop-filter: blur(5px);
}

.modal-content {
  background: linear-gradient(to bottom right, #B08968, #B08968);
  padding: 40px 30px;
  border-radius: 18px;
  max-width: 600px;
  width: 90%;
  color: #633825;
  position: relative;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  animation: zoomIn 0.35s ease;
  font-family: 'Georgia', 'Times New Roman', serif;
}

.modal-content h3 {
  text-align: center;
  color: #633825;
  font-size: 28px;
  margin-bottom: 18px;
  font-family: 'Great Vibes', cursive;
  letter-spacing: 1px;
  text-shadow: 0 0 15px rgba(128, 0, 0, 0.3);
}

.modal-content p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 10px;
  text-align: justify;
}

.modal-content .price-box {
  margin-top: 20px;
  background: rgba(128, 0, 0, 0.08);
  border-left: 4px solid #704F32;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 17px;
  color: #633825;
  font-weight: 600;
  text-align: center;
}

.close {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 24px;
  cursor: pointer;
  color: #633825;
  background-color: #B08968;
  transition: transform 0.3s ease, color 0.3s;
  border-color:  2px solid #633825;
}

.close:hover {
  color: #633825;
  transform: rotate(90deg);
}
.modal-content .modal-desc {
  font-size: 17px;
  line-height: 1.6;
  color: #633825;
  margin-bottom: 18px;
  text-align: left;
}

.price-section {
  margin-top: 8px;
  margin-bottom: 18px;
}

.price-section h4 {
  font-size: 18px;
  color: #633825;
  margin-bottom: 8px;
  font-weight: 700;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  background: #B08968;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.price-table th, .price-table td {
  padding: 12px 14px;
  text-align: left;
  font-size: 16px;
  color: #633825;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.price-table th {
  background: #B08968;
  color: #633825;
  font-weight: bold;
}

.price-table tbody tr:hover {
  background: rgba(128,0,0,0.05);
  transition: 0.3s ease;
}

.small-note {
  margin-top: 10px;
  font-size: 14px;
  color: #633825;
  text-align: center;
}

.modal-actions {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
}


.modal-actions .btn-details {
  background: transparent;
  color: #633825;
  border: 2px solid #633825;
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
  transition: all .25s;
}

.modal-actions .btn-details:hover {
  background: #633825;
  color: #B08968;
  transform: translateY(-3px);
}

/* ===== SERVICES SECTION ===== */
.services {
  padding: 100px 8%;
  background: #BFAE99;
  color: #222;
  text-align: center;
}

.services-container {
  font-size:44px;
  max-width: 1200px;
  margin: 0 auto;
}

.services-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  justify-items: center;
  align-items: stretch; /* Les éléments s'étirent pour être de la même hauteur */
  padding: 2rem;
}

.service-box {
  background: #B08968;
  padding: 30px 20px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #633825;
  border-radius: 15px;
  text-align: center;
  width: 100%;
  height: 100%; /* prend toute la hauteur disponible */
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* équilibre le contenu */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 4px solid #704F32;
}

/* Animation au survol */
.service-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px #633825;

}

.service-box i {
  font-size: 60px;
  color: #633825;
  margin-bottom: 15px;
  transition: transform 0.3s;
}

.service-box h3 {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 28px;
  color: #633825;
  margin-bottom: 10px;
  font-family:'Great Vibes', cursive;
}

.service-box p {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 17px;
  color: #633825;
  line-height: 1.6;
}

.service-box:hover i {
  transform: scale(1.15);
}

/* ====== GALLERY SECTION ====== */
.gallery {
  padding: 100px 8%;
  background: #BFAE99;
  text-align: center;
  font-size: 44px;
}

.gallery-container {
  max-width: 1200px;
  margin: auto;
}

.gallery-filters {
  margin-bottom: 40px;
}

.filter-btn {
  margin-top:25px; padding:10px 30px; font-size:23px; color:#633825; background:#B08968; border:none; border-radius:50px; cursor:pointer;font-family:'Great Vibes', cursive; transition:all .3s;-webkit-text-stroke: 1px #633825 }
.filter-btn.active,
.filter-btn:hover {
  box-shadow:0 0 15px #B08968, 0 0 40px #B08968; transform:translateY(-3px);
}



.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  background: rgba(128, 0, 0, 0.15);
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #704F32;
  border-radius: 15px;
  width: 100%;
  height: 100%; /* prend toute la hauteur disponible */
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* équilibre le contenu */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 4px solid #704F32;
}

.gallery-item img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;

}

.gallery-item:hover img {
  transform: scale(1.1);
}

.caption {
  margin-top: 10px;
  font-family:'Great Vibes', cursive;
  font-size: 23px;
  color: #633825;
  text-transform: capitalize;
  letter-spacing: 1px;

}

/* Effet zoom plein écran */
.image-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
  cursor: zoom-out;
}

.image-modal img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 0 20px #B08968;
  animation: zoomIn 0.4s ease;
}

@keyframes zoomIn {
  from {transform: scale(0.6); opacity: 0;}
  to {transform: scale(1); opacity: 1;}
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 5px;
  background:#B08968; /* maroon transparent */
  text-align: center;
  transition: background 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  background: rgba(112, 79, 50, 0.8);
  transform: translateY(-8px);
  box-shadow: 0 0 25px rgba(112, 79, 50, 0.9);
}

/* ====== PRICING SECTION ====== */
.pricing-section {
  padding: 100px 8%;
  background: #BFAE99;
  text-align: center;
}

.pricing-section span{
  color:#633825;
}
.pricing-section .heading {
  font-size: 44px;
  color: #B08968;
  font-family: 'Great Vibes', cursive;
  margin-bottom: 50px;
}

.pricing-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
}

/* ===== Pricing Card ===== */
.pricing-card {
  background: #B08968;
  border-left: 4px solid #704F32;
  border-radius: 18px;
  width: 380px;
  padding: 40px 30px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  transition: all 0.35s ease;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 25px rgba(112,79,50,0.6);
}

/* Title */
.pricing-card h2 {
  font-size: 34px;
  color: #633825;
  font-family: 'Great Vibes', cursive;
  margin-bottom: 25px;
}

/* Price list */
.price-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  color: #633825;
  font-family: 'Georgia', 'Times New Roman', serif;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(99,56,37,0.4);
}

.price-list span {
  font-weight: 600;
}

/* Offer text */
.offer {
  margin-top: 18px;
  font-size: 18px;
  color: #633825;
  font-family: 'Georgia', 'Times New Roman', serif;
  font-weight: 600;
}

/* ===== Special Offer ===== */
.special-offer {
  background: linear-gradient(135deg, #704F32, #B08968);
  color: #fff;
  border-left: 4px solid #633825;
}

.special-offer h2 {
  color: #fff;
}

.offer-details {
  font-size: 18px;
  line-height: 1.6;
  font-family: 'Georgia', 'Times New Roman', serif;
  color: #fff;
}

.offer-details strong {
  color: #ffd7b5;
  font-size: 20px;
}

/* Responsive */
@media (max-width: 900px) {
  .pricing-container {
    gap: 40px;
  }

  .pricing-card {
    width: 90%;
  }
}

.badge-offer {
  position: absolute;
  top: -15px;
  right: -15px;
  background: linear-gradient(135deg, #704F32, #B08968);
  color: #fff;
  padding: 8px 14px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 0 15px rgba(176,137,104,0.8);
  animation: pulseBadge 1.6s infinite;
}

.badge-offer i {
  color: #FFD7B5;
}

@keyframes pulseBadge {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}



/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 80px 0;
  background: #BFAE99;
  font-family: 'Great Vibes', cursive;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* ===== HEADER ===== */
.contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-title {
  font-size: 44px;
  font-weight: 600;
  color: #B08968;
}

.contact-title span {
  color: #633825;
}

.contact-subtitle {
  max-width: 600px;
  margin: 15px auto 0;
  color: #633825;
  line-height: 1.6;
  font-size: 25px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ===== GRID ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* ===== CARD ===== */
.contact-card,
.contact-form-container {
  background: #B08968;
  padding: 35px;
  border-radius: 18px;
  box-shadow: 0 15px 40px #704F32;
  border-left: 4px solid #704F32;
}

.card-title {
  font-size: 35px;
  margin-bottom: 60px;
  color: #633825;
  text-align: center;
}

.contact-list li {
  margin-bottom: 12px;
  color: #633825;
  font-size: 18px;
  font-family: 'Georgia', 'Times New Roman', serif;
  margin-bottom: 30px;
}

.contact-list a {
  color: #633825;
  text-decoration: none;
}

/* ===== BUTTONS ===== */
.contact-actions {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.btn {
  padding: 10px 22px;
  border-radius: 30px;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  font-family: 'Great Vibes', cursive;
  width: 250px;
  text-align: center;
}

.btn-primary {
  background: #633825;
  color: #B08968;
  border: 1px solid #633825;
  
}

.btn-outline {
  border: 1px solid #633825;
  color: #B08968;
  background: transparent;
}

.btn.full {
  width: 100%;
}

/* ===== FORM ===== */
.form-row {
  margin-bottom: 15px;
}

.form-row label {
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
  color: #633825;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #633825;
  font-size: 14px;
  background: #B08968;
}

/* ===== MAP ===== */
.contact-map {
  margin-top: 60px;
  border-radius: 18px;
  overflow: hidden;
}

.contact-map iframe {
  width: 100%;
  height: 380px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}


/* Floating Button */
.booking-bubble {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, #704F32, #7F5539);
  color: #B08968;
  font-size: 26px;
  padding: 18px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 20px #633825;
  animation: pulse 1.8s infinite;
  z-index: 1000;
  transition: all 0.3s ease;
}

.booking-bubble:hover {
  transform: scale(1.15);
  box-shadow: 0 0 25px rgba(128,0,0,0.4);
}

/* Icon glow */
.booking-bubble i {
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from { text-shadow: 0 0 5px #B08968; }
  to { text-shadow: 0 0 15px #B08968; }
}

/* Pulse animation */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(214, 134, 49, 0.5)
;
  }
  70% {
    box-shadow: 0 0 0 15px rgba(214, 134, 49, 0.3);

  }
  100% {
    box-shadow: 0 0 0 0 rgba(214, 134, 49, 0.1);
  }
}


/* Booking popup */
.booking-popup {
  position: fixed; bottom: -100%; left: 0; width: 100%; border-radius: 20px; border: 3px solid #633825; background: rgba(255, 250, 245, 0.3); backdrop-filter: blur(10px);
  box-shadow: 0 -5px 25px #633825; transition: bottom 0.6s ease; z-index: 999;
}

.booking-popup.active {
  bottom: 0; opacity: 1;
}
#bookingPopup {
  display: none;
}
#bookingPopup.active {
  display: flex; /* ou block, selon ton style */
}


.booking-content {
  max-width: 900px;
  margin: 30px auto;
  text-align: center;
}

.booking-content h2 {
  text-align:center; font-size:40px; font-family:'Great Vibes', cursive; color:#B08968; margin-bottom:13px;
}
.booking-content span { color:#633825; }

.booking-content form {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 35px;
}

.input-group {
  display: flex;
  flex-direction: column;
  width: 160px;
}

label {
  font-weight: 600;
  margin-bottom: 6px;
  color: #633825;
  font-family: 'Georgia', 'Times New Roman', serif;
}

input, select, textarea {
  padding: 10px 12px;
  border: 1px solid #704F32;
  border-radius: 18px;
  outline: none;
  transition: 0.3s;
  background-color:  rgba(214, 134, 49, 0.2);
}

input:focus, select:focus, textarea:focus {
  border-color: #633825;
  box-shadow: 0 0 5px #633825;
}
input:hover, select:hover, textarea:hover {
  box-shadow:0 0 15px #633825, 0 0 40px #633825; transform:translateY(-3px); }

.btn { margin-top:10px; padding:10px 30px; font-size:25px; color:#B08968; background:#633825; border:none; border-radius:50px; cursor:pointer; font-family:'Great Vibes', cursive; transition:all .3s; }
.btn:hover { box-shadow:0 0 15px #633825, 0 0 40px #633825; transform:translateY(-3px); }

/* Close Button for Booking Popup */
.close-btn {
  position: absolute;
  top: 18px;
  right: 35px;
  font-size: 32px;
  color: #633825;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: bold;
  z-index: 1001;
}

.close-btn:hover {
  transform: rotate(90deg) scale(1.2);
  color: #633825;
  text-shadow: 0 0 10px rgba(214, 134, 49, 0.6);
}

/* Bouton de fermeture */
.close-popup {
  position: absolute;
  top: 10px;
  right: 20px;
  background: transparent;
  border: none;
  color: #633825;
  font-size: 30px;
  cursor: pointer;
  transition: 0.3s;
}

.close-popup:hover {
  color: #5a2d0c;
  transform: scale(1.2);
}
@keyframes glowIcon {
  from { text-shadow: 0 0 5px #633825; }
  to { text-shadow: 0 0 15px #633825; }
}


/* ===== FOOTER ===== */
.footer {
  background: #B08968; 
  color: #633825;
  text-align: center;
  padding: 10px 10px;
  font-size: 12px;
  position: relative;
  z-index: 1;
}



/* ================= MOBILE FIX ================= */
@media (max-width: 768px) {

  /* Header */
  .header {
    padding: 10px;
  }

  .logo-img {
    height: 60px;
  }

  .navbar {
    display: none; /* menu desktop caché */
  }

  /* Home */
  .home-content {
    width: 100%;
    padding: 120px 20px 40px;
    text-align: center;
  }

  .home-image {
    display: none; /* image coupée sur mobile */
  }

  .wel {
    padding: 0;
    font-size: 32px;
  }

  .logo-subtitle {
    font-size: 38px;
  }

  .btn-box {
    margin: 25px auto;
    display: block;
  }

  /* Sections générales */
  section {
    padding: 70px 20px !important;
  }

  /* Cards */
  .room-card,
  .pricing-card,
  .service-box {
    width: 100% !important;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  /* Booking popup */
  .booking-popup {
    height: 90vh;
    overflow-y: auto;
  }

  .booking-content form {
    gap: 15px;
  }

  .input-group {
    width: 100%;
  }
}

/* =========================
   Mobile Styles (≤768px)
========================= */
@media (max-width: 768px) {

  /* hamburger */
  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 26px;
    height: 3px;
    background: #633825;
    border-radius: 3px;
  }

  /* navbar mobile */
  .navbar {
    position: fixed;
    top: 80px;
    left: 0;
    width: 40%;
    background: rgba(176, 137, 104, 0.9); /* ton thème */
    flex-direction: column;
    align-items: left;
    display: none;
    z-index: 999;
  }

  .navbar.active {
    display: flex;
  }

  .navbar a {
    padding: 16px 0;
    width: 100%;
    text-align: left;
    font-size: 16px;
  }

  .home-image img {
    width: 100%;
    height: auto;
  }


  .menu-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
  }

  .menu-toggle span {
    height: 3px;
    width: 25px;
    background: #633825;
    border-radius: 2px;
  }

  /* ===== Home Hero ===== */
  
  @media (max-width: 768px) {

  .home-hero {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 100vh;
    padding: 15px;
    overflow-x: hidden;
  }

  .home-image {
    width: 100%;
    order: -1; /* image en haut */
    margin-bottom: 20px;
  }

  .home-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 12px;
  }

  .home {
    width: 100%;
  }

  body {
    overflow-x: hidden;
  }
}


  .home-content h3, 
  .home-content h2 {
    font-size: 20px;
    text-align: center;
  }

  .home-sci a {
    font-size: 20px;
    margin: 0 5px;
  }

  /* Booking popup */
  .booking-popup {
    width: 95%;
    max-width: 350px;
    padding: 15px;
  }

  .booking-popup .booking-content h2 {
    font-size: 20px;
  }

  .booking-popup .input-group label,
  .booking-popup .input-group input,
  .booking-popup .input-group select,
  .booking-popup .input-group textarea {
    font-size: 14px;
  }

  .booking-popup .btn {
    font-size: 16px;
    padding: 10px;
  }

  /* ===== About Section ===== */
  .about-container {
    flex-direction: column;
    gap: 15px;
  }

  .about-image img {
    width: 100%;
    border-radius: 12px;
  }

  .about-text p {
    font-size: 14px;
  }

  /* ===== Rooms Section ===== */
  .rooms-content {
    flex-direction: column;
  }

  .room-card {
    width: 100%;
    margin-bottom: 20px;
  }

  .room-info h3 {
    font-size: 18px;
  }

  .room-info p {
    font-size: 14px;
  }

  .btn-details {
    font-size: 14px;
    padding: 8px 12px;
  }

  /* ===== Services Section ===== */
  .services-content {
    flex-direction: column;
    gap: 15px;
  }

  .service-box h3 {
    font-size: 16px;
  }

  .service-box p {
    font-size: 13px;
  }

  /* ===== Gallery Section ===== */
  .gallery-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .gallery-item img {
    width: 100%;
    height: auto;
  }

  .gallery-overlay h3.caption {
    font-size: 14px;
  }

  /* ===== Pricing Section ===== */
  .pricing-container {
    flex-direction: column;
    gap: 15px;
  }

  .pricing-card h2 {
    font-size: 18px;
  }

  .pricing-card ul li {
    font-size: 14px;
  }

  .pricing-card .offer-details {
    font-size: 14px;
  }

  /* ===== Contact Section ===== */
  .contact-grid {
    flex-direction: column;
  }

  .contact-card, 
  .contact-form-container {
    width: 100%;
  }

  .contact-form label,
  .contact-form input,
  .contact-form textarea {
    font-size: 14px;
  }

  .contact-form button {
    font-size: 16px;
    padding: 10px;
  }

  /* ===== Footer ===== */
  .footer-container {
    padding: 10px;
    text-align: center;
  }

  /* ===== Modals ===== */
  .modal-content {
    width: 90%;
    max-width: 350px;
    padding: 15px;
  }

  .modal-content h3 {
    font-size: 18px;
  }

  .modal-content p {
    font-size: 14px;
  }

  .modal-content table {
    font-size: 12px;
  }
}
