@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Playwrite+DK+Loopet:wght@100..400&display=swap');
 /* ============== RESET ============== */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    /* ============== BASE ============== */
    body {
      line-height: 1.6;
      overflow-x: hidden;
      background: linear-gradient(135deg, #9e2a07, #7a1f05);
      min-height: 100vh;
      color: #fff;
    }

    /* ============== NAVBAR ============== */
    .navbar {
      padding: 1rem 5%;
      background: linear-gradient(90deg, #0077b6, #00b4d8);
      position: fixed;
      width: 100%;
      top: 0;
      z-index: 1000;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .nav-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1300px;
      margin: 0 auto;
    }

    .nav-logo {
      height: 50px;
      width: auto;
      transition: transform 0.3s ease;
    }

    .nav-logo:hover {
      transform: scale(1.05);
    }

    .nav-links {
      display: flex;
      gap: 2rem;
      list-style: none;
    }

    .nav-links a {
      color: white;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1rem;
      padding: 8px 12px;
      border-radius: 5px;
      transition: all 0.3s;
      position: relative;
    }

    .nav-links a:hover {
      background-color: rgba(255, 255, 255, 0.2);
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 3px;
      background-color: #fff;
      transition: width 0.3s ease;
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    /* ============== HERO SECTION ============== */
    .hero {
      position: relative;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
    }

    .background-video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
    }

    .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.3);
      z-index: 0;
    }

    .hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
      padding: 0 20px;
    }

    .hero-content h1 {
      font-size: 4rem;
      margin-bottom: 1.5rem;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
      animation: fadeInDown 1s ease-out;
      font-family: 'Dancing Script', cursive;
    }

    .hero-content p {
      font-size: 1.3rem;
      margin-bottom: 2.5rem;
      animation: fadeInUp 1s ease-out 0.2s both;
    }

    /* ============== BOUTON "VOIR VIDÉO" ============== */
    .video {
      position: relative;
      z-index: 2;
      margin-top: 2rem;
      animation: fadeInUp 1s ease-out 0.4s both;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      padding: 18px 50px;
      background: linear-gradient(135deg, #0077b6, #00b4d8);
      color: white;
      text-decoration: none;
      border-radius: 50px;
      font-weight: bold;
      font-size: 1.3rem;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
      border: none;
      cursor: pointer;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
      animation: pulse 2s ease-in-out infinite;
    }

    .btn::before {
      content: "▶";
      margin-right: 12px;
      font-size: 1em;
      transition: transform 0.3s;
    }

    .btn::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 100px;
      height: 100px;
      background: rgba(255, 255, 255, 0.15);
      border-radius: 50%;
      transform: translate(-50%, -50%) scale(0);
      transition: transform 0.6s ease;
    }

    .btn:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 30px rgba(52, 152, 219, 0.6);
      background: linear-gradient(135deg, #0067a6, #009cc8);
    }

    .btn:hover::after {
      transform: translate(-50%, -50%) scale(1);
    }

    .btn:hover::before {
      transform: translateX(5px);
    }

    .btn:active {
      transform: translateY(2px);
      box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
    }

    @keyframes pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.05); }
      100% { transform: scale(1); }
    }

    /* ============== BOUTON RÉSERVATION ============== */
    .reservation-email {
      position: fixed;
      bottom: 60px;
      left: 20px;
      z-index: 1000;
      padding: 10px 15px;
      border-radius: 15px;
      animation: fadeInLeft 1s ease-out 0.6s both;
    }

    .email-btn {
      padding: 14px 30px;
      background: linear-gradient(135deg, #0077b6, #00b4d8);
      color: white;
      border-radius: 25px;
      text-decoration: none;
      font-weight: bold;
      transition: all 0.3s;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .email-btn i {
      font-size: 1.2rem;
    }

    .email-btn:hover {
      background: linear-gradient(135deg, #0067a6, #009cc8);
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    }

    /* ============== FOOTER RÉSEAUX ============== */
    .social-footer {
      position: fixed;
      bottom: 60px;
      right: 20px;
      display: flex;
      gap: 15px;
      z-index: 1000;
      background: rgba(0, 119, 182, 0.7);
      padding: 12px 18px;
      border-radius: 50px;
      animation: fadeInRight 1s ease-out 0.6s both;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .social-footer a {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 45px;
      height: 45px;
      border-radius: 50%;
      background: white;
      transition: all 0.3s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .social-footer img {
      width: 26px;
      height: 26px;
      transition: transform 0.3s;
    }

    .social-footer a:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    }

    .social-footer a:hover img {
      transform: scale(1.1);
    }

    /* ============== ANIMATIONS ============== */
    @keyframes fadeInDown {
      from {
        opacity: 0;
        transform: translateY(-50px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(50px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeInLeft {
      from {
        opacity: 0;
        transform: translateX(-50px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @keyframes fadeInRight {
      from {
        opacity: 0;
        transform: translateX(50px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    /* ============== WAVE ANIMATION ============== */
    .waves {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 15vh;
      min-height: 100px;
      max-height: 150px;
    }

    .wave {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 200%;
      height: 100%;
      background-repeat: repeat no-repeat;
      background-position: 0 bottom;
      transform-origin: center bottom;
    }

    .wave-1 {
      background-size: 50% 100px;
      background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg" fill="%230096c7"><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.5C438.64,32.43,512.34,53.67,583,72.05c69.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" opacity=".25"/></svg>');
      animation: wave 12s linear infinite;
    }

    .wave-2 {
      background-size: 50% 100px;
      background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg" fill="%230077b6"><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.5C438.64,32.43,512.34,53.67,583,72.05c69.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" opacity=".5"/></svg>');
      animation: wave 18s linear infinite;
      animation-delay: -5s;
    }

    .wave-3 {
      background-size: 50% 100px;
      background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg" fill="%230077b6"><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.5C438.64,32.43,512.34,53.67,583,72.05c69.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"/></svg>');
      animation: wave 25s linear infinite;
      animation-delay: -2s;
    }

    @keyframes wave {
      0% {
        transform: translateX(0);
      }
      50% {
        transform: translateX(-25%);
      }
      100% {
        transform: translateX(-50%);
      }
    }

    /* ============== RESPONSIVE ============== */
    @media (max-width: 768px) {
      .nav-container {
        flex-direction: column;
        gap: 1rem;
      }

      .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
      }

      .hero-content h1 {
        font-size: 2.5rem;
      }

      .hero-content p {
        font-size: 1.1rem;
      }

      .btn {
        padding: 14px 40px;
        font-size: 1.1rem;
      }

      .email-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
      }

      .social-footer {
        padding: 10px 15px;
      }

      .social-footer a {
        width: 40px;
        height: 40px;
      }

      .social-footer img {
        width: 22px;
        height: 22px;
      }
    }

    @media (max-width: 480px) {
      .reservation-email, .social-footer {
        bottom: 20px;
      }

      .hero-content h1 {
        font-size: 2rem;
      }

      .btn {
        padding: 12px 35px;
        font-size: 1rem;
      }
    }