/*GENERAL*/

@font-face {
    font-family:'ChakraPetch';
    src: url('fonts/Chakra_Petch/Chakra_Petch/ChakraPetch-Regular.ttf'); 
   } 

@font-face {
    font-family:'Ibarra_Real_Nova';
    src: url('fonts/Chakra_Petch/Ibarra_Real_Nova/static/IbarraRealNova-Regular.ttf'); 
   } 

html, body {
  overflow-x: hidden;
}

body {  
    background-color:rgb(28, 28, 28);
    color: rgb(255, 255, 255) ; 
}

p{
    font-size: 20px; 
    font-family:'ChakraPetch';
} 

h1,h2,h3,h4,h5,h6 {
font-family: 'Ibarra_Real_Nova';  
}

/*BADGE*/ 

.badge {
  position : absolute;
  padding: 20px;
  margin-top: 50px;
}

.badge img {
  width: 88px;
  height: 31px;
  image-rendering: pixelated; 
}

.badge img:hover {
  opacity: 0.8;
}


/* MENU*/ 


.menu-item {
  position: absolute;
  z-index: 1000;
  color: white;
  font-size: 2rem;
  font-family: 'Ibarra_Real_Nova';
  text-decoration: none;
}

.menu-item:hover {
  color: #b52714;
}

.menu-accueil {
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
}

.menu-montages {
  left: 30px;
  top: 50%;
  transform: translateY(-50%) ;
}

.menu-photos {
  right: 30px;
  top: 50%;
  transform: translateY(-50%) ;
}

.menu-contact {  
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
}




/* YEUX QUI SUIVENT */ 
.eyes {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  text-align: center;
}

.eye {
  width: 240px;
  height: 120px;
  background: #fff;
  display: inline-block;
  margin: 40px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
}

.ball {
  width: 80px;
  height: 80px;
  background: #000;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
} 











/* MONTAGES*/ 

.montages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 30px;
  padding: 120px 30px 80px;
  max-width: 1400px;
  margin: 0 auto;
}

.video-item {
  background: rgba(255, 255, 255, 0.788);
  color :rgb(28, 28, 28);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
  position: relative;
}

.video-item:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(181, 39, 20, 0.3);
}

.video-item iframe {
  width: 100%;
  height: 280px;
  border: none;
  display: block;
}

.video-desc {
  padding: 20px;
}

.video-desc p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
}

.video-desc p small {
padding: 30 px;
color:#b52714

}

.video-desc strong {
  color: #b52714;
}


@media (max-width: 1024px) {
  .montages {
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 25px;
    padding: 100px 25px 60px;
  }
  
  .video-item iframe {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .montages {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 90px 20px 50px;
  }
  
  .video-item iframe {
    height: 220px;
  }
  
  .video-desc {
    padding: 18px;
  }
}

@media (max-width: 480px) {
  .montages {
    padding: 80px 15px 40px;
    gap: 18px;
  }
  
  .video-item iframe {
    height: 200px;
  }
  
  .video-desc p {
    font-size: 0.95rem;
  }
}












/*PHOTOS*/

.photos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);  /*ORDI*/
  gap: 20px;
  padding: 120px 30px 60px;               
  max-width: 1400px;
  margin: 0 auto;
}

.item {
  background : #b52714;  
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.item:hover {
  transform: translateY(-8px);
}

.item img {
  width: 100%;
  height: 250px;                         
  object-fit: cover;                      
  display: block;
}

.item p {
  padding: 15px 20px 20px;
  margin: 0;
  font-size: 0.95rem;
  text-align: center;
}


@media (max-width: 1024px) { /* TABLETTE */
  .photos {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    padding: 100px 25px 50px;
  }
  
  .item img {
    height: 220px;
  }
}


@media (max-width: 768px) { /* MOBILE LARGE */
  .photos {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 90px 20px 40px;
  }
  
  .item img {
    height: 200px;
  }
  
  .item p {
    font-size: 0.9rem;
    padding: 12px 15px 15px;
  }
}


@media (max-width: 480px) {  /* MOBILE  */
  .photos {
    grid-template-columns: 1fr;           
    gap: 12px;
    padding: 80px 15px 30px;
  }
  
  .item img {
    height: 280px;                        
  }
  
  .item p {
    font-size: 1rem;
  }
}














/*CONTACT*/
.contact {
  padding: 120px 30px 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-content {
  display: flex;
  gap: 60px;
  align-items: center;
}

.contact-text {
  flex: 1;
}

.contact-text h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.contact-text p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.contact-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-icon {
  width: 50px;
  height: 50px;
}

.social-links {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.social-links img {
  width: 40px;
  height: 40px;
  transition: transform 0.3s;
}

.social-links a:hover img {
  transform: scale(1.1);
}


@media (max-width: 768px) {
  .contact-content {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
  
  .contact-text h1 {
    font-size: 2rem;
  }
  
  .info-item {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .contact {
    padding: 100px 20px 40px;
  }
}

/*MENTIONS LEGALES*/

.modal {
      display: none;
      position: fixed;
      z-index: 1000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.7);
    }

    .modal-content {
      background-color: #fefefe;
      margin: 5% auto;
      padding: 30px;
      border: 5px solid #b52714;
      border-radius: 15px;
      width: 80%;
      max-width: 600px;
      max-height: 80vh;
      overflow-y: auto;
      box-shadow: 0 0 20px #b52714 ;
      animation: slideIn 0.3s ease-out;
    }

    @keyframes slideIn {
      from {
        transform: translateY(-50px);
        opacity: 0;
      }
      to {
        transform: translateY(0);
        opacity: 1;
      }
    }

    .close {
      color: #b52714;
      float: right;
      font-size: 35px;
      font-weight: bold;
      cursor: pointer;
      line-height: 20px;
    }

    .close:hover,
    .close:focus {
      color: #b52714;
    }

    .modal-content h2 {
      color: #b52714;
      text-align: center;
      margin-bottom: 20px;
      font-size: 24px;
    }

    .modal-content h3 {
      color: #b52714;
      margin-top: 20px;
      margin-bottom: 10px;
      font-size: 18px;
    }

    .modal-content p {
      line-height: 1.6;
      margin-bottom: 15px;
      color: #333;
    }

    .mentions-link {
      cursor: pointer;
      text-decoration: underline;
      font-weight: bold;
      display: inline-block;
      margin-top: 20px;
    }

    .mentions-link:hover {
      color: #b52714;
    }

    .modal-content::-webkit-scrollbar {
      width: 12px;
    }

    .modal-content::-webkit-scrollbar-track {
      background: #b52714;
    }

    .modal-content::-webkit-scrollbar-thumb {
      background: #b52714;
      border-radius: 6px;
    }

    .modal-content::-webkit-scrollbar-thumb:hover {
      background: #b52714;
    }

