/* =========================================
   1. VARIABLES & RESET PREMIUM
   ========================================= */
:root {
  --bg-color: #fdfcfb;
  --bg-secondary: #f4ece7;
  --text-main: #4a4a4a;
  --text-light: #7a7a7a;
  --gold-main: #c5a059;
  --gold-hover: #b08d4b;
  --white: #ffffff;
  --font-body: 'Poppins', sans-serif;
  --font-title: 'Playfair Display', serif;
  --shadow-soft: 0 20px 60px rgba(0,0,0,0.15);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font-body); background: var(--bg-color); color: var(--text-main); line-height: 1.7; overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }

/* =========================================
   2. HEADER
   ========================================= */
.header { position: fixed; top: 0; left: 0; width: 100%; background: rgba(255, 255, 255, 0.98); padding: 15px 0; z-index: 1000; border-bottom: 1px solid rgba(0,0,0,0.03); transition: 0.4s; }
.header.shrink { padding: 8px 0; box-shadow: 0 5px 20px rgba(0,0,0,0.03); }
.navbar { max-width: 1200px; margin: auto; display: flex; justify-content: space-between; align-items: center; padding: 0 25px; }
.nav-logo img { height: 45px; transition: 0.3s; }
.header.shrink .nav-logo img { height: 38px; }
.nav-links { display: flex; gap: 30px; }
.nav-links li a { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-main); font-weight: 500; }
.nav-links li a:hover { color: var(--gold-main); }
.btn-nav { padding: 8px 20px; background: var(--text-main); color: #fff !important; border-radius: 30px; }
.btn-nav:hover { background: var(--gold-main); }
.hamburger { display: none; cursor: pointer; }
.bar { display: block; width: 25px; height: 2px; background: var(--text-main); margin: 6px auto; transition: 0.3s; }

@media(max-width: 900px) {
  .hamburger { display: block; }
  .nav-links { position: fixed; top: 70px; right: -100%; height: 100vh; flex-direction: column; background: #fff; width: 80%; padding: 50px 0; box-shadow: -5px 0 20px rgba(0,0,0,0.05); transition: 0.4s; }
  .nav-links.show { right: 0; }
  .nav-links li { margin: 15px 0; text-align: center; }
  .hamburger.active .bar:nth-child(2) { opacity: 0; }
  .hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

/* =========================================
   3. HERO ACCUEIL
   ========================================= */
.hero-modern { display: flex; align-items: center; justify-content: space-between; max-width: 1100px; margin: 0 auto; padding: 160px 20px 80px; gap: 40px; }
.hero-content { flex: 1; z-index: 2; }
.subtitle { font-size: 0.8rem; letter-spacing: 3px; color: var(--gold-main); text-transform: uppercase; display: block; margin-bottom: 15px; }
.hero-content h1 { font-family: var(--font-title); font-size: 3.5rem; line-height: 1.1; margin-bottom: 20px; }
.gold-text { font-style: italic; color: var(--gold-main); }
.hero-content p { color: var(--text-light); margin-bottom: 30px; max-width: 450px; }
.hero-buttons { display: flex; gap: 15px; }
.mini-features { margin-top: 30px; font-size: 0.8rem; color: var(--gold-main); font-weight: 600; text-transform: uppercase; display: flex; gap: 20px; }

.hero-visual { flex: 1; display: flex; justify-content: center; position: relative; }
.slideshow-container { width: 100%; max-width: 380px; aspect-ratio: 4/5; border-radius: 180px 180px 20px 20px; overflow: hidden; position: relative; border: 8px solid #fff; box-shadow: var(--shadow-soft); z-index: 2; }
.slide { width: 100%; height: 100%; display: none; }
.slide.active { display: block; animation: zoomSoft 6s infinite alternate; }
.slide img { width: 100%; height: 100%; object-fit: cover; }
@keyframes zoomSoft { 0% { transform: scale(1); } 100% { transform: scale(1.05); } }
.deco-circle { position: absolute; top: -20px; right: -20px; width: 250px; height: 250px; background: var(--bg-secondary); border-radius: 50%; z-index: 1; }
.slider-nav { position: absolute; bottom: 15px; width: 100%; display: flex; justify-content: center; gap: 10px; z-index: 10; }
.dot { width: 8px; height: 8px; background: rgba(255,255,255,0.5); border-radius: 50%; cursor: pointer; }
.dot.active { background: #fff; transform: scale(1.2); }
.prev, .next { background: none; border: none; color: #fff; cursor: pointer; opacity: 0.8; }

@media (max-width: 900px) {
  .hero-modern { flex-direction: column-reverse; text-align: center; padding-top: 100px; }
  .hero-content h1 { font-size: 2.5rem; }
  .hero-buttons { justify-content: center; }
  .mini-features { justify-content: center; }
  .slideshow-container { max-width: 300px; border-radius: 140px 140px 20px 20px; }
}

/* =========================================
   4. SECTIONS & CARDS (3x3)
   ========================================= */
.values-banner { display: flex; justify-content: center; gap: 40px; padding: 40px 20px; background: var(--bg-secondary); flex-wrap: wrap; margin-bottom: 50px; }
.value-item h3 { font-family: var(--font-title); font-size: 1.1rem; margin-bottom: 5px; }
.value-item p { font-size: 0.9rem; color: var(--text-light); }
.about-section, .services-section { padding: 60px 20px; max-width: 1100px; margin: auto; }
h2 { font-family: var(--font-title); font-size: 2.2rem; text-align: center; margin-bottom: 10px; }
.section-header { text-align: center; margin-bottom: 50px; }
.about-text { text-align: center; max-width: 700px; margin: 0 auto 30px; font-size: 1.05rem; }
.signature-img { height: 50px; margin: auto; opacity: 0.7; }

/* Grille 3x3 */
.grid { display: grid; grid-template-columns: 1fr; gap: 25px; max-width: 1100px; margin: 0 auto; }
@media (min-width: 600px) { .grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .grid { grid-template-columns: repeat(3, 1fr); } }

.card { background: #fff; border-radius: 10px; overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,0.03); border: 1px solid rgba(0,0,0,0.03); transition: 0.4s; display: flex; flex-direction: column; }
.card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.08); border-color: rgba(197, 160, 89, 0.3); }
.card-image { height: 200px; overflow: hidden; }
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: 0.7s; }
.card:hover .card-image img { transform: scale(1.05); }
.card-content { padding: 20px; text-align: center; flex-grow: 1; display: flex; flex-direction: column; justify-content: space-between; }
.card-content h3 { font-family: var(--font-title); font-size: 1.25rem; margin-bottom: 8px; }
.card-content p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 15px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.card-content .prix { display: inline-block; font-weight: 500; background: var(--bg-secondary); padding: 4px 12px; border-radius: 15px; font-size: 0.9rem; margin-bottom: 15px; }
.link-arrow { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gold-main); margin-top: auto; }

/* =========================================
   5. BOUTONS & ALERTE
   ========================================= */
.btn { display: inline-block; padding: 12px 30px; border-radius: 40px; font-size: 0.9rem; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; border: none; cursor: pointer; transition: 0.3s; }
.btn-primary { background: var(--text-main); color: #fff; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.btn-primary:hover { background: var(--gold-main); transform: translateY(-2px); }
.btn-outline { background: transparent; border: 1px solid var(--text-main); margin-left: 10px; }
.full-width { width: 100%; display: block; text-align: center; max-width: 350px; margin: 0 auto; }
.sticky-cta { margin-top: 50px; padding-top: 20px; text-align: center; }
.deposit-alert { font-size: 0.8rem; color: #8a6d3b; background: #fcf8e3; border: 1px solid #faebcc; padding: 8px 15px; border-radius: 6px; text-align: center; margin: 15px auto 0; max-width: 350px; display: flex; align-items: center; justify-content: center; gap: 8px; }
.deposit-alert::before { content: 'ⓘ'; font-weight: bold; font-size: 1rem; }

/* =========================================
   6. PAGE SERVICE
   ========================================= */
.main-wrapper.service-page { padding-top: 130px; max-width: 1000px; margin: 0 auto 50px; padding-left: 20px; padding-right: 20px;}
.service-header { text-align: center; margin-bottom: 40px; }
.service-header .category { text-transform: uppercase; font-size: 0.75rem; letter-spacing: 2px; color: var(--text-light); display: block; margin-bottom: 5px; }
.service-header .title { font-size: 2rem; margin-bottom: 8px; font-family: var(--font-title); }
.service-header .price-tag { font-family: var(--font-body); font-size: 1.2rem; color: var(--text-main); font-weight: 500; }
.separator { color: var(--gold-main); margin: 0 10px; }

.service-split { display: flex; flex-direction: column; gap: 30px; align-items: center; margin-bottom: 40px; }
.hero-img { width: 100%; max-width: 250px; aspect-ratio: 4/5; object-fit: cover; border-radius: 12px; box-shadow: 0 15px 35px rgba(0,0,0,0.1); }
.intro-content { width: 100%; text-align: center; }
@media (min-width: 768px) {
  .service-split { flex-direction: row; align-items: flex-start; gap: 40px; }
  .hero-img { margin: 0; max-width: 250px; flex-shrink: 0; }
  .intro-content { text-align: left; padding-top: 10px; }
}

.intro-text { font-size: 1rem; line-height: 1.7; margin-bottom: 20px; }
.bg-light { background: #fcfbf9; margin: 30px 0; padding: 30px 20px; border-top: 1px solid rgba(0,0,0,0.03); border-bottom: 1px solid rgba(0,0,0,0.03); text-align: left;}
.styled-list li { position: relative; padding-left: 30px; margin-bottom: 12px; font-size: 0.95rem; }
.styled-list li::before { content: '✔'; position: absolute; left: 0; top: 0; color: var(--gold-main); }
.process-list { list-style: none; counter-reset: my-counter; max-width: 600px; margin: auto; }
.process-list li { position: relative; padding-left: 45px; margin-bottom: 15px; text-align: left; }
.process-list li::before { counter-increment: my-counter; content: counter(my-counter); position: absolute; left: 0; top: 0; width: 28px; height: 28px; border-radius: 50%; background: var(--bg-secondary); color: var(--gold-dark); text-align: center; line-height: 28px; font-weight: bold; font-family: var(--font-title); }
.back-home { display: block; text-align: center; margin-top: 30px; color: var(--text-light); font-size: 0.9rem; }
.back-home:hover { color: var(--gold-main); }

/* =========================================
   7. DESIGN MODERNE : RÉSERVATION & CONTACT
   ========================================= */
.cta-reservation-modern {
  margin: 40px auto 0; padding: 40px 20px 30px;
  background: linear-gradient(135deg, #fffcf9 0%, #f7f2ee 100%);
  border-radius: 20px; text-align: center;
  border: 1px solid rgba(197, 160, 89, 0.1); box-shadow: 0 20px 40px rgba(0,0,0,0.03);
  max-width: 900px;
}
.cta-content h2 { font-family: var(--font-title); font-size: 2rem; color: var(--text-main); margin-bottom: 10px; }
.cta-subtitle { font-size: 1.1rem; color: var(--text-light); margin-bottom: 30px; }
.reservation-buttons-row { display: flex; justify-content: center; align-items: center; gap: 20px; flex-wrap: wrap; margin-bottom: 30px; }
.btn-gold { background: var(--gold-main); color: white; padding: 15px 35px; border-radius: 50px; font-weight: 500; letter-spacing: 1px; box-shadow: 0 10px 20px rgba(197, 160, 89, 0.25); transition: transform 0.3s, box-shadow 0.3s; }
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 15px 25px rgba(197, 160, 89, 0.4); }
.btn-whatsapp { background: #25D366; color: white; padding: 15px 30px; border-radius: 50px; font-weight: 500; display: flex; align-items: center; gap: 10px; box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2); transition: transform 0.3s; }
.btn-whatsapp:hover { transform: translateY(-3px); }
.policy-note { display: inline-flex; align-items: center; gap: 10px; background: #fff; padding: 10px 20px; border-radius: 30px; font-size: 0.85rem; color: var(--text-light); border: 1px solid #eee; }
.policy-note .icon { background: var(--bg-secondary); color: var(--gold-main); width: 20px; height: 20px; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-weight: bold; font-size: 0.7rem; font-family: serif; }

/* =========================================
   8. (ANCIEN FOOTER) REMPLACÉ PAR LE 9
   ========================================= */
footer { background: transparent; color: inherit; padding: 0; text-align: left; margin-top: 0; }

/* =========================================
   9. DESIGN PREMIUM (CONTACT & FOOTER)
   ========================================= */

/* Section Contact Premium */
.contact-premium {
  padding: 80px 20px;
  background: #fff;
}

.container-premium {
  max-width: 1100px;
  margin: 0 auto;
}

.subtitle-premium {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-top: -10px;
  margin-bottom: 40px;
  text-align: center;
}

/* Grille de 3 cartes */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.contact-card {
  background: #fdfcfb; /* Fond très léger */
  border: 1px solid rgba(0,0,0,0.05);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(197, 160, 89, 0.15); /* Ombre dorée légère */
  border-color: rgba(197, 160, 89, 0.3);
}

.icon-circle {
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  color: var(--gold-main);
}

.contact-card h3 {
  font-family: var(--font-title);
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--text-main);
}

.contact-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
}

.small-note {
  font-size: 0.85rem;
  opacity: 0.8;
}

.link-gold {
  color: var(--gold-main);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  border-bottom: 1px solid transparent;
}

.link-gold:hover {
  border-bottom-color: var(--gold-main);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-btn {
  padding: 8px 16px;
  border: 1px solid #eee;
  border-radius: 20px;
  font-size: 0.85rem;
  background: #fff;
  color: var(--text-main);
  font-weight: 500;
}

.social-btn:hover {
  background: var(--gold-main);
  color: #fff;
  border-color: var(--gold-main);
}

/* Footer Premium Structure */
.footer-premium {
  background: #1a1a1a; /* Fond noir profond pour le luxe */
  color: #fff;
  padding-top: 60px;
  margin-top: 0;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr; /* Colonne logo plus large */
  gap: 40px;
  padding: 0 20px 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
  filter: brightness(0) invert(1); /* Logo blanc */
  height: 40px;
  margin-bottom: 20px;
}

.footer-desc {
  font-size: 0.9rem;
  color: #aaa;
  line-height: 1.8;
  max-width: 350px;
}

.footer-col h4 {
  font-family: var(--font-title);
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: var(--gold-main);
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a, .footer-links span {
  color: #ccc;
  font-size: 0.9rem;
  transition: 0.3s;
}

.footer-links a:hover {
  color: var(--gold-main);
  padding-left: 5px; /* Petit effet de mouvement */
}

.footer-bottom {
  text-align: center;
  padding: 20px;
  background: #111;
  font-size: 0.8rem;
  color: #666;
}

.cancellation-policy {
  margin-top: 5px;
  color: #888;
}

/* Responsive Mobile */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr; /* Une seule colonne sur mobile */
    text-align: center;
    gap: 30px;
  }
  
  .footer-desc {
    margin: 0 auto;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
}