body {
    background: black;
    color: white;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-image: url('../icy/logo_icy.png')!important;
    /*background-size: cover;*/
    background-attachment: fixed !important;
	background-repeat: repeat !important;
	/* évite le flou */ /* conserve la taille d’origine de l’image */
	/*background-size: auto !important;*/
	image-rendering: pixelated;
}

.artist-intro {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
	margin-bottom: 40px;
}


/*body {
  background-image: url('../icy/logo_icy.png') !important;
  background-repeat: repeat !important;
  background-size: contain !important;
  background-position: center !important;*/
}

#bgVideo {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  object-fit: cover !important;
  z-index: -1 !important;
  pointer-events: none !important; /* facultatif : évite de bloquer les clics */
}



.persovideo-container {
    max-width: 100%;
    overflow: hidden;
}

.persovideo-container video {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    margin-bottom: 40px;
    display: block;
}

/* Conteneur principal avec ratio vidéo 16:9 */
.persovideo-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
  padding-top: 56.25%; /* 16:9 ratio */
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  margin-bottom: 40px;
}

/* La vidéo en position absolue pour s'adapter parfaitement */
.persovideo-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.persovideo-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}


.artist-bio {
    text-align: center;
    color: black;
}

.artist-bio h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.artist-bio p {
    font-size: 1.2em;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.artist-gallery {
    background-color: #111;
    padding: 40px 20px;
}

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

.gallery-grid img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

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


.about-container {
    max-width: 800px;
    margin: auto;
    font-size: 0.9em;
    color: black;
    border: 2px solid #f2b139;
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(255, 215, 0, 0.3);
    padding: 30px 20px;
    text-align: center;
    padding-top: 20px;
    background-color: rgba(249, 249, 250, 0.827);
}





