 @import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&family=Playwrite+DE+SAS:wght@100..400&family=Saira+Stencil:ital,wght@0,100..900;1,100..900&display=swap');

 
 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    button, a { cursor: pointer; }

    :root {
      --primary-green: #1B5E3F;
      --primary-green-deep: #0E3D28;
      --primary-orange: #C27E46;
      --primary-orange-light: #D6965C;
      --primary-orange-soft: #FBE5D2;
      --dark-bg: #0A1510;
      --light-bg: #FBF7F0;
      --card-bg: #FFFFFF;
      --text-dark: #1E2F28;
      --text-light: #5A6E5E;
      --gold: #EFCD9B;
      --gold-light: #F9E2B7;
      --shadow-sm: 0 12px 30px rgba(0, 0, 0, 0.08);
      --shadow-md: 0 20px 35px -12px rgba(0, 0, 0, 0.15);
      --shadow-lg: 0 30px 50px -20px rgba(0, 0, 0, 0.25);
      --transition-smooth: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    }

    body {
      background-color: var(--light-bg);
      color: var(--text-dark);
      line-height: 1.5;
      scroll-behavior: smooth;
      overflow-x: hidden;
    }

    ::-webkit-scrollbar { width: 8px; }
    ::-webkit-scrollbar-track { background: #EADDCB; border-radius: 10px; }
    ::-webkit-scrollbar-thumb { background: var(--primary-orange); border-radius: 10px; }

    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 32px;
    }

    /* ========== NAVBAR MODERNE ========== */
    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: fixed;
      top: 20px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 1000;
      background: rgba(255, 252, 245, 0.96);
      backdrop-filter: blur(20px);
      border-radius: 80px;
      padding: 8px 36px;
      box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(194, 126, 70, 0.2);
      width: calc(100% - 40px);
      max-width: 1300px;
      transition: var(--transition-smooth);
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .logo img {
      height: 44px;
      width: 44px;
      border-radius: 30px;
      object-fit: cover;
      background: var(--primary-green);
    }
    .logo span {
      font-size: 1.6rem;
      font-weight: 800;
      background: linear-gradient(135deg, var(--primary-green), var(--primary-orange));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      letter-spacing: -0.3px;
    }

    .menu-toggle {
      display: none;
      background: none;
      border: none;
      font-size: 1.8rem;
      cursor: pointer;
      color: var(--primary-green);
      padding: 8px;
    }

    .nav-links {
      display: flex;
      gap: 2rem;
      list-style: none;
      align-items: center;
    }

    .nav-links li {
      position: relative;
    }

    .nav-links a {
      text-decoration: none;
      font-weight: 600;
      color: #2F4238;
      transition: 0.25s;
      font-size: 0.95rem;
      display: inline-block;
      padding: 8px 0;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: 0px;
      left: 0;
      width: 0;
      height: 2.5px;
      background: var(--primary-orange);
      transition: 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    }

    .nav-links a:hover::after { width: 100%; }
    .nav-links a:hover { color: var(--primary-orange); }

    .dropdown { position: relative; }
    .dropdown-menu {
      position: absolute;
      top: 40px;
      left: 0;
      background: rgba(255, 252, 245, 0.98);
      backdrop-filter: blur(16px);
      border-radius: 28px;
      padding: 12px 0;
      min-width: 200px;
      box-shadow: var(--shadow-md);
      list-style: none;
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: all 0.25s ease;
      border: 1px solid rgba(194, 126, 70, 0.3);
      z-index: 100;
    }
    .dropdown:hover .dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
    .dropdown-menu li { padding: 0; }
    .dropdown-menu a {
      display: block;
      padding: 10px 24px;
      color: #2F4238;
      font-weight: 500;
      transition: 0.2s;
    }
    .dropdown-menu a:hover {
      background: rgba(194, 126, 70, 0.1);
      color: var(--primary-orange);
      padding-left: 28px;
    }
    .dropdown-menu a::after { display: none; }

    /* ========== HERO ========== */
    .hero {
      position: relative;
      min-height: 90vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 140px 24px 160px;
      background: linear-gradient(135deg, rgba(5, 25, 18, 0.75), rgba(0, 0, 0, 0.8)), url('../Follio/Img/Nosybe/MO6.jpg');
      background-size: cover;
      background-position: center 30%;
      background-attachment: fixed;
      margin-bottom: 40px;
      border-radius: 0 0 100px 100px;
    }
    .hero-badge {
      background: rgba(0,0,0,0.5);
      backdrop-filter: blur(10px);
      padding: 8px 32px;
      border-radius: 60px;
      color: #FFE8CF;
      letter-spacing: 5px;
      font-size: 0.8rem;
      font-weight: 700;
      margin-bottom: 32px;
      border: 1px solid rgba(245, 190, 100, 0.6);
      animation: fadeUp 0.8s ease;
    }
    .hero h1 {
      font-size: 5.5rem;
      font-weight: 800;
      color: white;
      text-shadow: 0 20px 30px rgba(0,0,0,0.5);
      line-height: 1.05;
      animation: fadeUp 1s ease;
    }
    .hero h1 span {
      color: var(--gold);
      font-style: italic;
    }
    .hero p {
      max-width: 680px;
      margin-top: 28px;
      font-size: 1.2rem;
      background: rgba(0,0,0,0.45);
      backdrop-filter: blur(8px);
      padding: 14px 32px;
      border-radius: 80px;
      color: #FFF3E2;
      animation: fadeUp 1.2s ease;
    }
    @keyframes fadeUp {
      0% { opacity: 0; transform: translateY(30px);}
      100% { opacity: 1; transform: translateY(0);}
    }

    /* ========== SLIDER HORIZONTAL ========== */
    .slider-title {
      text-align: center;
      margin: 80px 0 30px;
    }
    .slider-title h2 {
      font-size: 2.8rem;
      color: var(--primary-green);
      margin-bottom: 12px;
    }
    .slider-title p {
      color: var(--text-light);
      font-size: 1.1rem;
      letter-spacing: 1px;
    }

    .slider-container {
      max-width: 1400px;
      width: 100%;
      margin: 20px auto 30px;
      position: relative;
      border-radius: 2rem;
    }

    .slider-track {
      display: flex;
      overflow-x: auto;
      scroll-behavior: smooth;
      scroll-snap-type: x mandatory;
      gap: 2rem;
      padding: 2rem 2rem;
      scrollbar-width: thin;
      cursor: grab;
    }
    .slider-track:active { cursor: grabbing; }
    .slider-track::-webkit-scrollbar { height: 6px; }
    .slider-track::-webkit-scrollbar-track { background: rgba(0, 0, 0, 0.08); border-radius: 10px; }
    .slider-track::-webkit-scrollbar-thumb { background: var(--primary-orange); border-radius: 10px; }

    .slider-card {
      flex: 0 0 360px;
      scroll-snap-align: start;
      background: white;
      border-radius: 2rem;
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: var(--transition-smooth);
      border: 1px solid rgba(194, 126, 70, 0.15);
    }
    .slider-card:hover {
      transform: translateY(-12px) scale(1.02);
      box-shadow: var(--shadow-lg);
      border-color: var(--primary-orange);
    }

    .card-img-strip {
      display: flex;
      height: 200px;
      overflow: hidden;
    }
    .card-img-strip img {
      width: 33.333%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .slider-card:hover .card-img-strip img {
      transform: scale(1.05);
    }

    .card-content {
      padding: 24px;
    }
    .badge {
      display: inline-block;
      background: linear-gradient(135deg, var(--primary-orange), #B45F2E);
      color: white;
      font-size: 0.7rem;
      font-weight: 700;
      padding: 5px 14px;
      border-radius: 30px;
      margin-bottom: 12px;
    }
    .card-content h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      color: var(--primary-green);
      margin-bottom: 8px;
    }
    .card-content p {
      color: var(--text-light);
      font-size: 0.85rem;
      margin: 8px 0;
    }
    .card-content ul {
      list-style: none;
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin: 16px 0;
    }
    .card-content ul li {
      font-size: 0.75rem;
      background: var(--primary-orange-soft);
      padding: 4px 12px;
      border-radius: 50px;
      color: var(--primary-orange);
      font-weight: 600;
    }
    .details {
      margin-top: 12px;
      padding-top: 12px;
      border-top: 1px solid #eee;
    }
    .details h4 {
      font-size: 0.8rem;
      color: var(--primary-green);
      margin-bottom: 8px;
    }

    .slider-nav {
      position: absolute;
      top: 50%;
      width: 100%;
      transform: translateY(-50%);
      display: flex;
      justify-content: space-between;
      padding: 0 1rem;
      pointer-events: none;
      z-index: 20;
    }
    .nav-btn {
      pointer-events: auto;
      background: rgba(0, 0, 0, 0.55);
      backdrop-filter: blur(8px);
      border: none;
      width: 52px;
      height: 52px;
      border-radius: 50%;
      font-size: 1.8rem;
      color: white;
      cursor: pointer;
      transition: 0.2s;
      box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }
    .nav-btn:hover {
      background: var(--primary-orange);
      transform: scale(1.1);
    }
    .slider-dots {
      display: flex;
      justify-content: center;
      gap: 0.7rem;
      margin: 20px 0 50px;
    }
    .dot {
      width: 8px;
      height: 8px;
      background: #ccc;
      border-radius: 10px;
      transition: all 0.2s;
      cursor: pointer;
    }
    .dot.active {
      background: var(--primary-orange);
      width: 28px;
    }

    /* ========== FORMULAIRE RÉSERVATION ========== */
    .booking-form-section {
      background: linear-gradient(125deg, #0E2F24, #041911);
      border-radius: 64px;
      padding: 56px 56px;
      margin: 60px 0;
      color: white;
      box-shadow: var(--shadow-lg);
    }
    .booking-form-section h2 {
      font-family: 'Playfair Display', serif;
      font-size: 2.4rem;
      color: var(--gold);
      margin-bottom: 12px;
    }
    .booking-form-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 24px;
      margin-top: 16px;
    }
    .form-group {
      flex: 1;
      min-width: 200px;
    }
    .form-group label {
      display: block;
      margin-bottom: 8px;
      font-weight: 600;
      font-size: 0.85rem;
    }
    .form-group input, .form-group select {
      width: 100%;
      padding: 14px 20px;
      border-radius: 60px;
      border: none;
      background: #FEF8F0;
      font-family: inherit;
    }
    .booking-btn {
      background: var(--primary-orange);
      border: none;
      padding: 16px 32px;
      border-radius: 60px;
      font-weight: 800;
      font-size: 1rem;
      cursor: pointer;
      color: white;
      margin-top: 32px;
      width: 100%;
      transition: 0.3s;
    }
    .booking-btn:hover {
      background: var(--primary-orange-light);
      transform: translateY(-2px);
      box-shadow: 0 12px 20px -10px rgba(194,126,70,0.5);
    }

    /* ========== POURQUOI NOUS ========== */
    .why-section {
      background: #FCF5E8;
      border-radius: 64px;
      padding: 70px 48px;
      margin: 40px 0;
    }
    .why-container {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 40px;
      max-width: 1100px;
      margin: auto;
    }
    .why-box {
      display: flex;
      gap: 24px;
      background: white;
      padding: 32px;
      border-radius: 48px;
      transition: 0.3s;
    }
    .why-box:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-md);
    }
    .why-box i {
      font-size: 42px;
      color: var(--primary-orange);
    }

    /* ========== TÉMOIGNAGES ========== */
    .testimonials {
      background: #F0E5D6;
      border-radius: 64px;
      padding: 70px 56px;
      margin: 60px 0;
    }
    .testimonial-grid {
      display: flex;
      gap: 35px;
      flex-wrap: wrap;
    }
    .testi-item {
      background: #FFFEF9;
      padding: 38px;
      border-radius: 48px;
      flex: 1;
      border-left: 6px solid var(--primary-orange);
      transition: 0.3s;
    }
    .testi-item:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-md);
    }

    /* HERO IMAGE */
    .hero-image {
      width: 100%;
      height: 90vh;
      overflow: hidden;
      position: relative;
    }
    .hero-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 6s ease;
    }
    .hero-image:hover img {
      transform: scale(1.1);
    }
    .hero-image::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.3);
    }
    @media (max-width: 768px) {
      .hero-image { height: 60vh; }
    }

    /* ========== FAQ ========== */
    .faq-section {
      padding: 50px 0 70px;
    }
    .faq-list {
      max-width: 900px;
      margin: 0 auto;
    }
    .faq-item {
      background: white;
      border-radius: 40px;
      margin-bottom: 20px;
      padding: 24px 32px;
      cursor: pointer;
      transition: 0.3s;
    }
    .faq-item:hover {
      border-left: 4px solid var(--primary-orange);
      box-shadow: var(--shadow-sm);
    }
    .faq-question {
      font-weight: 800;
      display: flex;
      justify-content: space-between;
      color: var(--primary-green);
    }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: 0.4s;
    }
    .faq-item.active .faq-answer {
      max-height: 120px;
      margin-top: 20px;
    }

    /* ========== FOOTER ========== */
    footer {
      background: var(--dark-bg);
      color: #EDE3D4;
      margin-top: 80px;
      border-radius: 70px 70px 0 0;
      padding: 60px 56px 40px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 45px;
    }
    .social-icons a {
      color: #F3E5D2;
      font-size: 1.8rem;
      margin-right: 24px;
      transition: 0.2s;
    }
    .social-icons a:hover {
      color: var(--primary-orange);
      transform: translateY(-4px);
    }
    .back-to-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 50px;
      height: 50px;
      background: var(--primary-orange);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s;
      z-index: 1000;
      border: none;
    }
    .back-to-top.show {
      opacity: 1;
      visibility: visible;
    }

    @media (max-width: 950px) {
      .menu-toggle { display: block; }
      .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        background: rgba(255, 252, 245, 0.98);
        border-radius: 32px;
        padding: 20px;
        margin-top: 16px;
      }
      .nav-links.active { display: flex; }
      .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
      }
      .dropdown.active .dropdown-menu { display: block; }
      .navbar { flex-direction: column; padding: 16px 24px; }
      .hero h1 { font-size: 3rem; }
      .why-container { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 768px) {
      .container { padding: 0 20px; }
      .slider-card { flex: 0 0 290px; }
      .hero h1 { font-size: 2.2rem; }
      .booking-form-section { padding: 35px 25px; }
      .footer-grid { grid-template-columns: 1fr; text-align: center; }
    }

    /* Animations supplémentaires */
    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }
    .hero-badge {
      animation: fadeUp 0.8s ease, float 3s ease-in-out infinite;
    }
    .booking-btn i {
      margin-right: 8px;
      transition: transform 0.3s;
    }
    .booking-btn:hover i {
      transform: translateX(5px);
    }
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      margin-bottom: 2rem;
      color: var(--primary-green);
    }