/* Réinitialisation globale */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* الأيقونات في اتجاه RTL */
[dir="rtl"] .nav-icon {
  margin-left: 8px;
  margin-right: 0;
}


/* Body - Fusion des deux définitions, priorité au premier bloc avec ajout de padding-top du second */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #fefaf3 0%, #f9f4e8 100%);
    overflow-x: hidden;
    padding-top: 10px;
}

/* Navbar Design Moderne - Priorité au premier bloc pour un style plus sophistiqué */
.navbar-glass {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(242, 211, 147, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-glass.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.navbar-nav .nav-link {
    color: #2c1810 !important;
    font-weight: 600;
    margin: 0 20px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 12px 0;
    text-decoration: none;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #f4d03f);
    transform: translateX(-50%);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.navbar-nav .nav-link:hover {
    color: #d4af37 !important;
    transform: translateY(-2px);
}

.navbar-nav .nav-link:hover::before {
    width: 100%;
}

.navbar-brand {
    transition: transform 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.navbar-brand img {
    height: 65px;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.navbar-center-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-icon {
    margin-right: 8px;
    color: #d4af37;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover .nav-icon {
    transform: scale(1.2) rotate(5deg);
}

/* Burger Menu Animation */
.navbar-toggler {
    border: none;
    padding: 8px 12px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.navbar-toggler:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: scale(1.05);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23d4af37' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
/* الشعار في المنتصف فقط على الكمبيوتر */
@media (min-width: 992px) {
  .navbar-center-logo {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
  }
}

/* على الموبايل والتابلت */
@media (max-width: 991px) {
  .navbar-center-logo {
      position: static;   /* يصبح ضمن الـ flex العادي */
      transform: none;
      display: block;
      margin: 10px auto;  /* يضعه في المنتصف تقريبًا */
    } 
    
  .navbar-collapse {
      width: 100%;        /* القائمة تمتد بالكامل */
  }

  .navbar-nav {
      text-align: center;
      margin: 0 auto;
  }
}




/* CSS for the slideshow */
    #Hero-section {
      width: 100%;
      height: 700px; /* Adjust height as needed */
      position: relative;
      overflow: hidden;
    }

    .Hero {
      width: 100%;
      height: 100%;
    }

    .Hero img {
      width: 100%;
      height: 100%;
      object-fit: cover; /* Ensures images cover the container without distortion */
      position: absolute;
      top: 0;
      left: 0;
      opacity: 0; /* Hide all images by default */
      transition: opacity 1s ease-in-out; /* Smooth fade transition */
    }

    .Hero img.active {
      opacity: 1; /* Show only the active image */
    }


/* Responsive adjustments */
@media (max-width: 768px) {
  #Hero-section {
    height: 60vh; /* Slightly shorter on mobile */
  }
}

/* Optional overlay for better text readability if needed */
.Hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3); /* Subtle dark overlay */
  z-index: 1;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Main Slide - Priorité au premier bloc, ajustement pour background-size: contain */
.main-slide {
    width: 80%;
    height: 600px;
    position: relative;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f8f9fa;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: white;
}

.main-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg, 
        rgba(44, 24, 16, 0.4) 0%, 
        rgba(212, 175, 55, 0.1) 50%, 
        rgba(244, 208, 63, 0.1) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.main-slide.full-image {
    background-size: contain !important;
    background-position: center !important;
}

/* Overlay - Priorité au premier bloc, ajustement du padding du second */
.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(0, 0, 0, 0.2) 80%,
        transparent 100%
    );
    z-index: 2;
    transform: translateY(20px);
    opacity: 0;
    animation: slideUp 0.8s ease-out 0.3s forwards;
}

@keyframes slideUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.main-name {
    font-size: 1.9rem;
    margin-bottom: 15px;
    font-weight: 700;
    color: #fff;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
    letter-spacing: 1px;
    
}

.main-text {
    line-height: 1.8;
    font-size: 1.1rem;
    color: #f8f9fa;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
    max-width: 500px;
}

/* Thumbnails - Priorité au premier bloc pour le style détaillé */









/* Main Slide Alternative */


/* Image Section - Intégration du second bloc */
.image-section {
    position: relative;
    height: 400px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.image-section::before {
    content: "";
    background: url('imgs/4.jpg') no-repeat center center fixed;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    filter: brightness(0.7);
}

.image-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
}

/* History Section - Intégration du second bloc */
.history-section {
    background: linear-gradient(to right, #fdf5e6, #fffaf0);
    border-radius: 25px;
    padding: 2rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
}

/* Decorative Title - Intégration du second bloc */
.decorative-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #9e6825;
    position: relative;
    margin-bottom: 1rem;
    text-align: center;
}

.decorative-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: #9e6825;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    border-radius: 2px;
}

/* Quote Block - Intégration du second bloc */
.quote-block {
    font-style: italic;
    color: #5a4b3b;
    padding-left: 1rem;
    border-left: 4px solid #d5b17b;
    margin: 1rem 0;
}

/* Section Title - Intégration du second bloc */
.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: #9e6825;
    letter-spacing: 2px;
    margin-bottom: 3rem;
    text-transform: uppercase;
    font-family: 'Segoe UI Black', sans-serif;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 90px;
    height: 5px;
    background: #c89e4d;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 3px;
}

/* Service Text - Intégration du second bloc */
.service-text h5 {
    font-weight: 700;
    font-size: 1.2rem;
    color: #7a5a20;
    margin-top: 1.5rem;
}



.service-text p.text-muted {
    font-size: 1rem;
    color: #6a5a3a;
    line-height: 1.5;
    margin-bottom: 0.6rem;
}

/* Service Gallery - Intégration du second bloc */
.service-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 150px 150px 150px;
    gap: 18px;
    grid-template-areas:
        "small1 small2"
        "small1 small2"
        "small3 small4";
}

.img-large {
    grid-area: large;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 12px 30px rgba(158, 104, 37, 0.3);
    position: relative;
    overflow: hidden;
    cursor: default;
    transition: transform 0.7s ease;
}

.img-large:hover {
    transform: scale(1.04);
}

.img-small {
    border-radius: 16px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 6px 20px rgba(158, 104, 37, 0.25);
    position: relative;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.img-small:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(158, 104, 37, 0.6);
}

.overlay-text {
    width: 90%;
    padding: 15px 0;
    background: rgba(158, 104, 37, 0.7);
    text-align: center;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.4s ease, transform 0.4s ease;
    font-size:0.8rem;
}

.img-small:hover .overlay-text {
    opacity: 1;
    transform: translateY(0);
}

.img-food {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 16px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 6px 20px rgba(158, 104, 37, 0.25);
    cursor: pointer;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.img-food:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(158, 104, 37, 0.6);
}

.overlay-text1 {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
    text-align: center;
}

.img-food:hover .overlay-text1 {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}


@media (max-width: 576px) {
    .img-food {
        height: 200px; /* تصغير للموبايل */
    }
}

.img-food .overlay-text1 {
    position: absolute;
    top: 93%;
    left: 50%;
    transform: translate(-0%, -50%);
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    text-shadow: 1px 1px 40px rgba(0, 0, 0, 0.77);
    background-color: rgba(0, 0, 0, 0.63);
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    white-space: nowrap;
}

/* صور المعرض الصغيرة */
.img-small {
    position: relative;
    width: 100%;
    height: 150px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    margin-bottom: 10px;
}

.img-small .overlay-text {
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: white;
    font-weight: bold;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
    background-color: rgba(0,0,0,0.3);
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
}



/* Parallax - Intégration du second bloc */
.parallax {
    will-change: transform;
    transition: transform 0.3s ease-out;
}

/* Responsive Design - Fusion des règles media des deux blocs */
@media (max-width: 991px) {
    .navbar-center-logo {
        position: static;
        transform: none;
        margin: auto;
        padding: 10px 0;
    }

    .navbar-nav .nav-link {
        margin: 8px 0;
        text-align: center;
    }

    .carousel-container {
        flex-direction: column;
        margin-top: 80px;
        width: 98%;
    }

    .main-slide {
        width: 100%;
        height: 450px;
    }

    .thumbnails {
        flex-direction: row;
        padding: 20px;
        gap: 10px;
        overflow-x: auto;
        overflow-y: hidden;
    }

    .thumbnail {
        min-width: 120px;
        flex-shrink: 0;
    }

    .main-name {
        font-size: 3rem;
    }

    .main-text {
        font-size: 1rem;
    }

    .service-gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 200px 200px 200px;
        grid-template-areas:
            "large large"
            "small1 small2"
            "small3 small4";
        gap: 14px;
    }

    .img-large {
        height: 200px;
        border-radius: 16px;
    }

    .img-small {
        height: 200px;
        border-radius: 14px;
    }
}

@media (max-width: 576px) {
    .overlay {
        padding: 25px;
    }

    .main-name {
        font-size: 1.5rem;
    }

    .carousel-container {
        border-radius: 15px;
        margin: 70px 10px 20px;
    }

    .main-slide {
        height: 350px;
    }

    .service-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 180px);
        grid-template-areas:
            "large"
            "small1"
            "small2"
            "small3"
            "small4";
        gap: 12px;
    }

    .img-large,
    .img-small {
        height: 180px;
        border-radius: 14px;
    }
}
/* Variables pour les couleurs */
:root {
  --color-primary: #f8f5f0;
  --color-secondary: #fefaf3;
  --color-tertiary: #f4e5d3;
  --color-text: #5a4b3b;
  --color-accent: #d4af37;
  --color-divider: #9e6825;
}

/* Base footer styling */







 
/* Container padding */
footer .container {
  padding: 1rem 0;
}

/* Logo image styling */
footer img {
  max-width: 55px;
  height: auto;
  margin-bottom: 1rem;
  border-radius: 5px;
}

/* Headings */
footer h5 {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.25rem;
  position: relative;
  margin-bottom: 1.5rem;
  color: var(--color-text);
}

footer h5::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--color-divider);
  margin-top: 0.5rem;
  border-radius: 2px;
  position: absolute;
  left: 0;
}

/* Links */
footer a {
  color: var(--color-text);
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease, transform 0.2s ease;
}

footer a:hover {
  color: var(--color-accent);
  transform: translateX(5px);
}

/* List items */
footer .list-unstyled li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
}

/* Contact icons */
footer .list-unstyled li i {
  margin-right: 0.75rem;
  color: var(--color-accent);
  font-size: 1.1rem;
}

/* Social icons */
footer .social-icons a {
  font-size: 1.75rem;
  margin: 0 0.5rem;
  color: var(--color-text);
  transition: color 0.3s ease, transform 0.3s ease;
}

footer .social-icons a:hover {
  color: var(--color-accent);
  transform: scale(1.15);
}

/* Paragraph text */
footer p {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  color: var(--color-text);
}

/* Responsive design */
@media (max-width: 992px) {
  footer .col-lg-4, 
  footer .col-lg-2, 
  footer .col-lg-3 {
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  footer .text-start {
    text-align: center !important;
  }
  
  footer h5::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  footer .social-icons {
    justify-content: center;
  }
  
  footer .list-unstyled li {
    justify-content: center;
  }
  
  footer a:hover {
    transform: none; /* Disable transform on small screens for simplicity */
  }
}

@media (max-width: 576px) {
  footer img {
    max-width: 120px;
  }
  
  footer h5 {
    font-size: 1.1rem;
  }
  
  footer .social-icons a {
    font-size: 1.5rem;
  }
}

.py-5 {
        padding-top: 3rem ;
    padding-bottom: 0rem ;
}
/* section activités */
     #produits {
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #fbf7ec 0%, #f8f4e6 50%, #f5f1e4 100%);
            padding: 29px 0;
            min-height: 100vh;
        }

        #produits::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(158, 104, 37, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(158, 104, 37, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(158, 104, 37, 0.06) 0%, transparent 50%);
            pointer-events: none;
        }

        .section-title {
            text-align: center;
            margin-bottom: 80px;
            position: relative;
            z-index: 10;
        }

        .section-title h2 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 900;
            background: linear-gradient(135deg, #d4af37, #f4e24c, #d4af37);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientShift 3s ease-in-out infinite;
            letter-spacing: -0.02em;
            line-height: 1.1;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, transparent, #d4af37, transparent);
            border-radius: 2px;
        }

        .activities-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            position: relative;
            z-index: 10;
        }

        .video-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        .video-card {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            height: 280px;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(158, 104, 37, 0.1);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 0;
            transform: translateY(50px);
            animation: slideInUp 0.8s ease forwards;
        }

        .video-card:nth-child(1) { animation-delay: 0.1s; }
        .video-card:nth-child(2) { animation-delay: 0.2s; }
        .video-card:nth-child(3) { animation-delay: 0.3s; }
        .video-card:nth-child(4) { animation-delay: 0.4s; }
        .video-card:nth-child(5) { animation-delay: 0.5s; }

        .video-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(158, 104, 37, 0.1), rgba(158, 104, 37, 0.05));
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 1;
        }

        .video-card:hover::before {
            opacity: 1;
        }

        .video-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 
                0 25px 50px rgba(158, 104, 37, 0.2),
                0 0 0 1px rgba(158, 104, 37, 0.1);
        }

        .video-card video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .video-card:hover video {
            transform: scale(1.05);
        }

        .video-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(251, 247, 236, 0.95));
            padding: 30px 25px 25px;
            transform: translateY(100%);
            transition: transform 0.3s ease;
            z-index: 2;
        }

        .video-card:hover .video-overlay {
            transform: translateY(0);
        }

        .video-title {
            color: #d4af37;
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 5px;
        }

        .video-description {
            color: rgba(74, 74, 74, 0.8);
            font-size: 0.9rem;
            line-height: 1.4;
        }

        .static-activities {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .activity-card {
            position: relative;
            height: 250px;
            border-radius: 20px;
            overflow: hidden;
            background-size: cover;
            background-position: center;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 0;
            transform: translateY(30px);
            animation: slideInUp 0.8s ease forwards;
        }

        .activity-card:nth-child(1) { animation-delay: 0.6s; }
        .activity-card:nth-child(2) { animation-delay: 0.7s; }

        .activity-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(158, 104, 37, 0.3), rgba(0, 0, 0, 0.4));
            transition: background 0.3s ease;
        }

        .activity-card:hover::before {
            background: linear-gradient(135deg, rgba(158, 104, 37, 0.1), rgba(0, 0, 0, 0.6));
        }

        .activity-card:hover {
            transform: translateY(-10px) scale(1.03);
            box-shadow: 0 20px 40px rgba(158, 104, 37, 0.3);
        }

        .activity-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 30px;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            color: white;
            z-index: 2;
        }

        .activity-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: #d4af37;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
            transform: translateY(20px);
            transition: transform 0.3s ease;
        }

        .activity-card:hover .activity-title {
            transform: translateY(0);
        }

        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
            overflow: hidden;
        }

        .floating-element {
            position: absolute;
            width: 4px;
            height: 4px;
            background: rgba(212, 175, 55, 0.6);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        .floating-element:nth-child(1) {
            top: 20%;
            left: 10%;
            animation-delay: -2s;
        }

        .floating-element:nth-child(2) {
            top: 60%;
            left: 80%;
            animation-delay: -4s;
        }

        .floating-element:nth-child(3) {
            top: 80%;
            left: 30%;
            animation-delay: -1s;
        }

        @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        @keyframes slideInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
                opacity: 0.6;
            }
            50% {
                transform: translateY(-20px) rotate(180deg);
                opacity: 1;
            }
        }

        @media (max-width: 768px) {
            #produits {
                padding: 80px 0;
            }

            .activities-container {
                padding: 0 20px;
            }

            .video-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .video-card {
                height: 220px;
            }

            .static-activities {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .activity-card {
                height: 200px;
            }

            .section-title {
                margin-bottom: 60px;
            }
        }

        @media (max-width: 480px) {
            .activities-container {
                padding: 0 15px;
            }

            .video-card {
                height: 180px;
            }

            .activity-card {
                height: 160px;
            }
        }   

 .form-control:focus{
        color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    border-color: #ffffff;
    outline: 0;
    box-shadow: 0 0 0  .10rem #ffc074ff;
}
.form-control:focus:hover{
    box-shadow: 
    1px 1px 10px 1px #ffc074ff;

}
        /* ============================= */
/* Responsive Screen Sizes Setup */
/* ============================= */

/* الشاشات الكبيرة: ≥1200px */
@media (min-width: 1200px) {
    .carousel-container { width: 90%; margin-top: 40px; }
    .main-slide { height: 600px; }
    .thumbnails { width: 25%; padding: 25px; }
}

/* الشاشات المتوسطة: 992px – 1199px */
@media (max-width: 1199px) and (min-width: 992px) {
    .carousel-container { width: 95%; margin-top: 35px; }
    .main-slide { height: 500px; }
    .thumbnails { width: 25%; padding: 20px; }
}

/* الشاشات الصغيرة: 768px – 991px */
@media (max-width: 991px) and (min-width: 768px) {
    .carousel-container { flex-direction: column; width: 98%; margin-top: 80px; }
    .main-slide { width: 100%; height: 450px; }
    .thumbnails { flex-direction: row; padding: 20px; gap: 10px; overflow-x: auto; }
}

/* الشاشات الصغيرة جدًا: <768px */
@media (max-width: 767px) {
    .carousel-container { width: 98%; margin: 70px 10px 20px; }
    .main-slide { height: 350px; }
    .overlay { padding: 20px; }
    .main-name { font-size: 1.5rem; }
    .thumbnails { flex-direction: row; gap: 8px; }
}
