@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Unica+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #111;
  color: #fff;
  overflow-x: hidden;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 80px;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 1000;
}

.logo-img {
  height: 80px;
  display: flex;
  align-items: center; 
  padding-left: 20px;
}

.logo-img img {
  height: auto;
  max-height: 70px;
  max-width: 300px;
  width: auto;
  object-fit: contain;
}

nav a {
  color: #ccc;
  margin: 0 10px;
  text-decoration: none;
  line-height: 80px;
  transition: color 0.3s;
  font-weight: 500;
  font-family: 'Nunito Sans', 'Avenir Next', sans-serif;
}

nav a.active,
nav a:hover {
 color: #ffcc70;
  font-weight: bold;
}

.page {
  min-height: 100vh;
  padding-top: 80px;
}

/* Bandeau d'accueil visuel */
.accueil-banner {
  width: 100%;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 80px; /* compense la hauteur du menu fixe */
  padding-bottom: 0px;
}

.banner-img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
}

/* Bienvenue sous le bandeau */
.hero-text-welcome {
  background-color: #000;
  padding: 60px 20px 40px;
  text-align: center;
}

.hero-text-welcome .hero-text {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: 0.4s;
}

.hero-text-welcome h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.hero-text-welcome h1 span {
  color: #e31b23;
}

.hero-text-welcome p {
  font-size: 1.1rem;
  color: #ccc;
}

/* Cartouche bande-annonce */
.trailer-section {
  background: #191919;
  padding: 60px 10% 60px;
  text-align: center;
}

.trailer-section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.trailer-section iframe {
  width: 100%;
  max-width: 800px;
  aspect-ratio: 16 / 9;
  border: none;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0,0,0,0.4);
}

/* Section générique */
.section-card {
  background: #111;
  padding: 60px 10% 80px;
  color: #fff;
  text-align: center;
}

.trailer-section.alt, .section-card.alt, .actualites, .news-section {
  background-color: #191919;
}

.section-card h2 {
  font-size: 2.2rem;
  margin-bottom: 30px;
}

.section-card p {
  max-width: 800px;
  margin: 0 auto 30px;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Présentation bio Sabrina & Steven */
.bio-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
    justify-content: center;
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
}

.bio-photo {
  flex: 1 1 300px;
  text-align: center;
}

.bio-photo img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0,0,0,0.5);
}

.bio-text {
  flex: 2 1 500px;
  font-size: 1rem;
  line-height: 1.6;
  text-align: left;
}

.bio-text p {
  margin-bottom: 15px;
}

.bio-text ul {
  margin: 10px 0 20px 20px;
  padding-left: 0;
  list-style-type: disc;
}

.bio-text li {
  margin-bottom: 8px;
}

/* Équipe */
.team {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.card {
  background: #222;
  padding: 20px;
  border-radius: 10px;
  width: 250px;
  transition: transform 0.3s;
  text-align: center;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  border-radius: 50%;
  margin-bottom: 15px;
}

/* Actualités */
.news {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.news-item {
  background: #222;
  padding: 20px;
  max-width: 600px;
  border-radius: 10px;
  text-align: left;
}

/* Bouton */
.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  background: #e31b23;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #ff2e2e;
}

/* Accueil banner (section) ↓ */
.accueil-banner {
  width: 100%;
  background: #000;
  display: block;
  margin-top: 0px; /* menu fixe */
}
.banner-img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
}

/* Bloc de bienvenue intégré dans la bio-section */
.bio-welcome {
  margin-bottom: 40px;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: 0.2s;
}
.bio-welcome h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}
.bio-welcome h1 span {
  color: #e31b23;
}
.bio-welcome p {
  font-size: 1.1rem;
  color: #ccc;
}

.fade-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-text {
  text-align: center;
  margin: 2em 0;
}
.hero-text h1 {
  font-size: 2.2em;
  font-weight: bold;
  margin-bottom: 0.2em;
}
.hero-text h2 {
  font-size: 2em;
  margin-bottom: 0.5em;
}
.hero-text p {
  font-size: 1.2em;
  color: #444;
  margin-bottom: 0.5em;
}
.cta-banner {
  background-color: #b10000;
  color: white;
  display: inline-block;
  padding: 0.6em 1.2em;
  border-radius: 5px;
  font-weight: bold;
  margin-top: 1em;
  font-size: 1em;
}

.trailer-section {
  text-align: center;
  padding: 4em 1em;
  background-color: #111;
  color: white;
}

.hero-text h1 {
  font-size: 2.5em;
  margin-bottom: 0.2em;
  font-weight: bold;
}

.hero-text h2 {
  font-size: 2.3em;
  margin-bottom: 0.4em;
  font-weight: bold;
}

.hero-text p {
  font-size: 1.1em;
  color: #ccc;
  margin-top: 30px;
}

.cta-banner-box {
  margin: 1em auto 2em;
}

.cta-banner {
  background-color: #b10000;
  padding: 0.7em 1.4em;
  font-size: 1.1em;
  font-weight: bold;
  border-radius: 6px;
  display: inline-block;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.4);
}

.trailer-box {
  margin-top: 1em;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.click-to-watch-text {
  font-size: 1.2em;
  margin-bottom: 0.5em;
  color: #ffcc00;
  font-weight: bold;
}

.trailer-poster {
  width: 90%;
  max-width: 600px;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.trailer-poster:hover {
  transform: scale(1.03);
}

.trailer-box {
  position: relative;
  display: inline-block;
  margin-top: 1.5em;
  cursor: pointer;
}

.trailer-poster {
  display: block;
  max-width: 100%;
  border-radius: 10px;
}

.trailer-overlay {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.7);
  color: #ffcc00;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  pointer-events: auto;
  transition: opacity 0.3s ease;
  opacity: 0;
}

.trailer-box:hover .trailer-overlay {
  opacity: 1;
  animation: pulse 1.5s infinite;
}

.modal-overlay {
    left: 50%;
    top: 50%;
    position: absolute;
    min-width: 100%;
    transform: translate(-50%, -50%);
}

#modalOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#modalContent {
  position: relative;
  background: transparent;
  padding: 0;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.8);
}

#closeModalBtn {
  position: absolute;
  top: -15px;
  right: -15px;
  background: white;
  color: black;
  border-radius: 50%;
  font-size: 20px;
  border: none;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 10000;
}

.lldm-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
  color: #fff;
}

.production-tag {
  font-size: 1rem;
  font-weight: normal;
  color: #ccc;
}

.lldm-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 40px;
	align-items: flex-start;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 50px;
}

.lldm-affiche img {
  width: 100%;
  max-width: 460px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.lldm-texte {
  max-width: 700px;
  color: #fff;
  text-align: left;
  line-height: 1.6;
  font-size: 1.1rem;
}

.lldm-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.lldm-buttons .btn {
  padding: 12px 24px;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 8px;
}

.btn-secondary {
  background-color: #333;
  color: #ccc;
}

.lldm-hero {
  width: 100%;
  overflow: hidden;
}

.lldm-banner {
  width: 100%;
  max-height: 60vh;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.lldm-texte {
  max-width: 900px;
  margin: 2rem auto;
  padding: 0 1rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

.lldm-longtext {
  max-width: 1000px;
  margin: 0 auto;
  padding: 1rem;
  white-space: pre-line;
}

.lldm-buttons {
  text-align: center;
  margin: 3rem 0;
}

.lldm-buttons .btn {
  margin: 0 1rem;
}

.text-columns {
  column-count: 2;
  column-gap: 40px;
  text-align: justify;
}

.top-page{
	margin-top: 80px;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 5px;
  font-weight: bold;
}

.form-group input,
.form-group textarea {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  background-color: #f9f9f9;
}

.contact-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  text-align: left;
}

.intro-contact {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-style: italic;
  color: #ccc;
}

.styled-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-line {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #fff;
}

.form-group input,
.form-group textarea {
  padding: 12px 15px;
  border-radius: 10px;
  border: none;
  background-color: #1e1e1e;
  color: #fff;
  font-size: 1rem;
  box-shadow: 0 0 0 1px #444 inset;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  box-shadow: 0 0 0 2px #c00 inset;
}

textarea {
  resize: vertical;
}

.btn {
  background-color: #c00;
  color: #fff !important;
  padding: 14px 28px;
  font-weight: bold;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  align-self: flex-start;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #a00;
}

.main-footer {
  background: #111;
  color: #ccc;
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
}

.footer-links a {
  color: #ccc;
  text-decoration: underline;
  margin: 0 0.5rem;
}

.footer-links a:hover {
  color: #fff;
}

.footer-credit {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  opacity: 0.8;
}

/* MODALES */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  padding-top: 80px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.8);
}

.modal-content {
  background-color: #1e1e1e;
  margin: auto;
  padding: 2rem;
  border-radius: 12px;
  width: 90%;
  max-width: 600px;
  color: #fff;
  box-shadow: 0 0 10px #000;
  position: relative;
}

.modal-content h2 {
  font-family: 'Nunito Sans', 'Avenir Next', sans-serif;
  margin-bottom: 1rem;
}

.modal-content p {
  line-height: 1.6;
}

.close {
  color: #aaa;
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: #fff;
}


.main-footer {
  background-color: #1c0005;
  background-color: #1c0005;
  color: #ccc;
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
  border-top: 1px solid #333;
}

.footer-links a {
  color: #ccc;
  margin: 0 10px;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
  text-decoration: none;
}

.footer-credit {
  margin-top: 0.8rem;
  font-size: 0.85rem;
  opacity: 0.7;
}
.header-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-img a {
  display: inline-block;
}

.logo-img a:hover {
  opacity: 0.9; /* ou un petit effet si tu veux */
}

.realisations-tabs {
  display: flex;
  justify-content: center;
  margin: 40px 0 20px;
  gap: 20px;
}

.tab-btn {
  background: transparent;
  color: #fff;
  font-size: 1.2rem;
  border: 2px solid #c00;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.tab-btn.active,
.tab-btn:hover {
  background: #c00;
  color: #fff;
}

.vimeo-player-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  aspect-ratio: 16/9;
}

.video-thumbnails {
  max-width: 1200px;
  margin: 40px auto;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.video-thumb {
  cursor: pointer;
  width: 200px;
  transition: transform 0.2s;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 8px rgba(0,0,0,0.3);
}

.video-thumb:hover {
  transform: scale(1.05);
}

.video-thumb img {
  width: 100%;
  display: block;
}

.video-thumbnails {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 2rem;
}

.thumb-item {
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s ease;
  width: 200px;
}

.thumb-item:hover {
  transform: scale(1.05);
}

.thumb-item img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.thumb-title {
  margin-top: 10px;
  font-family: 'Nunito Sans', 'Avenir Next', sans-serif;
  font-size: 1rem;
  color: #fff;
}

.video-thumbnails {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  max-width: 1200px;
  margin-inline: auto;
  /*padding-inline: 20px;*/
}

.thumb {
  cursor: pointer;
  text-align: center;
  transition: transform 0.2s ease;
}

.thumb img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(255,255,255,0.1);
}

.thumb:hover {
  transform: scale(1.02);
}

.thumb-title {
  margin-top: 12px;
  font-weight: 500;
  font-size: 1rem;
  color: white;
}

.nav-link {
  position: relative;
  text-decoration: none;
  color: white;
  font-weight: 600;
  font-size: 18px;
  transition: transform 0.3s ease, color 0.3s ease;
  display: inline-block;
  padding-bottom: 5px; /* pour espace entre texte et la barre */
}

.nav-link:hover {
  transform: scale(1.1);
  color: #ffcc70;
}

/* Barre underline fluide */
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #ffcc70;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}





/* --- BURGER MENU --- */
.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 20px;
  cursor: pointer;
  z-index: 1001;
}

.burger span {
  display: block;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Animation en croix */
.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
/* --- BURGER MENU --- */

.vimeo-player-wrapper.highlight {
  animation: flashHighlight 1s ease-out;
}

.lldm-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.lldm-buttons .btn {
  min-width: 240px;
  text-align: center;
}

/* Responsive : sur téléphone, les boutons passent en colonne */


@keyframes flashHighlight {
  0% { box-shadow: 0 0 0px rgba(255,255,255,0); }
  50% { box-shadow: 0 0 20px rgba(255,255,255,0.7); }
  100% { box-shadow: 0 0 0px rgba(255,255,255,0); }
}












/* TITRES GÉNÉRAUX */
/* Titres harmonisés avec une belle police */
.section-card h1,
.section-card h2,
.trailer-section h1,
.trailer-section h2,
.lldm-section h1,
.lldm-section h2,
.hero-text h1,
.hero-text h2 {
  font-family: 'Unica One', sans-serif;
  font-family: 'Anton', sans-serif;
  font-family: 'Nunito Sans', 'Avenir Next', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.2;
  text-align: center;
  color: #fff;
}

/* Variante secondaire pour sous-titre ou complément comme "En cours de production" */
.production-tag {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: normal;
  color: #ccc;
  margin-left: 10px;
}

.section-card h2,
.trailer-section h2,
.lldm-section h2,
.hero-text h2 {
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .vimeo-player-wrapper {
    margin-top: 20px !important;
  }
	
	.section-card.top-page {
    padding-bottom: 0;
    margin-bottom: 0;
  }
	
	iframe#main-vimeo-player{
		
	}
}

@media (max-width: 768px) {
  .lldm-buttons {
    flex-direction: column;
    align-items: center;
  }

  .lldm-buttons .btn {
    width: 90%;
    max-width: 300px;
  }
}

/* Animations */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* --- BURGER MENU --- */
@media (max-width: 768px) {
	
	.nav-link::after {
	  content: "";
	  position: absolute;
	  bottom: 0px;
	  left: 0;
	  width: 100%;
	  height: 2px;
	  background: #ffcc70;
	  transform: scaleX(0);
	  transform-origin: left;
	  transition: transform 0.3s ease;
	}
	
  .burger {
    display: flex;
    margin-left: auto;
  }

  nav#nav-menu {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: #111;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 30px 0;
    transform: translateY(-200%);
    transition: transform 0.3s ease;
    z-index: 1000;
  }

  nav#nav-menu.active {
    transform: translateY(0);
  }

  nav#nav-menu a {
    font-size: 1.2rem;
  }
}
/* --- BURGER MENU --- */

/* Responsive */
@media screen and (max-width: 768px) {
	
	
	
	
  header {
    flex-direction: column;
    height: auto;
    padding: 10px 20px;
  }

  .logo-img {
    justify-content: center;
    height: auto;
    padding-left: 0;
  }

  .logo-img img {
    max-width: 200px;
    max-height: 60px;
  }

  nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 10px;
  }

  nav a {
    line-height: 1.5;
    padding: 10px;
  }

  .hero-text-welcome h1 {
    font-size: 1.6rem;
  }

  .hero-text-welcome h2 {
    font-size: 2.2rem;
  }

  .bio-container {
    flex-direction: column;
    align-items: center;
  }

  .bio-text {
    text-align: left;
    width: 100%;
  }

  .team {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 90%;
  }

  .news-item {
    width: 90%;
  }

  .trailer-section iframe {
    width: 100%;
  }
	
 .text-columns {
    column-count: 1;
  }
}

.trailer-section {
  text-align: center;
  margin: 0px auto;
}

.trailer-poster {
  position: relative;
  display: inline-block;
  cursor: pointer;
  max-width: 700px;
  width: 90%;
}

.trailer-poster img {
  width: 100%;
  border-radius: 8px;
  transition: opacity 0.3s ease;
}

.trailer-poster .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.trailer-poster:hover .overlay {
  opacity: 1;
}

/* Popup */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.9);
}

.modal-content {
  position: relative;
  margin: 5% auto;
  width: 80%;
  max-width: 900px;
  background: #000;
  border-radius: 10px;
  padding: 10px;
}

.modal-content iframe {
  width: 100%;
  height: 500px;
  border: none;
}

.close {
  position: absolute;
  top: 10px; right: 20px;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}

.ap-badge{
    display: block;
    margin-bottom: 10px;
    padding: 4px 8px;
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: .2px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #e11d48, #fb7185);
    box-shadow: 0 6px 18px rgba(225, 29, 72, .35);
    text-transform: uppercase;
}

.lldm-affiche img{
	max-width: 450px;
}

.thumb img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #111; /* skeleton */
}

.video-details{
  max-width: 1200px;
  margin: 24px auto 0;
  padding: 20px;
  border-radius: 12px;
  background: #1a1a1a;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.06) inset;
}

.video-desc{
  font-size: 1.05rem;
  line-height: 1.7;
  color: #e6e6e6;
  margin-bottom: 16px;
  text-align: left;	
}

.rating-block{
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 6px;
  margin-bottom: 14px;
}

.rating-label{
  font-weight: 700;
  color: #fff;
  font-family: 'Nunito Sans','Avenir Next',sans-serif;
}

.rating-stars{
  display: inline-flex;
  gap: 8px;
}

.rating-stars .star {
  font-family: Arial, sans-serif;
  font-size: 28px;
  cursor: pointer;
  user-select: none;
  color: #666;
  transition: transform 0.12s ease, color 0.12s ease;
}

.rating-stars .star.hover,
.rating-stars .star.selected {
  color: #ffcc00; /* or */
}

.rating-stars .star.hover,
.rating-stars .star.selected{
  opacity: 1;
  transform: translateY(-1px);
}

.video-actions{
  margin-top: 10px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-vod, .btn-dvd{
  text-decoration: none;
}

.btn-vod{
  background: #c00;
}
.btn-vod:hover{
  background: #a00;
}
.btn-dvd{
  background: #333;
  color: #eee !important;
}
.btn-dvd:hover{
  background: #444;
}

.rating-stars .star::before {
  content: "\2605"; /* caractère Unicode de l’étoile ★ */
}

.rating-stars .star {
  font-family: Arial, sans-serif; /* pour forcer un caractère étoile correct */
  font-size: 30px;
  color: #555; /* gris par défaut */
  cursor: pointer;
  transition: color 0.2s, transform 0.2s;
}

.rating-stars .star:hover,
.rating-stars .star.hover {
  color: #ffcc00; /* jaune doré au survol */
  transform: scale(1.2);
}

.rating-stars .star.selected {
  color: #ffcc00; /* jaune quand sélectionné */
}

.video-title{
  font-family: 'Nunito Sans','Avenir Next',system-ui,-apple-system,sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: #fff;
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Barre fine avant le titre */
.video-title::before{
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.15);
  margin-right: 12px;
}

/* Barre fine après le titre */
.video-title::after{
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.15);
  margin-left: 12px;
}

/* --- Navigation --- */
#nav-menu .nav-link {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* --- Tous les titres Hx --- */
h1, h2, h3, h4, h5, h6 {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  color: #fff; /* pour rester lisible sur fond sombre */
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

.footer-social {
  margin: 20px 0;
  display: flex;
  gap: 18px;
  justify-content: center;
}

.footer-social a svg {
  width: 26px;
  height: 26px;
  opacity: 0.85;
  transition: opacity 0.3s ease, transform 0.2s ease;
}

.footer-social a:hover svg {
  opacity: 1;
  transform: scale(1.1);
}

/* ===== ACTUALITÉS ===== */
.news-section { padding-top: 32px; }
.quotes-title { /* même style que tes autres titres */
  font: 800 1.8rem/1 'Nunito Sans', system-ui, sans-serif;
  letter-spacing: .02em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.news-grid{
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}

.news-card{
  background: #1a1a1a;
  border-radius: 16px;
  padding: 20px 22px;
  box-shadow: 0 0 0 1px rgba(255,255,255,.06) inset,
              0 12px 28px rgba(0,0,0,.35);
  transition: transform .25s ease, box-shadow .25s ease;
}
.news-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 0 0 1px rgba(255,255,255,.08) inset,
              0 16px 36px rgba(0,0,0,.45);
}

.news-head{ margin-bottom: 8px; }
.news-badge{
  display: inline-block;
  font: 800 .9rem/1 'Nunito Sans', system-ui, sans-serif;
  letter-spacing: .03em;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: 999px;
  color: #fff;
}

.news-text{
  color: #e9e9e9;
  line-height: 1.6;
  margin: 8px 0 14px;
}

/* Bouton rouge cohérent avec le site */
.btn.btn-red{
  background:#c00000;
  color:#fff !important;
  border:0;
  border-radius:12px;
  font-weight:800;
  padding:.85rem 1.1rem;
  box-shadow:0 8px 20px rgba(192,0,0,.35), inset 0 0 0 1px rgba(255,255,255,.06);
  transition:filter .2s ease, transform .06s ease;
  text-decoration:none;
  display:inline-block;
}
.btn.btn-red:hover{ filter:brightness(1.06); }
.btn.btn-red:active{ transform: translateY(1px); }


.burger {
  position: relative;
  display: none;         /* activé en media query */
  width: 28px;
  height: 22px;
  cursor: pointer;
  z-index: 1001;
}

.burger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;           /* épaisseur */
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, top 0.3s ease, opacity 0.2s ease;
}

/* état "menu" */
.burger span:nth-child(1) { top: 0; }
.burger span:nth-child(2) { top: 9px; }   /* au milieu */
.burger span:nth-child(3) { top: 18px; }

/* état "croix" */
.burger.active span:nth-child(1) {
  top: 9px;
  transform: rotate(45deg);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  top: 9px;
  transform: rotate(-45deg);
}

/* --- BURGER MENU --- */
@media (max-width: 1160px) {
  .nav-link::after {
    bottom: 0; /* tu l’avais déjà adapté pour mobile */
  }

  .burger {
    display: flex;
    margin-left: auto;
  }

  nav#nav-menu {
    position: absolute;
    top: 80px;           /* aligne avec la hauteur de ton header */
    left: 0;
    right: 0;
    background: #111;
    display: flex;       /* important si nav était en inline avant */
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 30px 0;
    transform: translateY(-200%);
    transition: transform 0.3s ease;
    z-index: 1000;
  }

  nav#nav-menu.active {
    transform: translateY(0);
  }

  nav#nav-menu a {
    font-size: 1.2rem;
    line-height: 1.6;
    padding: 8px 0;
  }
}
/* --- BURGER MENU --- */
















































































