/* -----------------------------------
   GLOBAL
----------------------------------- */

body {
  margin: 0;
  padding: 0;
  background: #000;
  font-family: Arial, sans-serif;
  color: #fff;
}

.page-wrapper {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.content-main {
  flex: 1;
  text-align: center;
}

/* -----------------------------------
   BACKGROUNDS
----------------------------------- */

/* Accueil : image non zoomée, taille raisonnable */
.accueil-page {
  background-image: url("photo-accueil.jpg");
  background-size: contain;      /* l’image garde sa taille, ne remplit pas tout */
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: scroll; /* pas d’effet de zoom */
}

/* Hauteur visuelle de la zone d’accueil */
.accueil-page .content-main {
  min-height: 25vh; /* tu peux monter à 35vh si tu veux un peu plus grand */
}

/* Bio : fond plein écran, style “cover” */
.bio-page {
  background-image: url("photo-accueil.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* -----------------------------------
   ANIMATIONS NÉON
----------------------------------- */

@keyframes neonText {
  0% { text-shadow: 0 0 10px #ff66cc; }
  50% { text-shadow: 0 0 25px #ff66cc; }
  100% { text-shadow: 0 0 10px #ff66cc; }
}

@keyframes neonFrame {
  0% { box-shadow: 0 0 10px #ff66cc; }
  50% { box-shadow: 0 0 30px #ff66cc; }
  100% { box-shadow: 0 0 10px #ff66cc; }
}

/* -----------------------------------
   BOUTONS NÉON
----------------------------------- */

.neon-btn {
  display: inline-block;
  padding: 10px 20px;
  margin: 5px;
  color: #ff66cc;
  border: 2px solid #ff66cc;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  background: rgba(0, 0, 0, 0.7);
  animation: neonText 2s infinite ease-in-out, neonFrame 2s infinite ease-in-out;
}

.neon-btn:hover {
  background: #ff66cc;
  color: #000;
}

/* -----------------------------------
   NAVIGATION BAS DE PAGE
----------------------------------- */

.bottom-nav {
  margin-top: 30px;
}

.bottom-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

/* -----------------------------------
   ICONES RÉSEAUX
----------------------------------- */

.social-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.social-link img {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 0 10px #ff66cc);
  border-radius: 6px;
}

/* -----------------------------------
   BIO
----------------------------------- */

.bio-box {
  background: rgba(0, 0, 0, 0.7);
  border: 3px solid #ff66cc;
  border-radius: 12px;
  padding: 25px;
  max-width: 900px;
  margin: auto;
  animation: neonFrame 2s infinite ease-in-out;
}

/* -----------------------------------
   DISCOGRAPHIE
----------------------------------- */

.discography-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 35px;
  padding: 20px;
}

.album-card {
  background: rgba(0, 0, 0, 0.6);
  padding: 20px;
  border-radius: 12px;
  animation: neonFrame 2s infinite ease-in-out;
}

.album-images {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.album-images img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border: 3px solid #ff66cc;
  border-radius: 10px;
  animation: neonFrame 2s infinite ease-in-out;
}

.album-date {
  margin-top: 10px;
  color: #ff66cc;
  font-weight: bold;
  animation: neonText 2s infinite ease-in-out;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(4px);
  z-index: 9999;
}

.lightbox:target {
  display: flex;
  justify-content: center;
  align-items: center;
}

.lightbox img {
  max-width: 95%;
  max-height: 95%;
  border: 3px solid #ff66cc;
  border-radius: 10px;
  animation: neonFrame 2s infinite ease-in-out;
}

/* -----------------------------------
   VIDEOS
----------------------------------- */

.video-thumb {
  width: 280px;
  border-radius: 10px;
  border: 3px solid #ff66cc;
  animation: neonFrame 2s infinite ease-in-out;
  margin: 10px;
}

/* -----------------------------------
   CONTACT
----------------------------------- */

.contact-page {
  background: #000;
}

.lprod-center {
  margin-top: 60px;
  text-align: center;
}

.lprod-center img {
  width: 180px;
  filter: drop-shadow(0 0 25px #ff66cc);
}

.click-text {
  margin-top: 15px;
  color: #ff66cc;
  font-size: 20px;
  font-weight: bold;
  animation: neonText 2s infinite ease-in-out;
}

/* -----------------------------------
   COMPTEUR
----------------------------------- */

.visit-counter {
  margin-top: 15px;
  text-align: center;
  font-size: 12px;
  color: #ccc;
}

