
html {
    scroll-behavior: smooth;
}
body{
    margin: 0;
    background-color: rgb(236, 244, 247);
    font-family: "Outfit", sans-serif;
}
a{
    text-decoration: none;
}
nav{
    background-color: white;
    padding: 10px 10%;
    position: fixed;
    top: 0;
    left: 0;
    width: 80%;
    display: flex;
    justify-content: left;
    align-items: center;
    z-index: 20;
    box-shadow: 2px 2px 10px rgb(231, 231, 231);
}
nav #links{
    margin-left: 15px;
}
/* #burgers{
    width: 40px;
    
    display: none;
}
#burgers:hover {
    cursor: pointer;
}

#burgers:hover div {
    background-color: crimson;
}
#burgers div{
    padding: 2px;
    border-radius: 5px;
    background-color: black;
    margin: 4px;
} */
nav img{
    width: 100px;
}
#links a{
    color: gray;
    transition: 0.3s;
    margin-left: 12px;
}
#links a:hover{
    color: crimson;
    transition: 0.3s;
}

#banner{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 80px auto;
    padding: 10px;
}
#banner .text{
    max-width: 550px;
}
#banner p{
    color: rgb(63, 63, 63);
}
#banner img{
    width: 450px;
}
#banner h1{
    font-size: 42px;
}
#banner h1 span{
    color: crimson;
    text-shadow: 2px 2px 5px rgb(159, 159, 159);
}
.main-color{
    color: rgb(14, 242, 17);
    /* text-shadow: 2px 2px 5px rgb(122, 122, 122); */
}
.gallery-shine {
  position: relative;
  display: inline-block;
  font-size: 22px;
  font-weight: 600;
  color: white;
  text-decoration: none;
  padding: 6px 10px;
  overflow: hidden;
  border: 1px solid crimson;
  background-color: crimson;
  border-radius: 50px;
  box-shadow: 4px 10px 15px lightgray;
}

/* Shine blanc */
.gallery-shine::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.75),
    transparent
  );
  animation: shine 3s ease-in-out infinite;
}
.tombola_a::after{
    content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.75),
    transparent
  );
  animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
  0% {
    left: -120%;
  }
  40% {
    left: 120%;
  }
  100% {
    left: 120%;
  }
}




.videos {
  padding: 20px 20px 60px;
  background: #ffffff;
  text-align: center;
}

.videos h2 {
  font-size: 32px;
  color: #222;
  margin-bottom: 10px;
}

.videos .subtitle {
  color: #666;
  font-size: 16px;
  margin-bottom: 50px;
}

.video-grid {
  display: grid;
  /* grid-template-columns: repeat(3, 1fr); */
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.video-item {
  position: relative;
  padding-top: 56.25%; /* 16:9 */
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.video-item iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Bouton */
.btn-videos {
  display: inline-block;
  margin-top: 50px;
  padding: 14px 36px;
  border-radius: 30px;
  background: rgb(0, 140, 255);
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-videos:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(249, 68, 3, 0.35);
}

@media (max-width: 900px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
}







.services {
  background: #f9f9f9;
  padding: 80px 20px;
  text-align: center;
}

.services h2 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #111;
}

.services .subtitle {
  font-size: 16px;
  color: #666;
  margin-bottom: 50px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.service-card {
  background: white;
  padding: 35px 25px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-card i {
  font-size: 40px;
  color: rgb(0, 140, 255);
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #111;
}

.service-card p {
  font-size: 15px;
  color: #555;
}



.offer {
  background: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.offer .container {
  max-width: 900px;
  margin: auto;
}

.offer h2 {
  font-size: 36px;
  color: #111;
  margin-bottom: 30px;
}

.offer p {
  font-size: 17px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

#about{
    padding: 10px;
    max-width: 1200px;
    margin: 40px auto;
}
.flex{
    display: flex;
    justify-content: space-between;
    /* align-items: center; */
    flex-wrap: wrap;
}
#about .flex div{
    padding: 12px;
    box-shadow: 10px 15px 10px lightgray;
    border-radius: 10px;
    width: 45%;
    background-color: white;
    margin: 20px auto;
}

#about div .flex{
    align-items: center;
}
.locuteur{
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-top: 40px;
}
.locuteur > img{
    width: 350px;
    /* height: auto; */
    border: 10px solid white;
    border-radius: 15px;
    box-shadow: 10px 15px 20px lightgray;
}
.locuteur div{
    max-width: 500px;
}

#ulinks{
    position: fixed;
    top: 100px;
    padding: 15px 10%;
    /* background-color: rgb(245, 245, 245); */
    left: 0;
    width: 80%;
    z-index: 15;
    height: 100%;
    display: none;
    background: rgba(255, 255, 255, 0.2); /* obligatoire */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
#ulinks a{
    display: block;
    margin: 10px 0px;
    color: rgb(29, 29, 29);
    padding-bottom: 10px;
    transition: 0.3s;
    border-bottom: 1px solid lightgray;
}
#ulinks a:hover{
    color: crimson;
    transition: 0.3s;
}

#burgers {
    width: 35px;
    cursor: pointer;
    display: none;
}

#burgers div {
    height: 4px;
    background-color: #000;
    margin: 6px 0;
    transition: 0.4s;
    border-radius: 2px;
}
.tombola_a {
    background-color: crimson;
    color: white !important;
    border-radius: 5px;
    padding: 5px 8px;
    text-shadow: 2px 2px 5px black;
    position: relative;
    display: inline-block;
}
#ulinks .tombola_a {
    width: fit-content;
}
#ulinks .mesTickets{
    width: fit-content;
}
.mesTickets{
    border: 1px solid crimson !important;
    display: inline-block;

    padding: 5px;
    border-radius: 5px;
    color: crimson !important;
    text-shadow: 2px 2px 5px rgb(232, 232, 232);
}
.mesTickets i {
    animation: spinY 2s linear infinite;
    transform-style: preserve-3d;
}

@keyframes spinY {
  from {
    transform: rotate(20deg) rotateX(0deg);
  }
  to {
    transform: rotate(20deg) rotateX(360deg);
  }
}
/* État actif → CROIX */
#burgers.active div:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
    transition: 0.3s;
}

#burgers.active div:nth-child(2) {
    opacity: 0;
}

#burgers.active div:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
    transition: 0.3s;

}



#reviews{
    padding: 60px 10px;
    background-color: white;
    margin: 40px 0px;
}

.logo-slider {
  overflow: hidden;
  /* background: #fff; */
  padding: 20px 0;
  white-space: nowrap;
  max-width: 1200px;
  margin: auto;
  position: relative;
}

.logo-slider .slide-track {
  display: flex;
  width: calc(200px * 10); /* 10 images, 200px chacune */
  animation: scroll 28s linear infinite;
}

.logo-slider .slide {
  height: 150px;
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-slider img {
  max-height: 100px;
  width: auto;
  filter: grayscale(20%);
  opacity: 0.9;
  transition: 0.3s;
  margin-right: 25px;
}

.logo-slider img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* Animation */
@keyframes scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


.tombola{
    max-width: 600px;
    margin: 50px auto;
    text-align: center;
}

.go {
  padding: 15px 30px;
  display: block;
  color: #111;
  border-radius: 20px;
  margin-top: 30px;
  font-weight: 600;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);

  background: linear-gradient(
    120deg,
    #ffffff,
    #9def7a,
    rgba(14, 242, 17, 0.35),
    #ffffff
  );
  background-size: 300%;
  animation: glowMove 3s ease-in-out infinite;

  text-shadow: 0 0 6px rgba(255, 255, 255, 0.8);
}

@keyframes glowMove {
  0% {
    background-position: 0%;
  }
  100% {
    background-position: 300%;
  }
}



.footer {
  background: #202020;
  color: #eee;
  padding: 60px 20px;
  text-align: center;
  margin-top: -50px;
  padding-top: 50px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: center;
}

.footer-col {
  max-width: 500px;
}

.footer-col h3 {
  font-size: 22px;
  margin-bottom: 25px;
  color: #fff;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 20px auto;
  max-width: 600px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 18px;
  font-size: 15px;
  color: #ccc;
  align-items: center;
}

.footer-contact i {
  color: rgb(0, 140, 255);
  font-size: 18px;
  margin-top: 3px;
}

.footer-contact a {
  color: #eee;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}


.copyright {
  background: #0d0d0d;
  color: #aaa;
  text-align: center;
  padding: 15px 10px;
  font-size: 14px;
}

.copyright strong {
  color: #fff;
}

.err{
    color: red;
    margin: 20px 10px;
    display: none;
}
#emailTickets{
    padding: 15px;
    font-size: 22px;
    width: 100%;
    border: 1px solid lightgray;
    border-radius: 5px;
    display: block;
    box-sizing: border-box;
}

.link-ticket{
    text-align: center;
    margin: 10px 0px;
    color: rgb(0, 140, 255);
}
.img-ticket{
    width: 300px;
    border-radius: 10px;
    box-shadow: 3px 10px 15px lightgray;
    margin: 10px;
    display: block;
    margin: 20px auto;
}

.tmp-ticket{
    display: inline-block;
    width: 200px;
    margin: 10px 10px 0px 0px;
    padding: 10px;
    box-shadow: 2px 5px 10px lightgray;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    padding-left: 50px;
}
.tmp-ticket i{
    position: absolute;
    font-size: 30px;
    opacity: 0.7;
    transform: rotate(-70deg);
    left: 0;
    top: 10px;
}
#call-i{
    position: fixed;
    bottom: 20px;
    left: 10px;
    z-index: 15;
}
#call-i a{
    display: block;
    margin: 10px 0px;
}
#call-i .fa-square-whatsapp{
    /* background-color: rgb(23, 187, 26); */
    color: rgb(23, 187, 26);
    font-size: 60px;
}
#call-i .fa-facebook{
    font-size: 40px;
    color: rgb(0, 140, 255);
    display: block;
        margin: 10px auto;
}
#call-i .fa-bars-staggered{
    border-radius: 50px;
    color: rgb(245, 245, 245);
    background-color: crimson;
    padding: 8px;
    font-size: 30px;
    display: block;
    text-align: center;
    margin: auto;
}
#call-i div{
  font-size: 10px;
  text-align: center;
}

#jukebox{
  padding: 100px 10px;
  background-color: white;
  text-align: center;
}
#jukebox h2 span{
  
  color: crimson;
}
#jukebox .imgs{
  position: relative;
}
#jukebox .imgs img{
  width: 160px;
  margin-left: -20px;

}
#jukebox .imgs img:nth-child(1){
  margin-top: -20px;
}
#jukebox iframe{
  margin: 30px auto;
  border-radius: 10px;
}