    /* ===== POLICES ET COULEURS ===== */
    :root {
      --noir: #1A1A1A;
      --blanc-casse: #F8F5F0;
      --or: #C6A969;
      --terre: #9C7C5C;
      --vert-sage: #A4B0A5;
      --transition: all 0.3s ease;
    }
    
    /* ===== RESET ===== */
    * { margin:0; padding:0; box-sizing:border-box; }
    body {
      font-family: 'Lato', sans-serif;
      line-height:1.7; 
      color: var(--noir); 
      background: var(--blanc-casse);
      scroll-behavior:smooth; 
    }
    img { pointer-events: none; }
    
    /* ===== HEADER ===== */
    header {
      position:fixed; top:0; width:100%; 
      background: rgba(26, 26, 26, 0.9); 
      backdrop-filter:blur(10px); 
      color: var(--blanc-casse);
      padding:1rem 5%; display:flex; justify-content:space-between; align-items:center; z-index:1000; transition:.3s;
      border-bottom: 1px solid rgba(198, 169, 105, 0.2);
    }
    header.scrolled { background:rgba(26,26,26,0.98); padding:0.8rem 5%; box-shadow:0 2px 20px rgba(0,0,0,0.1); }
    .logo { 
      font-family: 'Playfair Display', serif;
      font-size:2.2rem; 
      font-weight:600; 
      color: var(--or);
    }
    nav { display:flex; gap:1.5rem; }
    nav a { 
      color: var(--blanc-casse); 
      text-decoration:none; 
      font-weight:500; 
      padding:0.5rem 1rem; 
      position: relative;
      transition: var(--transition);
    }
    nav a:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 1px;
      background: var(--or);
      transition: var(--transition);
    }
    nav a:hover:after {
      width: 100%;
    }
    .admin-link {
      background: var(--or);
      color: var(--noir) !important;
      border-radius: 4px;
      padding: 0.5rem 1rem !important;
      font-weight: 600 !important;
    }
    .admin-link:hover {
      background: var(--blanc-casse);
    }
    .mobile-menu-toggle { display:none; background:none; border:none; color:var(--blanc-casse); font-size:1.5rem; cursor:pointer; }
    
    /* ===== HERO ===== */
    .hero {
      height:100vh;
      display:flex; align-items:center; justify-content:center; text-align:center; color: var(--blanc-casse);
      position: relative;
      margin-bottom: 0;
    }
    .hero-content {
      position: absolute;
      z-index: 10;
      max-width:800px; padding:0 2rem; animation:fadeInUp 1s ease;
    }
    .hero h1 { 
      font-family: 'Playfair Display', serif;
      font-size:4rem; 
      margin-bottom:1.5rem; 
      font-weight:600;
      text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    }
    .hero p { font-size:1.3rem; margin-bottom:2.5rem; }
    .btn-primary {
      background: transparent;
      color: var(--blanc-casse);
      border: 2px solid var(--or);
      padding:1rem 2.5rem;
      text-decoration:none; 
      font-weight:600; 
      letter-spacing: 1px;
      transition: var(--transition);
      position: relative;
      overflow: hidden;
      z-index: 1;
      display: inline-block;
    }
    .btn-primary:before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: var(--or);
      transition: var(--transition);
      z-index: -1;
    }
    .btn-primary:hover:before {
      left: 0;
    }
    
    /* ===== SECTIONS ===== */
    section { padding:5rem 5%; max-width:1400px; margin:auto; }
    .section-title {
      font-family: 'Playfair Display', serif;
      text-align:center; 
      font-size:2.8rem; 
      margin-bottom:2.5rem;
      color: var(--noir);
      position: relative;
    }
    .section-title:after {
      content: '';
      position: absolute;
      bottom: -15px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background: var(--or);
    }
    .section-subtitle { 
      text-align:center; 
      font-size:1.2rem; 
      color: var(--terre); 
      margin-bottom:3rem; 
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }
    
    /* ===== ABOUT ===== */
    .about { display:grid; grid-template-columns:1fr 1fr; gap:3rem; align-items:center; }
    .about img { width:100%; border-radius:5px; box-shadow:0 10px 30px rgba(0,0,0,0.1); transition: var(--transition); }
    .about img:hover { transform: translateY(-5px); box-shadow:0 15px 40px rgba(0,0,0,0.15); }
    .about h3 {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      margin-bottom: 1.5rem;
      color: var(--noir);
    }
    
    /* ===== SERVICES ===== */
    .services-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(250px,1fr)); gap:2rem; }
    .service-card {
      background:#fff; border-radius:5px; padding:2.5rem 2rem; text-align:center;
      box-shadow:0 5px 20px rgba(0,0,0,0.08); transition:var(--transition);
      border-bottom: 3px solid transparent;
    }
    .service-card:hover { 
      transform:translateY(-8px); 
      box-shadow:0 15px 30px rgba(0,0,0,0.12);
      border-bottom: 3px solid var(--or);
    }
    .service-card i { 
      font-size:2.5rem; 
      margin-bottom:1.5rem; 
      color: var(--or);
      transition: var(--transition);
    }
    .service-card:hover i {
      transform: scale(1.1);
    }
    .service-card h3 {
      font-family: 'Playfair Display', serif;
      margin-bottom: 1rem;
      color: var(--noir);
    }
    
    /* ===== ROOMS ===== */
    .rooms-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(350px,1fr)); gap:2rem; }
    .room-card {
      background:white; border-radius:5px; overflow:hidden; box-shadow:0 10px 30px rgba(0,0,0,0.1); transition:var(--transition);
    }
    .room-card:hover { transform:translateY(-10px); box-shadow:0 15px 30px rgba(0,0,0,0.12); }
    .room-image { width:100%; height:250px; object-fit:cover; transition:var(--transition); }
    .room-card:hover .room-image { transform:scale(1.05); }
    .room-content { padding:2rem; }
    .room-title { 
      font-family: 'Playfair Display', serif;
      font-size:1.6rem; 
      margin-bottom:.8rem; 
      color: var(--noir);
    }
    .room-description { color:#666; margin-bottom:1.5rem; }
    .room-price {
      font-size:1.5rem; font-weight:bold;
      color: var(--or);
    }
    
    /* ===== GALLERY ===== */
    .gallery-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:1rem; }
    .gallery-grid img { width:100%; border-radius:5px; height:200px; object-fit:cover; transition:var(--transition); }
    .gallery-grid img:hover { transform:scale(1.05); box-shadow:0 8px 25px rgba(0,0,0,0.15); }
    
    /* ===== RESERVATION ===== */
    .reservation-section {
      background: linear-gradient(rgba(26, 26, 26, 0.9), rgba(26, 26, 26, 0.9)), url('https://images.unsplash.com/photo-1560448204-603b3fc33ddc?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1200&q=80');
      background-size: cover;
      background-position: center;
      color:white; 
      border-radius:5px; 
      padding:4rem 3rem;
    }
    .reservation-section .section-title {
      color: white;
    }
    .reservation-section .section-title:after {
      background: var(--or);
    }
    .reservation-section .section-subtitle {
      color: rgba(255,255,255,0.8);
    }
    .reservation-form {
      display:grid; grid-template-columns:repeat(auto-fit,minmax(250px,1fr)); gap:1.5rem; max-width:1000px; margin:auto;
    }
    .form-group { display:flex; flex-direction:column; }
    .form-group label {
      margin-bottom: 0.5rem;
      font-weight: 500;
    }
    .form-group input, .form-group select { 
      padding:1.2rem; 
      border:none; 
      border-radius:2px; 
      background:rgba(248, 245, 240, 0.1);
      font-size:1rem; 
      color: var(--blanc-casse);
      border: 1px solid rgba(198, 169, 105, 0.3);
      transition: var(--transition);
    }
    .form-group input:focus, .form-group select:focus {
      border-color: var(--or);
      outline: none;
      background: rgba(248, 245, 240, 0.15);
    }
    .btn-reserve {
      grid-column:1/-1; 
      background: var(--or); 
      color: var(--noir); 
      padding:1.2rem; 
      border:none; 
      border-radius:2px;
      font-weight:600; 
      cursor:pointer; 
      transition:var(--transition);
      letter-spacing: 1px;
    }
    .btn-reserve:hover { 
      background: var(--blanc-casse);
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(0,0,0,.2);
    }
    
    .form-group select option {
      background: rgba(26, 26, 26, 0.95);
      color: var(--blanc-casse);
      padding: 10px;
    }
    
    .form-group select {
      color: var(--blanc-casse) !important;
    }
    
    /* ===== TESTIMONIALS ===== */
    .testimonials-container { background:#f8f9fa; border-radius:5px; padding:4rem; }
    .testimonials-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); gap:2rem; }
    .testimonial {
      background:white; border-radius:5px; padding:2.5rem; text-align:center; box-shadow:0 5px 20px rgba(0,0,0,.05);
      transition: var(--transition);
    }
    .testimonial:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0,0,0,.1);
    }
    .testimonial img { width:80px; height:80px; object-fit:cover; border-radius:50%; margin-bottom:1.5rem; border: 3px solid var(--or); }
    .testimonial h4 { 
      margin:.5rem 0; 
      font-family: 'Playfair Display', serif;
      color: var(--noir);
    }
    .stars { color:#f1c40f; margin:.5rem 0; font-size: 1.1rem; }
    
    /* ===== FAQ ===== */
    .faq-item {
      background:#fff; padding:1.5rem; border-radius:5px; margin-bottom:1rem; box-shadow:0 2px 20px rgba(0,0,0,0.05);
      transition: var(--transition);
      border-left: 3px solid transparent;
    }
    .faq-item:hover {
      border-left: 3px solid var(--or);
    }
    .faq-item h4 { 
      cursor:pointer; 
      display:flex; 
      justify-content:space-between; 
      align-items:center; 
      font-family: 'Playfair Display', serif;
      font-weight: 500;
    }
    .faq-item p { display:none; margin-top:1rem; color:#555; line-height: 1.6; }
    
    /* ===== CONTACT ===== */
    .contact-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); gap:2rem; margin-top:3rem; }
    .contact-card {
      background:white; padding:2.5rem 2rem; text-align:center; border-radius:5px; box-shadow:0 10px 20px rgba(0,0,0,.05);
      transition: var(--transition);
    }
    .contact-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(0,0,0,.1);
    }
    .contact-icon {
      font-size:2.5rem; 
      color: var(--or);
      margin-bottom:1.5rem;
    }
    .contact-card h3 {
      font-family: 'Playfair Display', serif;
      margin-bottom: 1rem;
      color: var(--noir);
    }
    
    /* ===== FOOTER ===== */
    footer { 
      background:#1a1a1a; 
      color:white; 
      text-align:center; 
      padding:3rem 2rem; 
      margin-top:5rem; 
    }
    footer h3 {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      color: var(--or);
      margin-bottom: 1rem;
    }
    .social-links { margin: 1.5rem 0; }
    .social-links a { 
      color:var(--blanc-casse); 
      margin:0 1rem; 
      font-size:1.5rem; 
      transition:var(--transition);
      display: inline-block;
    }
    .social-links a:hover { 
      color:var(--or); 
      transform: translateY(-3px);
    }
    
    /* ===== ANIMATIONS ===== */
    @keyframes fadeInUp {
      from { opacity:0; transform:translateY(20px); }
      to { opacity:1; transform:translateY(0); }
    }
    .fade-in { animation:fadeInUp .8s ease; }
    
    /* ===== MESSAGE DE RÉSERVATION ===== */
    .reservation-message {
      position: fixed;
      top: 20px;
      right: 20px;
      background: #2ecc71;
      color: white;
      padding: 15px 25px;
      border-radius: 5px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.2);
      z-index: 10000;
      animation: fadeInUp 0.5s ease;
      font-weight: 500;
      max-width: 400px;
    }
    
    .reservation-message a {
      color: white;
      text-decoration: underline;
      display: block;
      margin-top: 8px;
      font-weight: 600;
    }
    
    .email-error {
      background: #e74c3c;
      margin-top: 10px;
      padding: 10px;
      border-radius: 4px;
      font-size: 0.9rem;
    }
    
    .copy-whatsapp {
      background: #128C7E;
      color: white;
      border: none;
      padding: 8px 12px;
      border-radius: 4px;
      cursor: pointer;
      margin-top: 10px;
      font-size: 0.9rem;
      display: inline-block;
    }
    
    /* ===== STYLES POUR LE SLIDER ===== */
    #wowslider-container1 {
      width: 100%;
      height: 100vh;
      position: absolute;
      top: 0;
      left: 0;
      z-index: 1;
    }
    
    .ws_images ul {
      margin: 0 !important;
      padding: 0 !important;
    }
    
    .ws_bullets {
      bottom: 20px !important;
    }
    
    /* ===== RESPONSIVE ===== */
    @media(max-width:1100px) {
      .about { grid-template-columns:1fr; }
      .hero h1 { font-size: 3.2rem; }
    }
    @media(max-width:900px) {
      .section-title { font-size: 2.4rem; }
    }
    @media(max-width:768px) {
      .mobile-menu-toggle { display:block; }
      nav {
        display:none; position:absolute; top:100%; left:0; width:100%;
        background:#1a1a1a; flex-direction:column; padding:1rem 0;
        box-shadow: 0 5px 10px rgba(0,0,0,0.2);
      }
      nav.active { display:flex; }
      nav a {
        padding: 1rem 2rem;
        text-align: center;
      }
      nav a:after {
        display: none;
      }
      nav a:hover {
        background: rgba(198, 169, 105, 0.1);
      }
      .hero h1 { font-size:2.5rem; }
      .hero p { font-size: 1.1rem; }
      .section-title { font-size: 2.2rem; }
      .reservation-section { padding: 3rem 1.5rem; }
      
      #wowslider-container1 {
        height: 100vh;
      }
    }
    @media(max-width:480px) {
      .hero h1 { font-size: 2rem; }
      .section-title { font-size: 1.8rem; }
      .room-card, .services-grid, .testimonials-grid {
        grid-template-columns: 1fr;
      }
      .testimonials-container { padding: 2rem 1.5rem; }
      .reservation-message {
        left: 20px;
        right: 20px;
        max-width: none;
      }
    }
    
    /* Widget WhatsApp */
    .whatsapp-float {
      position: fixed;
      bottom: 25px;
      right: 25px;
      width: 60px;
      height: 60px;
      background: #25D366;
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
      z-index: 1000;
      border: none;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .whatsapp-float:hover {
      transform: scale(1.1);
      box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    }
    
    .whatsapp-widget {
      position: fixed;
      bottom: 100px;
      right: 25px;
      width: 320px;
      background: white;
      border-radius: 12px;
      box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
      z-index: 1000;
      overflow: hidden;
      transform: translateY(20px);
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
      font-family: 'Lato', sans-serif;
    }
    
    .whatsapp-widget.active {
      transform: translateY(0);
      opacity: 1;
      visibility: visible;
    }
    
    .whatsapp-header {
      background: #075E54;
      color: white;
      padding: 15px;
      display: flex;
      align-items: center;
      position: relative;
    }
    
    .whatsapp-avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--or);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 12px;
    }
    
    .whatsapp-avatar img {
      width: 24px;
      height: 24px;
    }
    
    .whatsapp-info h4 {
      margin: 0;
      font-size: 16px;
      font-weight: 600;
    }
    
    .whatsapp-info p {
      margin: 3px 0 0;
      font-size: 12px;
      opacity: 0.8;
    }
    
    .whatsapp-close {
      position: absolute;
      top: 15px;
      right: 15px;
      background: none;
      border: none;
      color: white;
      cursor: pointer;
      opacity: 0.7;
      transition: opacity 0.2s;
    }
    
    .whatsapp-close:hover {
      opacity: 1;
    }
    
    .whatsapp-body {
      padding: 15px;
      background: #f5f5f5;
      min-height: 120px;
      display: flex;
      align-items: flex-start;
    }
    
    .whatsapp-message {
      background: white;
      padding: 12px;
      border-radius: 8px;
      box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
      position: relative;
      max-width: 80%;
    }
    
    .whatsapp-message:after {
      content: '';
      position: absolute;
      left: -6px;
      top: 15px;
      width: 0;
      height: 0;
      border-top: 6px solid transparent;
      border-bottom: 6px solid transparent;
      border-right: 6px solid white;
    }
    
    .whatsapp-message p {
      margin: 0;
      font-size: 14px;
      line-height: 1.4;
    }
    
    .whatsapp-message span {
      font-size: 11px;
      color: #999;
      display: block;
      text-align: right;
      margin-top: 4px;
    }
    
    .whatsapp-footer {
      padding: 15px;
      background: white;
      border-top: 1px solid #eee;
    }
    
    .whatsapp-button {
      display: flex;
      align-items: center;
      justify-content: center;
      background: #25D366;
      color: white;
      text-decoration: none;
      padding: 12px;
      border-radius: 6px;
      font-weight: 600;
      font-size: 14px;
      transition: background 0.2s;
    }
    
    .whatsapp-button:hover {
      background: #128C7E;
    }
    
    .whatsapp-button i {
      margin-right: 8px;
      font-size: 18px;
    }
    
    @media (max-width: 480px) {
      .whatsapp-widget {
        width: 90%;
        right: 5%;
        left: 5%;
      }
      
      .whatsapp-float {
        bottom: 20px;
        right: 20px;
      }
    }
