/* basics */
@import url('https://fonts.googleapis.com/css2?family=Concert+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Kedebideri:wght@400;500;600;700;800;900&family=Reem+Kufi:wght@400..700&display=swap');

.concert {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-style: normal;
  }

  html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;


   font-family: "Kedebideri", sans-serif !important;
  font-weight: 400;
  font-style: normal;
}
.anton-regular {
  font-family: "Anton", sans-serif !important;
  font-weight: 400;
  font-style: normal;
}

.jetbrains-mono {
  font-family: "JetBrains Mono", monospace;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}


*::selection{
    color: white;
    background-color: #202020;
}

.colored{
    color: #ffc700 !important;
}
.colored-dark{
    color: #ffc700 !important;

}
.color-white{
    color: white;
}
.color-gray{
    color: #dfd3d3;
}
.text-center{
    text-align: center;
}

/* banner-top */
.banner-top{
    background-color: #202020;
    color: white;
}
.bloc{
    padding: 120px 0px;
}
.bloc-grey{
      background-color: #ffffff;
    color: white;
}
.netflix-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    z-index: 10;
    width: 80%;
    animation-duration: 0.5s;
}
.netflix-caption h1{
    font-size: 160px;
    margin-bottom: 1rem;
}
.netflix-caption p{
      font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    line-height: 1.5;
    color: white;
    padding: 0 5px;
}
@media (max-width: 768px) {
    .netflix-caption h1 {
        font-size: 50px;
    }
}
/* Fade-in animation for text */
@keyframes fadeInUp {
    0% { opacity: 0; transform: translate(-50%, -60%); }
    100% { opacity: 1; transform: translate(-50%, -50%); }
}

.fade-in-up {
    animation-name: fadeInUp;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1030;
    background-color: #fff; /* Adjust background color */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.nav-link:hover{
    color: #ffc700 !important;

}
/* Carousel */

 .netflix-slide {
    position: relative;
    opacity: 0;
    transform: scale(1.1) translateX(40px);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .carousel-item.active .netflix-slide {
    opacity: 1;
    transform: scale(1) translateX(0);
  }

  /* Smooth fade on the whole slide */
  .carousel-item {
    transition: opacity 1s ease-in-out;
  }

  .carousel-inner img {
   
  }

  /* Dots (Netflix style → SMALL & MINIMAL) */
  .carousel-indicators [data-bs-target] {
    width: 40px;
    height: 4px;
    border-radius: 2px;
    background-color: rgba(255, 255, 255, 0.4);
    margin: 5px;
  }

  .carousel-indicators .active {
    background-color: #e50914; /* Netflix red */
  }
 /* Smooth fade between images */
  
.carousel-item img {
    height: 1000px;
    object-fit: cover; /* Ensures the images cover the area without distortion */
    width: 100%; /* Makes the images responsive */
}
/* Card */
.card-image{
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}
.bloc-body{
    padding: 40px;
    color: white;
    background-color: #202020;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    transition: color 1s ease, background-color 0.5s ease; /* Smooth transition for color and background */

}
/* A propos */
.bloc-head{
    padding: 40px;
    color: #202020;
    background-color: white;
    border-radius: 15px;
}
.bloc-head-reverse{
    padding: 40px;
    color: #ffc700;
    background-color: white;
    border-radius: 15px;
    margin: 5px;
    transition: background-color 1.5s ease, color 1.5s ease;

}
.bloc-head-reverse:hover{
    color: white;
    background-color: #202020;
}
#a-propos{
    background-color: #202020;
    color: white;
}
/* packs */
.pack{
    background-color: #202020;
    color: white;
    padding: 40px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.437); /* Subtle shadow */

}
.packB{
    background-color: white;
    color: #ffc700;
    padding: 40px;
    top: -70px;
    position: relative;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.437); /* Subtle shadow */

}
.small-title{
    color: lightgray;
    font-size: 20px;
}
.pack-price{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    background-color: white;
    color: #ffc700;
    padding: 20px 21px;
    margin: 10px -50px;
   /* background: linear-gradient(to bottom right, cyan, purple);  */
    border-radius: 15px;  
    font-size: 35px;
}

.pack-priceB{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    background-color: #202020;
    color: white;
    padding: 20px 21px;
    margin: 10px -50px;
   /* background: linear-gradient(to bottom right, cyan, purple);  */
    border-radius: 15px;  
}
/* Media query for small screens */
@media (max-width: 768px) { /* Adjust the width as needed */
    .packB {
        top: 0px;    }
}
.pack-body{
    padding-top: 20px;
}
.gold{
    color: goldenrod;
}

#packs_next{
    background-color: #202020;
    color: white;
}

/* Team */
#team img{
    border-radius: 50%;
}
#team a{
    color: #ffc700;    
    text-decoration: none;
}
#team a:hover{
    color: #ffc700;    
    text-decoration: none;
}
/* realisations */
#realisations{
    background-color: #202020;
    color: white;
}

.bloc-hover:hover {
    background-color: #202020;
    color: white;
    cursor: pointer;
}
/* parenaires */
#partenaires{
    background-color: #202020;
    color: white;
}

/* FAQ */
#faq{
    background-color: #202020;
    color: white;
}
#faq-section {
    background-color: #f8f9fa;
    padding: 40px 20px;
}
.faq-title {
    text-align: center;
    margin-bottom: 30px;
    color: #343a40;
}
/* animations */
.animate {
    opacity: 0;
    transform: translateY(30px); /* Slight slide effect */
    transition: opacity 2s ease, transform 2s ease; /* Smooth animation */
}
.animate.visible {
    opacity: 1;
    transform: translateY(0); /* Move into place */
}
.bloc-body:hover{

  cursor: pointer;
}

/* form 
#form{
      background-color: #202020;
    color: white;
} */
.form-container {
    background: #ffffff;
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}
.form-container h2 {
    margin-bottom: 20px;
    font-size: 1.5rem;
    text-align: center;
    color: #333;
}
.form-group {
    margin-bottom: 15px;
}
.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #202020;
}
.form-group input, .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.form-group input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
}
.form-group .checkbox-label {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.form-group .checkbox-label:last-child {
    margin-bottom: 0;
}
.form-group button {
    padding: 10px;
    width: 100%;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
}
/* contact */
.contact_list
{
    list-style: none;
    font-size: 15px;
    font-weight: bold;
}
.contact_list li a{
    text-decoration: none;
    color: #ffc700;
}
.contact_list li a:hover{
    text-decoration: none;
    color: #ffc700;
}

  /* Parallax Background Section */
  .parallax {
    position: relative; /* To position the overlay */
    background-attachment: fixed; /* Keeps the background fixed */
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 500px; /* Set height to 300px */
   /* display: flex;*/
    justify-content: center;
    align-items: center;
    color: white; /* Adjust text color */
    text-align: center;
    font-size: 2rem;
  }

  /* Add a cyan overlay with 50% opacity */
  .parallax::before {
    content: ''; /* Required for the pseudo-element */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(237, 241, 5, 0.322); /* Cyan color with 50% opacity */
    z-index: 1; /* Makes sure the overlay is on top of the background */
  }

  /* Text inside the parallax section */
  .parallax h1 {
    z-index: 5; /* Ensures the text is above the overlay */
  }
.parallax-content{
    color: white;
    padding-top: 10%;
}
.avatar-img {
    border: 5px solid white; /* White border */
    border-radius: 50%; /* Makes the border circular */
    padding: 5px; /* Adds spacing between the image and the border */
    width: 100px; /* Ensures the avatar remains responsive */
    height: 100px; /* Matches width for a perfect circle */
    object-fit: cover; /* Ensures image scaling fits within the circle */
}
/* reviws*/
.stars {
    color: #ffc700;
}
.note_real{
    color: #ffc700;
}
/* Hover Animation for .animate */
.animated {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.animated:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Optional: Add animation to images inside .animate */
.animated img {
    transition: transform 0.3s ease;
}

.animated:hover img {
    transform: scale(1.1);
}

/* whatsapp */
.fixed-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-button, .whatsapp-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.contact-button {
    background-color: #202020;
    color: white;
    font-size: 20px;
}

.whatsapp-button {
    background-color: #25D366;
    color: white;
    font-size: 20px;
}

.contact-button:hover, .whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}
/* vidéo cover */
/* Existing video cover styling */
.video-cover {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
.video-cover video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #202020a8; /* Add a semi-transparent black overlay */
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}
.overlay h1 {
    font-size: 3rem;
    margin: 0 0 1rem;
    color: white;
}
.overlay p {
    font-size: 1.5rem;
    margin: 0;
    color: white;
}

/* Add media query to hide video cover on small screens */
@media (max-width: 768px) {
    .video-cover {
        display: none;
    }
    .video-placeholder {
        display: block;
    }
}


@media (max-width: 768px) { /* Target small screens */
    .fixed-buttons {
        display: none;
    }
}

ul {
    list-style-type: none; /* Removes the dots */
    padding: 0; /* Removes default padding */
    margin: 0; /* Removes default margin */
}

footer{
    background-color: #202020;
    color: white;
    padding: 20px 0px;
    text-align: center;
}


/* container that clips the moving row */
    .partners-wrap{
      overflow:hidden;
      width:100%;
      border-radius:12px;
      background:linear-gradient(90deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
      padding:1rem 0;
      position:relative;
    }

    /* the moving row (flex) */
    .partners-track{
      display:flex;
      gap:2.5rem;
      align-items:center;
      /* animate: translateX from 0 to -50% (we duplicate items to create seamless loop) */
      animation:scrollLeft linear infinite;
    }

    /* duplicate wrapper so we can loop seamlessly */
    .partners-group{
      display:flex;
      gap:2.5rem;
      align-items:center;
      padding-left:1rem;
      padding-right:1rem;
    }

    .partner{
      flex:0 0 auto;
      width:160px;        /* desktop size */
      height:80px;
      display:flex;
      align-items:center;
      justify-content:center;
      filter:brightness(1.05);
      transition:transform .25s ease, filter .25s ease;
    }
    .partner img{
      max-width:100%;
      max-height:100%;
      object-fit:contain;
      display:block;
    }
    /* hover effect */
    .partner:hover{
      transform:translateY(-6px) scale(1.03);
      filter:brightness(1.2) drop-shadow(0 6px 18px rgba(0,0,0,0.6));
    }

    /* pause on hover of whole area */
    .partners-wrap:hover .partners-track{
      animation-play-state:paused;
    }

    /* animation (duration controls speed) */
    /* We will animate by -50% because the track contains two identical groups side by side */
    @keyframes scrollLeft {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* Responsive sizes */
    @media (max-width: 1200px){
      .partner{ width:130px; height:70px; }
    }
    @media (max-width: 768px){
      .partner{ width:100px; height:56px; }
    }
    @media (max-width: 480px){
      .partner{ width:80px; height:46px; gap:1rem; }
    }

    /* small utility for caption example you had earlier */
    .netflix-caption h1{
      font-size: 160px;
      margin-bottom: 1rem;
    }
    /* mobile override for your caption */
    @media (max-width: 576px){
      .netflix-caption h1{
        font-size: 50px; /* mobile size requested */
      }
    }

    #nav-clean {
    background: transparent !important;
    box-shadow: none !important;
}



/* Testimonials Section */

.testimonials-section video {
    width: 100%;
    border-radius: 10px;
}

.video-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 98%;
    background: rgba(0, 0, 0, 0.65);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: white;
    font-size: 22px;
    transition: opacity 0.4s ease;
}

.stars {
    font-size: 26px;
    letter-spacing: 2px;
    color: #ffc700;
}

.play-btn {
    padding: 10px 20px;
    font-size: 18px;
    background: #ffc700;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s ease;
}

.play-btn:hover {
    background: #ffc700;
}
.center{
    text-align: center;
}

.no-padding{
    padding: 0px !important;
}


.shorts-slider-section {
    width: 100%;
    padding: 40px 0;
    background: white;
}

.shorts-slider-wrapper {
    position: relative;
    max-width: 950px;   /* Only center section */
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.shorts-slider {
    display: flex;
    gap: 20px;
    overflow: hidden;
    scroll-behavior: smooth;
    width: 100%;
}

/* 9:16 SHORT / REEL SIZE */
.short-item {
    aspect-ratio: 9/16;
    min-width: 30%;
    border-radius: 20px;
    overflow: hidden;
    background: black;
}

.short-item iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ARROWS */
.arrow-btn {
    width: 60px;                /* Size of circle */
    height: 60px;
    background: #FFC800;        /* Yellow like your screenshot */
    border: none;
    border-radius: 50%;         /* Make it a perfect circle */
    color: white;
    font-size: 32px;            /* Arrow size */
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: 0.2s ease;
}

.arrow-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    background: #ffb700;   /* Slightly darker */
}

.arrow-btn.left {
    margin-right: 15px;
}

.arrow-btn.right {
    margin-left: 15px;
}


/* MOBILE FIX */
@media(max-width: 768px) {

    .shorts-slider-wrapper {
        max-width: 100%;
        padding: 0 10px;
        justify-content: center;
    }

    .short-item {
        min-width: 65%;              /* smaller video */
        max-width: 65%;
        aspect-ratio: 9/16;
        border-radius: 20px;
    }

    /* show buttons on mobile */
    .arrow-btn {
        display: flex !important;
        width: 45px;
        height: 45px;
        font-size: 26px;
    }

    .arrow-btn.left {
        position: absolute;
        left: -5px;
        z-index: 10;
    }

    .arrow-btn.right {
        position: absolute;
        right: -5px;
        z-index: 10;
    }
}

.team-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
}




.team-section {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
    text-align: center;
}

.team-title {
    font-family: 'Anton', sans-serif;
    font-size: 38px;
    margin-bottom: 50px;
}

.team-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

/* TEAM CARD */
.team-card {
    width: 260px;
    text-align: center;
}

.team-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0px 8px 20px rgba(0,0,0,0.15);
}

/* NAME */
.team-card h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    margin: 15px 0 5px 0;
    font-weight: 700;
}

/* ROLE */
.team-card .role {
    font-family: 'Cinzel', serif;
    font-size: 15px;
    color: #545454;
    margin-bottom: 12px;
}

/* DESCRIPTION */
.team-card .desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    line-height: 1.5;
    color: #333;
    padding: 0 5px;
}

/* IMPORTANT WORDS */
.note {
    font-weight: 700;
    color: #ffc700;
   /* background: rgba(49, 49, 48, 0.12);*/
    padding: 0 4px;
    border-radius: 4px;
}

/* MOBILE (max-width: 768px) → 2 cards per row */
@media (max-width: 768px) {
    .team-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 25px;
    }

    .team-card {
        width: 100% !important;    /* let cards shrink correctly */
    }

    .team-card img {
        height: 200px;             /* reduce image size for mobile */
    }
}


#thankYouPopup {
    display:none; 
    position:fixed; 
    top:40%; 
    left:50%;
    transform:translate(-50%, -50%);
    background:white; 
    padding:25px 40px; 
    border-radius:10px; 
    box-shadow:0 0 20px rgba(0,0,0,0.2);
    text-align:center; 
    z-index:99999;
}



/* Make inputs transparent with yellow bottom border */
#contactForm input[type="text"],
#contactForm input[type="tel"],
#contactForm input[type="email"],
#contactForm textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid #ffc107; /* Yellow */
    padding: 10px 5px;
    outline: none;
    color: #333;
    font-size: 16px;
}

/* On focus add darker yellow + smooth effect */
#contactForm input:focus,
#contactForm textarea:focus {
    border-bottom-color: #e6a800; 
}

/* Remove button corner */
#contactForm button {
    border-radius: 0;
    width: 100%;
    padding: 12px;
}
