/* 4h12.css - Styles spécifiques à la page 4h12 */

/* Annulation du fond blanc hérité pour le header */
header {
  background: transparent !important;
  box-shadow: none;
}

/* Fond de page avec background2 */
body {
  background: url('../images/background2.png') no-repeat center center;
  background-size: cover;
}

/* Titre d'introduction */
.intro-header {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 30px 30px;
  margin-top: 50px;
  border-radius: 15px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.intro-header h1 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
}

.intro-header .intro-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #eee;
  max-width: 700px;
  margin: 0 auto 20px auto;
}

.intro-header a {
  display: inline-block;
  background: linear-gradient(45deg, #ff0057, #d100ff);
  padding: 10px 20px;
  border-radius: 25px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.intro-header a:hover {
  background: linear-gradient(45deg, #d100ff, #ff0057);
}



/* ------------------------------------
   Contenu Principal
------------------------------------ */
.content-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 100px 20px 50px; /* Réduction de l'espace inférieur pour rapprocher la galerie */
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* Vidéo (Bloc Ambre) agrandie */
.video-container {
  flex: 1;
  max-width: 500px;
}

.video-container video {
  width: 100%;
  border-radius: 10px;
}

/* Section Textuelle et Stat */
.text-container {
  flex: 1;
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}

.text-container h2,
.text-container p {
  margin-bottom: 20px;
}

/* Bloc Statistique */
.stat-block {
  margin: 30px 0;
}

.stat-block h3 {
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  margin: 0;
}

.stat-block p {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
}

/* Liens vers les plateformes de podcast */
.podcast-links a img {
  display: inline-block;
  margin: 0 10px;
  width: 50px;
  transition: transform 0.3s ease;
}

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

/* ------------------------------------
   Galerie des Invités (2 lignes de 3)
------------------------------------ */
.gallery-section {
  padding: 30px 20px;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 50px; /* Espace supplémentaire avant le footer */
}

.gallery-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  text-align: center;
}

.gallery-item a {
  text-decoration: none;
  color: inherit;
}

.gallery-item img {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

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

.gallery-item p {
  margin-top: 8px;
  color: #fff;
  font-size: 1rem;
  text-align: center;
}

/* ------------------------------------
   Adaptation Mobile
------------------------------------ */
@media (max-width: 768px) {
  .content-container {
    flex-direction: column;
    padding: 20px;
  }
  .video-container {
    order: 1;
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 20px auto;
  }
  .video-container video {
    width: 90%;
    max-width: 500px;
  }
  .text-container {
    order: 2;
    width: 100%;
    max-width: 600px;
    padding: 20px;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
