@font-face {
  font-family: "space-grotesk";
  src: url("css/fonte/space-grotesk/SpaceGrotesk.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "space-grotesk";
  src: url("css/fonte/space-grotesk/SpaceGrotesk.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}
h1, h2, h3 {
  font-family: "space-grotesk", sans-serif;
}


body {
    margin: 0;
    padding: 0;
    
    font-family: 'Space Grotesk', sans-serif;
}

.choice-screen {
    display: flex;
    width: 100vw;
    height: 100vh;
}

.choice {
    position: relative;
    flex: 1;
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.5s ease;
}

.choice .bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease, filter 0.5s ease;
}

.choice h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 4vw;
    text-shadow: 0 0 20px rgba(0,0,0,0.6);
    z-index: 20;
}


.choice:hover {
    flex: 1.2;
}

.choice:hover .bg {
    transform: scale(1.15);
}

.choice:not(:hover) .bg {
    filter: brightness(0.5);
}


.media-overlay {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.media-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.blackout {
    position: absolute;
    inset: 0;
    background: rgb(0, 0, 0);
    opacity: 0;
    transition: opacity 0.8s ease;
    z-index: 1;   
}

.media-container {
    /* max-width: 100%;
    max-height: 100%; */
    height: 100vh;
    width: 100vw;
    /* width: auto;
    height: auto; */ 
    border-radius: 8px;
    display: block;
    opacity: 0;
    transition: opacity 1.2s ease;
    z-index: 2;   
    position: absolute;
    inset: 0;
}


.media-container.visible {
    opacity: 1;
}



video {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

h2 {
   margin-top: 180px;
   margin-left: 30px;
    top: 50%;
    left: 50%;
    
    color: rgb(0, 0, 0);
    font-size: 4vw;
    text-shadow: 0 0 20px rgba(24, 235, 67, 0.6);
    z-index: 20;
}

.bonjour {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  width: 100%;
}


.bonjour img {
  width: 30%;
  min-width: 250px;
  height: auto;
  margin-left: 30px;
}


.texte-video {
  display: flex;
  flex-direction: column;
  width: 50%;
}


.texte-video iframe {
  margin-top: 20px;
  margin-bottom: 40px;
  width: 80%;
  max-width: 560px;
  height: 315px;
}

h3 {
   margin-top: 90px;
   margin-left: 30px;
    top: 50%;
    left: 50%;
    
    color: rgb(0, 0, 0);
    font-size: 4vw;
    text-shadow: 0 0 20px rgba(24, 235, 67, 0.6);
    z-index: 20;
}

.liens-artiste {
  margin-top: 80px;
  padding: 60px 20px;

  background-image: url("image/island.png");
  background-size: cover;      
  background-position: center;   
  background-repeat: no-repeat;

  color: white;                  
  text-align: center;
}


.liens-artiste h4 {
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.liens-artiste ul {
  display: flex;
  justify-content: center;
  gap: 30px;
}


.liens-artiste li {
  margin: 10px 0;
}

.liens-artiste a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
}

.liens-artiste a:hover {
  text-decoration: underline;
}

