  /* ==== VARIABLES ET RÉINITIALISATION ==== */
    :root {
      --primary: #d16004;
      --primary-dark: #b66700;
      --secondary: #0077b6;
      --secondary-dark: #023e8a;
      --dark: #01070a;
      --light: #f9f9f9;
      --accent: #ce4109;
      --accent-hover: #ad5705;
      --sand: #f5d7a1;
      --ocean-light: #2a4d8e;
      --ocean-dark: #1a2a6c;
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    
    body {
      background: linear-gradient(135deg, var(--ocean-dark), var(--ocean-light));
      color: var(--light);
      min-height: 100vh;
      overflow-x: hidden;
      position: relative;
    }
    
    /* ==== ANIMATIONS ==== */
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }
    
    @keyframes slideUp {
      from { 
        opacity: 0;
        transform: translateY(40px);
      }
      to { 
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    @keyframes float {
      0% { transform: translateY(0px); }
      50% { transform: translateY(-10px); }
      100% { transform: translateY(0px); }
    }
    
    @keyframes waterRipple {
      0% { transform: scale(1); opacity: 1; }
      100% { transform: scale(1.5); opacity: 0; }
    }
    
    @keyframes waveAnimation {
      0% { transform: translateX(0); }
      100% { transform: translateX(-100%); }
    }
    
    @keyframes pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.05); }
      100% { transform: scale(1); }
    }

    /* ==== NAVBAR ==== */
    .navbar {
      position: fixed;
      top: 0;
      width: 100%;
      background-color: var(--dark);
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 30px;
      box-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
      z-index: 1000;
      transition: all 0.4s ease;
    }
    
    .navbar.scrolled {
      padding: 8px 20px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    }
    
    .logo img {
      height: 50px;
      transition: transform 0.3s ease;
    }
    
    .logo:hover img {
      transform: rotate(10deg);
    }
    
    .nav-links {
      display: flex;
      list-style: none;
      gap: 25px;
    }
    
    .nav-links li a {
      color: var(--accent);
      text-decoration: none;
      font-weight: 600;
      font-size: 1.1rem;
      transition: all 0.3s ease;
      position: relative;
      padding: 5px 0;
    }
    
    .nav-links li a:after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: 0;
      left: 0;
      background-color: var(--accent-hover);
      transition: width 0.3s ease;
    }
    
    .nav-links li a:hover {
      color: var(--accent-hover);
    }
    
    .nav-links li a:hover:after {
      width: 100%;
    }
    
    /* ==== HERO SECTION ==== */
    .hero {
      height: 70vh;
      position: relative;
      overflow: hidden;
      margin-top: 74px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .background-video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
      filter: brightness(0.7);
    }
    
    .overlay {
      text-align: center;
      max-width: 800px;
      padding: 30px;
      z-index: 2;
      animation: slideUp 1s ease-out forwards;
      opacity: 0;
      background: rgba(0, 0, 0, 0.4);
      border-radius: 15px;
      backdrop-filter: blur(5px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    
    .overlay h1 {
      font-size: 3.5rem;
      margin-bottom: 20px;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
      color: var(--light);
      font-family: 'Dancing Script', cursive;
    }
    
    /* ==== INTRO SECTION ==== */
    .intro {
      text-align: center;
      padding: 80px 30px;
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
    }
    
    .intro h2 {
      font-size: 2.5rem;
      margin-bottom: 25px;
      color: var(--light);
      position: relative;
      display: inline-block;
    }
    
    .intro h2:after {
      content: '';
      position: absolute;
      bottom: -15px;
      left: 50%;
      transform: translateX(-50%);
      width: 100px;
      height: 4px;
      background: var(--primary);
      border-radius: 2px;
    }
    
    .intro p {
      font-size: 1.2rem;
      line-height: 1.8;
      max-width: 800px;
      margin: 30px auto 0;
      color: rgba(255, 255, 255, 0.9);
    }
    
    /* ==== ACTIVITES SECTION ==== */
    .produits {
      padding: 0 30px 80px;
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 40px;
    }
    
    .produit {
      background: rgba(255, 255, 255, 0.08);
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
      transition: all 0.4s ease;
      opacity: 0;
      transform: translateY(30px);
      animation: slideUp 0.8s forwards;
      backdrop-filter: blur(10px);
    }
    
    .produit:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    }
    
    .carousel-container {
      position: relative;
      height: 250px;
      overflow: hidden;
    }
    
    .carousel {
      width: 100%;
      height: 100%;
      position: relative;
    }
    
    .carousel img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0;
      transition: opacity 1.2s ease-in-out;
    }
    
    .carousel img.active {
      opacity: 1;
    }
    
    .carousel-nav {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 10px;
      z-index: 10;
    }
    
    .carousel-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background-color: rgba(255, 255, 255, 0.5);
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .carousel-dot.active {
      background-color: white;
      transform: scale(1.2);
    }
    
    .texte {
      padding: 25px;
    }
    
    .texte h3 {
      font-size: 1.8rem;
      margin-bottom: 15px;
      color: var(--light);
      position: relative;
      display: inline-block;
    }
    
    .texte h3:after {
      content: '';
      position: absolute;
      bottom: -8px;
      left: 0;
      width: 50%;
      height: 3px;
      background: var(--primary);
      border-radius: 2px;
    }
    
    .texte p {
      margin: 15px 0;
      font-size: 1.1rem;
      line-height: 1.7;
      color: rgba(255, 255, 255, 0.9);
    }
    
    .price-tag {
      display: inline-block;
      background: var(--primary);
      color: white;
      padding: 8px 20px;
      border-radius: 20px;
      font-weight: 600;
      margin-top: 10px;
      box-shadow: 0 4px 15px rgba(209, 96, 4, 0.4);
      transition: all 0.3s ease;
    }
    
    .produit:hover .price-tag {
      transform: scale(1.05);
      background: var(--primary-dark);
    }
    
    /* ==== CARTE SECTION ==== */
    .carte-section {
      padding: 80px 30px;
      background: linear-gradient(135deg, var(--ocean-light), var(--ocean-dark));
      text-align: center;
      position: relative;
    }
    
    .carte-section h2 {
      font-size: 2.5rem;
      margin-bottom: 30px;
      color: var(--light);
      position: relative;
      display: inline-block;
    }
    
    .carte-section h2:after {
      content: '';
      position: absolute;
      bottom: -15px;
      left: 50%;
      transform: translateX(-50%);
      width: 100px;
      height: 4px;
      background: var(--primary);
      border-radius: 2px;
    }
    
    #map {
      width: 100%;
      height: 500px;
      border-radius: 15px;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
      margin: 30px auto 0;
      max-width: 1000px;
      border: 5px solid var(--light);
    }
    
    /* ==== RESERVATION SECTION ==== */
    .reservation-section {
      padding: 80px 30px;
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 40px;
      max-width: 1200px;
      margin: 0 auto;
    }
    
    .formulaire {
      flex: 1;
      min-width: 350px;
      background: rgba(255, 255, 255, 0.1);
      padding: 40px;
      border-radius: 20px;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
      backdrop-filter: blur(10px);
    }
    
    .formulaire h2 {
      color: var(--light);
      margin-bottom: 25px;
      font-size: 1.8rem;
      text-align: center;
      position: relative;
    }
    
    .formulaire h2:after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background: var(--primary);
      border-radius: 2px;
    }
    
    .formulaire form {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    
    .formulaire label {
      font-weight: 600;
      color: var(--light);
      margin-bottom: 5px;
      display: block;
    }
    
    .formulaire input,
    .formulaire select,
    .formulaire textarea {
      padding: 14px;
      border: none;
      border-radius: 8px;
      font-size: 1rem;
      background: rgba(255, 255, 255, 0.9);
      transition: all 0.3s ease;
      width: 100%;
      font-family: inherit;
    }
    
    .formulaire input:focus,
    .formulaire select:focus,
    .formulaire textarea:focus {
      outline: none;
      box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.4);
      background: white;
    }
    
    .formulaire button {
      padding: 14px;
      background: var(--primary);
      color: white;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      font-weight: 600;
      font-size: 1.1rem;
      transition: all 0.3s ease;
      margin-top: 10px;
      position: relative;
      overflow: hidden;
    }
    
    .formulaire button:before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
      transition: 0.5s;
    }
    
    .formulaire button:hover {
      background: var(--primary-dark);
      transform: translateY(-3px);
    }
    
    .formulaire button:hover:before {
      left: 100%;
    }
    
    /* ==== RESEAUX SECTION ==== */
    .reseaux {
      flex: 1;
      min-width: 350px;
      background: rgba(255, 255, 255, 0.1);
      padding: 40px;
      border-radius: 20px;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
      backdrop-filter: blur(10px);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }
    
    .reseaux h3 {
      margin-bottom: 25px;
      color: var(--light);
      font-size: 1.8rem;
      position: relative;
    }
    
    .reseaux h3:after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background: var(--primary);
      border-radius: 2px;
    }
    
    .social-icons {
      display: flex;
      gap: 25px;
      justify-content: center;
      margin-top: 20px;
    }
    
    .social-icons a {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 70px;
      height: 70px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      transition: all 0.4s ease;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      position: relative;
      overflow: hidden;
    }
    
    .social-icons a:before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
      transition: 0.5s;
    }
    
    .social-icons a:hover {
      transform: translateY(-8px) scale(1.1);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
      background: var(--primary);
    }
    
    .social-icons a:hover:before {
      left: 100%;
    }
    
    .social-icons img {
      width: 35px;
      height: 35px;
      filter: brightness(0) invert(1);
    }
    
    /* ==== FOOTER ==== */
    footer {
      background: var(--dark);
      color: white;
      text-align: center;
      padding: 25px;
      font-size: 1.1rem;
      position: relative;
      z-index: 2;
    }
    
    /* ==== ANIMATIONS DE FOND ==== */
    .ocean {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 80px;
      overflow: hidden;
      z-index: -1;
    }
    
    .wave {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 200%;
      height: 100%;
      background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg"><path d="M0 0v46.29c47.79 22.2 103.59 32.17 158 28 70.36-5.37 136.33-33.31 206.8-37.5 73.84-4.36 147.54 16.88 218.2 35.26 69.27 18 138.3 24.88 209.4 13.08 36.15-6 69.85-17.84 104.45-29.34C989.49 25 1113-14.29 1200 52.47V0z" fill="rgba(255,255,255,0.07)"/></svg>') repeat-x;
      background-size: 1200px 100px;
      animation: waveAnimation 18s linear infinite;
    }
    
    .wave:nth-child(2) {
      animation-duration: 20s;
      animation-delay: -5s;
      opacity: 0.5;
      bottom: 10px;
    }
    
    .wave:nth-child(3) {
      animation-duration: 25s;
      animation-delay: -2s;
      opacity: 0.3;
      bottom: 15px;
    }
    
    .floating-element {
      position: absolute;
      z-index: -1;
      opacity: 0.2;
      animation: float 8s ease-in-out infinite;
      font-size: 40px;
      pointer-events: none;
    }
    
    .floating-element:nth-child(1) {
      top: 10%;
      left: 5%;
      animation-delay: 0s;
    }
    
    .floating-element:nth-child(2) {
      top: 25%;
      right: 10%;
      animation-delay: 2s;
      animation-duration: 10s;
    }
    
    .floating-element:nth-child(3) {
      bottom: 30%;
      left: 15%;
      animation-delay: 4s;
      animation-duration: 12s;
    }
    
    /* ==== RESPONSIVE ==== */
    @media (max-width: 1000px) {
      .overlay h1 {
        font-size: 2.8rem;
      }
      
      .produits {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      }
    }
    
    @media (max-width: 768px) {
      .navbar {
        flex-direction: column;
        padding: 15px;
      }
      
      .nav-links {
        margin-top: 15px;
        gap: 15px;
      }
      
      .hero {
        height: 60vh;
      }
      
      .overlay h1 {
        font-size: 2.2rem;
      }
      
      .intro h2, .carte-section h2 {
        font-size: 2rem;
      }
      
      .reservation-section {
        flex-direction: column;
        align-items: center;
      }
      
      .formulaire, .reseaux {
        width: 100%;
      }
    }
    
    @media (max-width: 480px) {
      .overlay h1 {
        font-size: 1.8rem;
      }
      
      .intro h2, .carte-section h2 {
        font-size: 1.8rem;
      }
      
      .produit h3 {
        font-size: 1.5rem;
      }
    }