/* Fichier CSS : css/style.css */
/* @import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap"); */
  
    :root {
      --primary: #15803d;
      --primary-dark: #0c5a2a;
      --secondary: #f8f9fa;
      --accent: #ffa500;
      --text: #333;
      --text-light: #6c757d;
      --white: #ffffff;
      --transition: all 0.3s ease;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }

    html {
      font-size: 62.5%;
      scroll-behavior: smooth;
      overflow-x: hidden;
    }

    body {
      background-color: var(--white);
      color: var(--text);
      line-height: 1.6;
      overflow-x: hidden;
    }

    h1, h2, h3, h4, h5, h6 {
      font-weight: 700;
      color: var(--primary);
    }

    .heading {
      font-size: 4.5rem;
      font-weight: 700;
      text-align: center;
      margin: 4rem 0 2rem;
      position: relative;
    }

    .heading::after {
      content: '';
      display: block;
      width: 120px;
      height: 5px;
      background: var(--primary);
      margin: 15px auto;
      border-radius: 3px;
    }

    p {
      font-size: 1.8rem;
      margin-bottom: 1.5rem;
      color: var(--text-light);
    }

    .btn {
      display: inline-block;
      padding: 1.2rem 2.5rem;
      background: var(--primary);
      color: var(--white);
      border: none;
      border-radius: 5px;
      font-size: 1.8rem;
      font-weight: 500;
      text-transform: uppercase;
      transition: var(--transition);
      cursor: pointer;
      text-decoration: none;
      text-align: center;
      margin-top: 2rem;
    }

    .btn:hover {
      background: var(--primary-dark);
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .btn i {
      margin-left: 0.5rem;
    }

    .section-padding {
      padding: 8rem 0;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
    }

    /* Header & Navigation */
    header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.95);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      padding: 1.5rem 0;
      transition: var(--transition);
    }

    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 2rem;
    }

    .logo img {
      height: 60px;
    }

    .nav-links {
      display: flex;
      list-style: none;
    }

    .nav-links li {
      margin: 0 1.5rem;
      
    }
 
    .nav-links a {
      color: var(--text);
      text-decoration: none;
      font-size: 1.8rem;
      font-weight: 500;
      padding: 0.5rem 1rem;
      transition: var(--transition);
      position: relative;
    }

    .nav-links a:hover,
    .nav-links a.active {
      color: var(--primary);
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--primary);
      transition: var(--transition);
    }

    .nav-links a:hover::after,
    .nav-links a.active::after {
      width: 100%;
    }

    .hamburger {
      display: none;
      cursor: pointer;
      font-size: 2.5rem;
      color: var(--primary);
    }

    /* Hero Section */
    .hero {
      height: 100vh;
      background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1580502304784-8985b7eb7260?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: var(--white);
      position: relative;
      overflow: hidden;
    }

    .hero-content {
      max-width: 800px;
      padding: 0 2rem;
      z-index: 1;
    }

    .hero h1 {
      font-size: 5.5rem;
      color: var(--white);
      margin-bottom: 2rem;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    .hero p {
      font-size: 2.2rem;
      color: var(--white);
      margin-bottom: 3rem;
    }

    .controls {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 10px;
      z-index: 10;
    }

    .vid-btn {
      width: 15px;
      height: 15px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.5);
      cursor: pointer;
      transition: var(--transition);
    }

    .vid-btn.active {
      background: var(--primary);
    }

    /* About Section */
    .about {
      background: var(--secondary);
    }

    .about-content {
      display: flex;
      align-items: center;
      gap: 5rem;
    }

    .about-img {
      flex: 1;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .about-img img {
      width: 100%;
      height: auto;
      display: block;
      transition: var(--transition);
    }

    .about-img:hover img {
      transform: scale(1.05);
    }

    .about-text {
      flex: 1;
    }

    .about-text h2 {
      font-size: 3.5rem;
      margin-bottom: 2rem;
      color: var(--primary);
    }

    /* Gallery Section */
    .gallery {
      background: var(--white);
    }

    .gallery-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 3rem;
      margin-top: 4rem;
    }

    .gallery-item {
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      position: relative;
      height: 300px;
      transition: var(--transition);
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: var(--transition);
    }

    .gallery-item:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }

    .gallery-item:hover img {
      transform: scale(1.1);
    }

    .gallery-item-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      padding: 2rem;
      background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
      color: var(--white);
      opacity: 0;
      transition: var(--transition);
    }

    .gallery-item:hover .gallery-item-overlay {
      opacity: 1;
    }

    .gallery-item h3 {
      font-size: 2.2rem;
      margin-bottom: 1rem;
    }

    /* Hotels Section */
    .hotels {
      background: var(--secondary);
    }

    .hotels-content {
      display: flex;
      align-items: center;
      gap: 5rem;
    }

    .hotels-text {
      flex: 1;
    }

    .hotels-img {
      flex: 1;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .hotels-img img {
      width: 100%;
      height: auto;
      display: block;
      transition: var(--transition);
    }

    .hotels-img:hover img {
      transform: scale(1.05);
    }

    /* Events Section */
    .events {
      background: var(--white);
    }

    .events-content {
      display: flex;
      align-items: center;
      gap: 5rem;
    }

    .events-carousel {
      flex: 1;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .events-text {
      flex: 1;
    }

    .carousel-item img {
      width: 100%;
      height: 400px;
      object-fit: cover;
    }

    /* Footer */
    footer {
      background: var(--primary);
      color: var(--white);
      padding: 6rem 0 3rem;
    }

    .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 4rem;
      margin-bottom: 4rem;
    }

    .footer-col h3 {
      font-size: 2.2rem;
      margin-bottom: 2rem;
      color: var(--white);
      position: relative;
      padding-bottom: 1rem;
    }

    .footer-col h3::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 50px;
      height: 2px;
      background: var(--accent);
    }

    .footer-col p, 
    .footer-col a {
      font-size: 1.6rem;
      color: rgba(255, 255, 255, 0.8);
      margin-bottom: 1.5rem;
      display: block;
      transition: var(--transition);
    }

    .footer-col a:hover {
      color: var(--white);
      padding-left: 5px;
    }

    .social-links {
      display: flex;
      gap: 1.5rem;
      margin-top: 2rem;
    }

    .social-links a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      transition: var(--transition);
    }

    .social-links a:hover {
      background: var(--accent);
      transform: translateY(-3px);
    }

    .footer-bottom {
      text-align: center;
      padding-top: 3rem;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-bottom p {
      font-size: 1.6rem;
    }

    /* PopOut */
    .onboarding-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.7);
      z-index: 2000;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .onboarding-container {
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) scale(0.9);
      background: var(--white);
      border-radius: 10px;
      padding: 3rem;
      max-width: 600px;
      width: 90%;
      z-index: 2001;
      opacity: 0;
      transition: all 0.3s ease;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }

    .onboarding-container.active {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1);
    }

    .onboarding-overlay.active {
      display: block;
      opacity: 1;
    }

    .skip-btn {
      position: absolute;
      top: 1rem;
      right: 1.5rem;
      background: none;
      border: none;
      font-size: 1.6rem;
      color: var(--text-light);
      cursor: pointer;
      transition: var(--transition);
    }

    .skip-btn:hover {
      color: var(--primary);
    }
.onboarding-overlay,
.onboarding-container {
  display: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.onboarding-overlay.active,
.onboarding-container.active {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

/* Add this to your style.css */
.onboarding-overlay:not(.active) {
  pointer-events: none !important;
}

.onboarding-container:not(.active) {
  pointer-events: none !important;
}

    /* Responsive Design */
    @media (max-width: 992px) {
      html {
        font-size: 58%;
      }
      
      .about-content,
      .hotels-content,
      .events-content {
        flex-direction: column;
      }
      
      .about-img,
      .about-text,
      .hotels-img,
      .hotels-text,
      .events-carousel,
      .events-text {
        width: 100%;
      }
      
      .about-img,
      .hotels-img,
      .events-carousel {
        margin-bottom: 3rem;
      }
    }

    @media (max-width: 768px) {
      .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        align-items: center;
        padding-top: 5rem;
        transition: var(--transition);
      }

      .nav-links.active {
        left: 0;
      }

      .nav-links li {
        margin: 2rem 0;
      }

      .hamburger {
        display: block;
      }

      .hero h1 {
        font-size: 4.5rem;
      }

      .hero p {
        font-size: 2rem;
      }

      .heading {
        font-size: 3.5rem;
      }
    }

    @media (max-width: 576px) {
      .hero h1 {
        font-size: 3.8rem;
      }

      .gallery-container {
        grid-template-columns: 1fr;
      }

      .footer-content {
        grid-template-columns: 1fr;
      }
    }
  