@charset "UTF-8";
/* CSS Document */


/* Animation du Mesh Gradient */
@keyframes meshAnimation {
  0% {
    background-position: 0% 0%;
  }
  25% {
    background-position: 100% 30%;
  }
  50% {
    background-position: 50% 100%;
  }
  75% {
    background-position: 0% 70%;
  }
  100% {
    background-position: 0% 0%;
  }
}
/* Mode clair : Mesh Gradient */


body {
  font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif";
  text-align: center;
  margin: 0;
  padding: 0;
	
	  color: #333;
background-color:hsla(32,41%,66%,1);
background-image:
radial-gradient(at 99% 81%, hsla(42,70%,71%,1) 0px, transparent 50%),
radial-gradient(at 20% 17%, hsla(20,39%,48%,1) 0px, transparent 50%),
radial-gradient(at 44% 5%, hsla(51,91%,47%,1) 0px, transparent 50%),
radial-gradient(at 73% 63%, hsla(32,17%,55%,1) 0px, transparent 50%),
radial-gradient(at 15% 86%, hsla(40,83%,49%,1) 0px, transparent 50%),
radial-gradient(at 38% 56%, hsla(60,31%,68%,1) 0px, transparent 50%),
radial-gradient(at 87% 87%, hsla(30,20%,38%,1) 0px, transparent 50%);
	
  background-size: 200% 200%;
  animation: meshAnimation 15s ease-in-out infinite;
  display: flex;
  flex-direction: column;
  align-items: center;

}

h1 {
	font-family: Baskerville, "Palatino Linotype", Palatino, "Century Schoolbook L", "Times New Roman", "serif";
}


.noise::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%' height='100%'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%' height='100%' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.7;
  mix-blend-mode: soft-light; /* top */
  pointer-events: none;
}



/* Afficher l'image desktop par défaut */
.cover-image.desktop {
    display: block;
}


.bloc-description {
  padding: 15px;
  text-align: center;
  max-width: 650px;
  margin-right: auto;
  margin-left: auto;
}
.container {
  /* background-color: #12151b; */
  color: #b79058;
  top: -7px;
  position: relative;
}
.profiles {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}
p {
	text-align: left;
}
.profile {
  background-color: #262934;
  color: white;
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
  width: 150px;
  text-align: center;
  transition: background-color 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Cela permet d'aligner les éléments correctement */
  position: relative; /* Position relative pour l'alignement interne */
  height: 260px; /* Exemple de hauteur, ajustez selon vos besoins */
}
.profile:hover {
  background-color: #5D4D34;
}
.profile.disabled {
  background-color: #ccc;
  cursor: not-allowed;
}
.profile img {
  /* width: 100%; */
  height: auto;
  border-radius: 5px;
  margin-bottom: 10px;
}
.thank-you-message {
  display: none; /* Par défaut, masqué */
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  margin: 20px auto;
  max-width: 600px;
  text-align: center;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  padding-left: 10px;
  padding-right: 10px;
}
.thank-you-message h2 {
  color: #930a4d;
}

.thank-you-message a, .thank-you-message .fb-share-button {
    display: inline-block; /* Aligner les boutons horizontalement */
    margin: 0 5px; /* Ajoute un espace entre les boutons */
    text-decoration: none;
}
.thank-you-message button {
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 14px;
}


button#share-facebook {
  background-color: #4267B2;
  color: white;
  font-size: 14px;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 5px;
}
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
}
.popup-content {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  /* text-align: left; */
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
  max-width: 500px;
  margin-right: auto;
  margin-left: auto;
}
button {
  margin: 10px;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}
button#confirm {
  background-color: #930a4d;;
  color: white;
}
button#confirm:hover {
  background-color: #56052c;;
}
button#cancel {
  background-color: #394756;
  color: white;
}
button#cancel:hover {
  background-color: #141618;
}
.results-container {
  display: block;
  margin: 20px auto;
  padding: 20px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  text-align: left;
}
.results-container h2 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #333;
}
#results-list {
  list-style: none;
  padding: 0;
}
#results-list li {
  padding: 8px 0;
  font-size: 16px;
  border-bottom: 1px solid #f0f0f0;
}
#results-list li:last-child {
  border-bottom: none;
}
.portrait-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
}
.portrait-popup-content {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
  max-width: 500px;
  width: 80%;
}
.portrait-popup-content button {
  margin-top: 20px;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  background-color: #007BFF;
  color: white;
  cursor: pointer;
}
.portrait-popup-content button:hover {
  background-color: #0056b3;
}
.description-btn {
  background-color: #c4be90;
  color: #000000;
  padding: 8px 15px;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
  border: none;
  margin-top: auto; /* Ce qui garantit que le bouton est poussé en bas */
  align-self: center; /* Aligne le bouton au centre horizontalement */
}
.description-btn:hover {
  background-color: #ddd;
}

.fb-share-button {
/* background-color: color(srgb 0.2193 0.3445 0.5944);*/
padding: 5px;
border-radius: 10px;
border: solid 2px color(srgb 0.2193 0.3445 0.5944);
height: 20px;
width: 80px;
color: #fff !important;
}


.fb-share-button:hover {
background-color: #0d95e8;
}

.share-button-email {
padding: 5px;
border-radius: 10px;
border: solid 2px color(srgb 0.2193 0.3445 0.5944);
height: 35px;
width: 100px;
background-color: #fff;
}

.share-button-email:hover {
background-color: #ddd;
}



.share-button-WhatsApp {
padding: 5px;
border-radius: 10px;
border: solid 2px #25d366;
height: 35px;
width: 100px;
background-color: #fff;
}

.share-button-WhatsApp:hover {
background-color: #128c7e;
}



.share-button-twitter {
padding: 5px;
border-radius: 10px;
border: solid 2px #00aced;
height: 35px;
width: 100px;
background-color: #fff;
}

.share-button-twitter:hover {
background-color: #0084b4;
}

.cover {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.cover-image {
    display: none; /* Toutes les images sont masquées par défaut */
    width: 100%;
    height: auto;
}


/* podium*/
.podium-section {
    text-align: center;
  margin-top: 30px;
  color: #FFFFFF;
  margin-bottom: 100px;
}

.podium-title {
    font-size: 20px;
    margin-bottom: 20px;
    color: #E9B464;
}

.podium {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 20px;
}

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


.podium-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;

}

.podium-image-first-place {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid #d5b46d;
}
.podium-image-second-place {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid #cdd0d4;
}
.podium-image-third-place {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid #ae6240;
}

.first-place {
    transform: scale(1.2);
	 border: solid 1px #d5b46d;
  padding: 23px;
  border-radius: 15px;
  background-color: #d5b46d;
}

.second-place {
  transform: translateY(20px);
  border: solid 1px #cdd0d4;
  padding: 10px;
  border-radius: 15px;
  background-color: #cdd0d4;
	
}

.third-place {
    transform: translateY(40px);
	 border: solid 1px #ae6240;
  padding: 10px;
  border-radius: 15px;
  background-color: #ae6240;
}

.podium-name {
    margin-top: 10px;
    font-size: 14px;
    font-weight: bold;
}


.profile2 {
  color: white;
  cursor: pointer;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Cela permet d'aligner les éléments correctement */
  position: relative; /* Position relative pour l'alignement interne */
}


/* fin podium */


/* Afficher l'image mobile pour les écrans de moins de 768px */
@media screen and (max-width: 768px) {
    .cover-image.desktop {
        display: none;
    }

    .cover-image.mobile {
        display: block;
    }
}


