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

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


.parallax {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.parallax__bg,
.parallax__layer {
  position: absolute;
  top: 0;
  width: 100%;
  height: auto;
  object-fit: cover;
  will-change: transform;
  transition: transform 0.1s linear;
}


.parallax__bg {
  z-index: 1;
}


.parallax__layer--2 {
  top: 50%;
  left: 50%;
  width: 70%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.parallax__layer--3 {
  top: 55%;
  right: 60%;
  width: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.hero {
  background-color: rgba(0, 0, 0, 0.8);
  padding: 5rem 1rem;
  text-align: center;
}

.hero-overlay h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #ff4c4c;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-overlay p {
  font-size: 2.2rem;
  color: #ccc;
}


section {
  padding: 4rem 2rem;
  margin: 0 auto;
  text-align: center;
}

h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: #ff4c4c;
}

.texte-blanc {
  color: #f0f0f0;
  font-size: 2.1rem;
}


.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 76, 76, 0.3);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}


.images-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.images-container img {
  width: 40%;
  min-width: 180px;
  border-radius: 10px;
  transition: transform 0.4s ease, box-shadow 0.3s;
}

.images-container img:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(255, 76, 76, 0.4);
}


.realisateur-acteur {
  display: flex;
  justify-content: center;
  gap: 4rem;
}

.person {
  text-align: center;
}

.person img {
  width: 130px;
  border: 2px solid #ff4c4c;
  border-radius: 10px;
  margin-bottom: 0.5rem;
  transition: transform 0.3s, box-shadow 0.3s;
}

.person img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255, 76, 76, 0.5);
}

.person p {
  font-size: 2rem;
  color: #ccc;
}


.cta-section {
  background-color: #222;
  padding: 3rem 1rem;
}

.cta-button {
  display: inline-block;
  margin-top: 2rem;
  padding: 1rem 2rem;
  background-color: #ff4c4c;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-size: 2rem;
  font-weight: bold;
  transition: background 0.3s, transform 0.3s;
}

.cta-button:hover {
  background-color: #e63b3b;
  transform: scale(1.05);
}


footer {
  background-color: #111;
  padding: 2rem 1rem;
  text-align: center;
  color: #aaa;
}

.social-icons a {
  color: #aaa;
  margin: 0 10px;
  font-size: 2.5rem;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #ff4c4c;
}


@media (max-width: 768px) {
  .parallax__layer--2, 
  .parallax__layer--3 {
    width: 90%;
    top: 55%;
  }

  .images-container img {
    width: 80%;
  }

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

  .hero-overlay h1 {
    font-size: 2.2rem;
  }

  .hero-overlay p {
    font-size: 1rem;
  }
}
