/* Réinitialisation des marges et des rembourrages */
* {
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.intro {
  position: relative; /* Position de référence */
  display: flex;
  justify-content: center; /* Centre horizontalement */
  align-items: center; /* Centre verticalement */
  height: 100vh; /* Utilise toute la hauteur de l'écran */
  overflow: hidden; /* Évite tout débordement */
}

.intro-logo {
  position: absolute; /* Permet une animation indépendante */
  max-width: 80%; /* Ajuste la taille */
  height: auto;
  animation: logo-center 4s ease forwards; /* Animation pour recentrer */
}

@keyframes logo-center {
  0% {
    opacity: 0;
    transform: scale(0.85) translateY(30px);
    filter: drop-shadow(0 0 2rem rgba(255, 255, 255, 0.457)) blur(0.5rem);
  }
  100% {
    opacity: 1;
    transform: scale(0.9) ;
    filter: drop-shadow(0 0 0) blur(0);
  }
}

.full-height {
  margin: 8rem 0;
  padding: 4rem;
  opacity: 0;
  transform: translateY(250px);
  transition: opacity 1s ease, transform 1s ease;
}

.full-height.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Style de base pour le corps du site */
/* Styles de base pour les écrans plus petits */
body {
  background: linear-gradient(#ffffff09, #000000);
  font-family: 'roboto', sans-serif;
  background-color: hwb(0 4% 96%); /* Fond noir */
  color: #fff; /* Texte blanc */
  font-size: 16px; /* Taille de police de base */
  line-height: 3;
  text-align: center;
  overflow-y: scroll; /* Ajout d'une barre de défilement même lorsque la page est courte */
  scroll-behavior: smooth; /* Ajout d'une transition de défilement agréable */
}



/* Style des liens */
a {
  text-decoration: none;
  color: #ffffff;
}

a:hover {
  color:rgb(192, 255, 255);
}

/* Style de la section EP */
.ep-cover-container {
  position: relative;
  top: 0;
  left: 0;
  margin: 0 auto; /* Centre l'image horizontalement */
  max-width: 500px;
  width: 100%;
  transition: 0.3s;
}

.zoomable {
  position: relative;
  overflow: hidden;
  max-width: 500px; /* Taille maximale de l'image, ajustez selon vos besoins */
  margin: 0 auto; /* Centre l'image horizontalement */
}

.zoomable:hover {
  transform: scale(1.1); /* Agrandissez l'image au survol */
}


#ep-cover {
  max-width: 100%;
  height: auto;
  cursor: pointer;
}

/* Ajustez la position verticale des logos */
#streaming-platforms {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #007bff00;
}

.logos {
  max-width: 100px; /* Taille maximale des logos de plateforme réduite */
  margin: 0.5rem 0; /* Marge autour des logos */
  opacity: 90%;
  transition: filter 0.6s ease,;
}

.logos:hover {
  filter: drop-shadow(0px 0px 10px rgba(255, 255, 255, 0.531));
  transform: scale(1.1);
  opacity: 100%;
}

/* Style de la section YouTube */
.conteneur-video {
  width: 250px;
  height: 250px;
  margin: 0 auto; /* Centre l'élément horizontalement */
  overflow: hidden; /* Pour cadrer la vidéo */
  transition: 0.3s;
}

/* Le conteneur iframe de la vidéo YouTube */
.conteneur-video iframe {
  width: 100%;
  height: 100%;
  border: none; /* Supprimer la bordure par défaut de l'iframe */
}

/* Style de la section Bandcamp */
#bandcamp a {
  display: inline-block;
  background-color: #007BFF;
  color: #fff;
  padding: 0.5rem 1rem;
  margin-top: 1rem;
  border-radius: 5px;
  text-align: center;
}

/* Style de la section Concerts */
#concerts ul {
  list-style-type: none;
  padding: 0;
}


#concerts li {
  margin-bottom: 0.5rem;
}

#newsletter {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
  text-align: center;
}

#newsletter h2 {
  margin-bottom: 1rem;
}

#newsletter form {
  display: flex;
  gap: 1rem;
}

#newsletter input[type="email"] {
  padding: 0.8rem 1rem;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  flex: 1;
  max-width: 300px;
  background: #444;
  color: white;
}

#newsletter button {
  padding: 0.8rem 1.5rem;
  background: #ffffff;
  color: rgb(0, 0, 0);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1rem;
}

#newsletter button:hover {
  background-color: #000000;
  background: #ffffff;
  transform: scale(1.05);
}

/* Style de la section Contact */
footer {
  background-color: transparent; /* Fond transparent */
  color: #fff; /* Texte blanc */
  text-align: center;
  padding: 1rem;
}

#contact a {
  display: block; /* Met les liens sur des lignes distinctes */
  margin-bottom: 1rem; /* Ajoute un espace entre les liens */
}

/* Styles spécifiques aux écrans plus larges */
@media screen and (min-width: 768px) {
  body {
    font-size: 18px; /* Taille de police de base */
  }

  .ep-cover-container {
    max-width: 350px;
    width: 100%;
  }

  .logos {
    margin: 1rem 0; /* Espacement maximum entre les logos, ajustez selon vos besoins */
  }

  .conteneur-video {
    width: 350px;
    height: 350px;
  }
  
}

/* Styles spécifiques aux écrans encore plus larges */
@media screen and (min-width: 1024px) {
  body {
    font-size: 20px; /* Taille de police de base */
  }
  #streaming-platforms {
    flex-direction:row;
  }
  .ep-cover-container {
    max-width: 450px;
    width: 100%;
  }
  .logos {
    margin: 0 3rem; /* Espacement maximum entre les logos, ajustez selon vos besoins */
  }
  .conteneur-video {
    width: 450px;
    height: 450px;
  }
}