@import url('https://fonts.googleapis.com/css2?family=Pixelify+Sans:wght@400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --second-border-color: #ccc;
    --main-border-color: #000000;
    --je-suis-pas-sur: #ccc;
    --main-font :'Inter Tight', sans-serif; /*Arial, sans-serif;*/
}

body {
    font-family: var(--main-font);
    font-style: normal;
    font-weight: 400;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Styles pour l'en-tête */
header {
    background-color: #ffffff;
    color: #000000;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--main-border-color);
}

/* Styles pour le logo */
.logo img {
    max-width: 100px; /* Ajustez la taille du logo selon vos besoins */
}
.logo {
  padding-top: 5px;
}

/* Styles pour la barre de navigation */
header nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

header nav ul li {
    margin-right: 5px; /* Espace entre les éléments de la barre de navigation */
    padding: 5px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    border: 1px solid transparent; /* Bordure transparente par défaut */
    padding: 5px; /* Ajoutez du padding pour espacer le texte de la bordure */
}

header nav ul li a:hover {
    border-color: var(--je-suis-pas-sur); /* Changement de la couleur de la bordure au survol */
}


header nav ul li:last-child {
    margin-right: 0; /* Aucun espace après le dernier élément */
}

header nav ul li a {
    color: #000000;
    text-decoration: none;
}

.panier {
  padding-left: 95px;
}

/* Styles pour le lien de panier */
.panier a {
  all: unset;
  color: #000000;
  background-color: #fff;
  text-decoration: none;
  border: 1px solid var(--je-suis-pas-sur);
  padding: 5px 15px;
}

.panier a:hover {
    background-color: #000;
    color: #fff; 
}

/* Styles pour le menu hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background-color: #000;
  margin: 4px 0;
  transition: 0.4s;
}

/* Styles pour le menu déroulant */
.dropdown-menu {
  display: none; /* Caché par défaut */
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  width: 100%;
  position: absolute;
  top: 80px; /* Ajustez selon la hauteur de votre nav */
  left: 0;
  border-top: 1px solid var(--main-border-color);
  z-index: 20;
}

.dropdown-menu a {
  padding: 10px;
  text-decoration: none;
  color: #000;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid var(--main-border-color);
}

.dropdown-menu a:hover {
  background-color: #f1f1f1;
}

/* Afficher le menu hamburger sur les petits écrans */
@media (max-width: 600px) {
  header nav ul {
      display: none;
  }

  .hamburger {
      display: flex;
  }
}

/* Classe pour afficher le menu déroulant */
.show {
  display: flex !important;
}

main {
    padding: 20px;
}

.grid-container {
    display: grid;
    /* grid-template-columns: repeat(auto-fill, 300px);  Colonnes de ... pixels de largeur */
    /* grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); */
    grid-template-columns: repeat(5, 1fr);
    /* grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); */
    /*  grid-auto-rows: 422px; Hauteur de chaque ligne de grille à ... pixels */
    gap: 20px;
}

.grid-container a {
    text-decoration: none;
}

.grid-container p {
    color: #000000;
}

.grid-container p:nth-child(2) {
    margin: 0px;
}

.grid-item {
  border: 1px solid var(--main-border-color);
  padding: 10px;
  text-align: start;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  overflow: hidden; /* Empêche tout contenu de dépasser */
}

.product-details {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  
}

.product-grid-price-div{
  display: flex;
  /* gap: 50px; */
  justify-content: space-between;
  align-items: center;
}

.product-grid-price-div p{
  margin: 0;
}

.product-grid-old-price{
  text-decoration: line-through;
  color: #5e5e5e !important;
}

.product-grid-title {
    padding-left: 0px;
    margin: 10px 0;
    font-family: var(--main-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    text-transform:uppercase ;
    /* font-family: Pixelify Sans; */
}

@media screen and (max-width: 900px) {
  .product-grid-price-div p {
    font-size: 20px;
  }
} 
@media screen and (max-width: 800px) {
  .product-grid-price-div p {
    font-size: 17px;
  }
} 
@media screen and (max-width: 600px) {
  .product-grid-price-div p {
    font-size: 20px;
  }
}

@media screen and (max-width: 1200px) {
  .grid-container {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media screen and (max-width: 1080px) {
  .grid-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 850px) {
  .grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 600px) {
  .grid-container {
    grid-template-columns: repeat(1, 1fr);
  }
}

.grid-item img {
    max-width: 100%;
    max-height: 100%;
}

footer {
    background-color: #ffffff;
    color: #000000;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    border: 1px solid var(--main-border-color);
    /* position: fixed; */
    bottom: 0;
    width: 100%;
}

@media screen and (max-width: 680px) {
  footer {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
  }
  footer p {
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: 15px;
  }
}

footer p {
  padding-left: 5px;
  padding-right: 5px;
}

footer a {
  color: #000000;
  text-decoration:none
}

/* Styles de base pour le popup */
#cart-popup {
    /* display: none;  */
    position: fixed;
    top: 0;
    right: -300px; /* Le panier est initialement caché à droite */
    width: 300px;
    height: 100%;
    background-color: #fff;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease; /* Animation de glissement */
    z-index: 9999;
    overflow-y: auto;
  }
  
  #cart-content {
    padding: 20px;
  }
  
/* Styles pour le bouton de fermeture */
  #close-cart {
    display: flex; /* Utiliser Flexbox */
    align-items: center; /* Aligner verticalement les éléments */
    background: none; /* Supprimer le fond du bouton */
    border: none; /* Supprimer la bordure du bouton */
    border: 1px solid var(--je-suis-pas-sur);
    padding: 5px 15px;
    cursor: pointer; /* Curseur pointeur au survol */
    color: #000000 !important;
  }
  
  #close-cart:hover {
    background-color: black; /* Couleur de fond au survol */
    color: white !important; /* Couleur du texte au survol */
  }

  #close-cart a{
    color: #000000 !important;
    background-color: #fff;
    text-decoration: none;
    -webkit-text-decoration: none;
  }
  #close-cart a:hover{
    color: #fff;
    background-color: #000;
    text-decoration: none;
    -webkit-text-decoration: none;
  }
  

  .anti-contour-close-cart {
    padding-left:20px ;
    padding-top:20px ;
  }

  /* Styles pour l'icône SVG */
  #close-cart svg {
    width: 20px; /* Largeur de l'icône */
    height: 20px; /* Hauteur de l'icône */
    margin-left: 5px; /* Marge à gauche pour séparer le texte de l'icône */
  }
  
  #close-cart:hover svg path:first-child {
    fill: white;
  }

  #cart-total {
    margin-top: 0px;
    padding: 0px;
    border-top: 1px solid #ccc;
  }
  
  /* Styles du bouton panier */
  #footer-cart-button {
    position: fixed;
    top: 27px;
    right: 30px;
    z-index: 10000;
  }
  
/* Style pour la liste des produits */
#cart-items {
    display: flex;
    flex-direction: column;
    /* border-top: 1px solid #ccc; */
  }
  
  /* Style pour chaque produit */
  .cart-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    border-top: 1px solid #ccc;
  }
  
  /* Style pour l'image du produit */
  .cart-item img {
    width: 80px; /* Largeur de l'image */
    height: auto; /* Hauteur automatique pour conserver les proportions */
    margin-right: 10px; /* Marge à droite de l'image */
  }
  
  /* Style pour les informations du produit */
  .item-info {
    flex: 1; /* Prend le reste de l'espace disponible */
  }
  
  .item-name {
    /* font-weight: bold; Texte en gras pour le nom du produit */
    margin-bottom: 0px; /* Marge en bas du nom du produit */
    text-transform:uppercase ;
  }
  
  .item-size {
    font-size: 14px; /* Taille de police plus petite pour la taille du produit */
  }
  
  .item-price {
    font-size: 19px; /* Taille de police plus grande pour le prix du produit */
    margin-top: 20px; /* Marge en haut du prix du produit */
    margin-bottom: 0px;
  }

  /* Style pour l'élément input number */
input[type="number"] {
    margin-top: 14px;
    width: 47px; /* Largeur de l'input */
    height: 15px;
    padding: 5px; /* Rembourrage */
    font-size: 16px; /* Taille de la police */
    border: 1px solid var(--je-suis-pas-sur); /* Bordure */
    border-radius: 5px; /* Bord arrondi */
    outline: none; /* Supprimer la bordure de mise au point */
  }

  /* Style pour les flèches de l'input number */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  /* -webkit-appearance: none; Supprimer les flèches */
  margin: 0px; /* Marge */
}

/* Style pour l'input number au focus */
input[type="number"]:focus {
    border-color: var(--je-suis-pas-sur); /* Couleur de la bordure au focus */
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1); /* Ombre au focus */
  }

  .total-price-number {
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 0px;
  }

  .livraison-price-number {
    font-size: 15px;
    margin-top: 5px;
  }

  .proceed-to-checkout-button {
    padding: 10px 10px; 
    font-size: 18px;
    margin-right: 3px;
    width: 100%;
    background-color: #000000;
    color: #ffffff;
    cursor: pointer;
    border: 1px solid black;
}

.proceed-to-checkout-button:hover {
    padding: 10px 10px; 
    font-size: 18px;
    margin-right: 3px;
    width: 100%;
    background-color: #fff;
    color: #000000;
    cursor: pointer;
    border: 1px solid var(--je-suis-pas-sur);
}

/* Formulaire de contact */

.form-container-container{
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-container {
    max-width: 500px;
    width: 500px;
    min-width: 500px;
    /* margin: 50px 0; */
    padding: 20px;
    background-color: #fff; /* Couleur de fond pour le formulaire */
    /* border-radius: 10px; */
    border: solid 1px #000;
    /*box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);*/
}

@media screen and (max-width: 600px) {
  .form-container{
    min-width: 122px;
  }
} 

.form-title {
    text-align: center;
    color: #333; /* Couleur de titre */
}

/* Styles pour les champs de formulaire */
.form-group {
    margin-bottom: 20px;
}

.form-group2 {
  margin-bottom: 20px;
  display: flex;
  gap: 20px;
}

.condition-accept {
  cursor: pointer;
  color: #000;
}

/* Masquer le checkbox natif */
input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Conteneur personnalisé */
.custom-checkbox {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  cursor: pointer;
  /* user-select: none; */
}

/* L'apparence du checkmark (la case à cocher personnalisée) */
.custom-checkbox .checkmark {
  position: relative;
  top: 0;
  left: 0;
  height: 15px;
  width: 15px;
  background-color: #ffffff;
  border: 1px solid #000000;
  margin: 0;
}

/* Quand on coche la case */
.custom-checkbox input:checked + .checkmark {
  background-color: #000000 !important;
}

/* Ajouter une icône de coche (en utilisant ::after) */
.custom-checkbox .checkmark::after {
  content: "";
  position: absolute;
  display: none;
}

/* Afficher la coche quand l'input est checked */
.custom-checkbox input:checked + .checkmark::after {
  display: block;
}

/* Style de la coche */
.custom-checkbox .checkmark::after {
  left: 5px;
  top: 2.5px;
  width: 3px;
  height: 6px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.obligatoire-champ {
  margin-top: 0px;
}

.form-label {
    font-weight: bold;
    color: #666; /* Couleur du texte pour les labels */
}

.form-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd; /* Bordure grise */
    /* border-radius: 5px; */
    outline: none;
}

.form-textarea {
    height: 120px;
}

/* Style des zones de saisie de texte */
input[type="text"],
input[type="email"],
textarea {
    font-family: 'Arial', sans-serif; /* Utilisation d'une police générique */
    font-size: 16px; /* Taille de police par défaut */
    color: #333; /* Couleur du texte */
    border: 1px solid #000000; /* Bordure de couleur grise */
    /* border-radius: 5px;  */
    padding: 10px; /* Espacement intérieur */
    margin-bottom: 15px; /* Marge en bas pour l'espacement */
    width: 100%; /* Largeur à 100% */
    box-sizing: border-box; /* La largeur inclut le padding et la bordure */
    transition: border-color 0.3s ease; /* Transition de couleur de bordure */
}

#Message {
    height: 200px;
}

/* Style des zones de saisie de texte lorsqu'elles sont en focus */
input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
    border-color: #000000; /* Couleur de la bordure lorsqu'en focus */
    outline: none; /* Suppression de la bordure de focus par défaut */
}

/* Style pour le bouton Envoyer */
.btn {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #ffffff; /* Couleur de fond pour le bouton */
    color: #000000; /* Couleur du texte pour le bouton */
    border: solid 1px #000;
    /* border-radius: 5px; */
    cursor: pointer;
    transition: background-color 0.3s ease; /* Transition fluide */
}

.btn:hover {
    color: #fff;
    background-color: #000000; /* Changement de couleur au survol */
}

.formulaire-titre {
    margin-bottom: 10px;
}


.success-page {
  text-align: center;
}

.checkmark {
  width: 52px;
  height: 52px;
  stroke-width: 2;
  stroke: #4caf50;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  margin-top: 20px;
}

.checkmark-circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: #4caf50;
  fill: none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
  100% {
      stroke-dashoffset: 0;
  }
}

/* Ajoutez ces styles CSS dans votre feuille de style */

/* Définit une animation pour l'effet de fondu */
@keyframes fadeInOut {
  0% {
      opacity: 1;
  }
  50% {
      opacity: 0;
  }
  100% {
      opacity: 1;
  }
}

/* Ajoute une classe pour activer l'animation */
.fade-in-out {
  animation: fadeInOut 0.5s ease;
}

/* Assurez-vous que l'image est initialement visible */
.fade-in-out img {
  opacity: 1;
}

/* Styles pour la section Info */
.info {
  text-align: center;
  margin: auto; /* Pour centrer horizontalement */
  width: 50%; /* Ajustez la largeur selon vos préférences */
  font-size: 30px;
}

/* Styles pour la description */
.description {
  margin-bottom: 20px; /* Espace entre la description et les réseaux sociaux */
  font-size: 20px;
}

@media screen and (max-width: 500px) {
  .description {
    font-size: 13px;
  }
  .info h2 {
    font-size: 30px;
  }
} 

/* Styles pour les liens des réseaux sociaux */
.reseaux a {
  margin: 0 10px; /* Espacement entre les logos */
}

.reseaux img {
  width: 30px; /* Ajustez la taille selon vos besoins */
  height: 30px;
}

.sold-out {
  position: relative;
  opacity: 0.5; /* Opacité pour griser */
  cursor: not-allowed;
}

.sold-out-label{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* color: rgb(255, 255, 255) !important; */
  color: rgb(0, 0, 0) !important;
  text-shadow: 1px 1px 30px rgb(0, 0, 0), 0 0 1em rgb(0, 0, 0);
}

.remove-item {
  cursor: pointer;
  display: inline-block; /* Affichage en bloc */
  vertical-align: middle; /* Alignement vertical au milieu */
  margin-left: 81px;
}

.remove-item-cart-btn {
  margin-top: 4px;
  margin-right: 0px !important;
  border: 1px solid var(--je-suis-pas-sur);
  padding: 2px;
}

.section-title-motivation {
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-title-motivation h2 {
  /* margin-top: 0px; */
  font-size: 120px;
}

@media screen and (max-width: 1085px) {
  .section-title-motivation h2 {
    /* margin-top: 0px; */
    font-size: 100px;
  }
}
@media screen and (max-width: 910px) {
  .section-title-motivation h2 {
    /* margin-top: 0px; */
    font-size: 80px;
  }
}
@media screen and (max-width: 740px) {
  .section-title-motivation h2 {
    /* margin-top: 0px; */
    font-size: 60px;
  }
}
@media screen and (max-width: 570px) {
  .section-title-motivation h2 {
    /* margin-top: 0px; */
    font-size: 40px;
  }
}
@media screen and (max-width: 390px) {
  .section-title-motivation h2 {
    /* margin-top: 0px; */
    font-size: 30px;
  }
}

/* Media queries pour améliorer la visibilité sur les petits écrans */
@media screen and (max-width: 850px) {
  #cart-popup {
      width: 80%; /* Augmente la largeur du popup */
      right: -80%; /* Ajuste la position cachée à droite */
  }

  #cart-content {
      padding: 10px; /* Réduire le padding pour plus de contenu visible */
  }

  #close-cart {
      padding: 7px; /* Augmente la taille du bouton de fermeture */
  }

  #close-cart svg {
      width: 25px; /* Augmente la taille de l'icône */
      height: 25px; /* Augmente la taille de l'icône */
  }

  .cart-item img {
      width: 100px; /* Augmente la taille des images des produits */
  }

  .proceed-to-checkout-button {
    padding: 15px 15px; 
  }

  #cart-total p{
    font-size: 20px;
  }

  .item-name{
    font-size: 25px;
  }

  .anti-contour-close-cart{
    padding: 10px;
  }
}

@media screen and (max-width: 480px) {
  #cart-popup {
      width: 100%; /* Prend toute la largeur de l'écran sur très petits écrans */
      right: -100%; /* Ajuste la position cachée à droite */
  }

  .cart-item img {
      width: 120px; /* Augmente encore la taille des images des produits */
  }
}

/* Animation de fondu */
.fade-out {
  opacity: 0;
  transition: opacity 0.1s ease-out;
}

.fade-in {
  opacity: 1;
  transition: opacity 0.1s ease-in;
}

.page-not-found-btn {
  border: 1px solid #000000;
  padding: 8px;
  background-color: transparent;
  cursor: pointer;
  transition: 0.3s ease;
}

.page-not-found-btn:hover {
  border: 1px solid #000000;
  padding: 8px;
  color: #ffffff;
  background-color: black;
}

.btn:disabled {
  background-color: #ccc; /* Couleur de fond pour le bouton désactivé */
  color: #666; /* Couleur du texte pour le bouton désactivé */
  border: 1px solid #999; /* Bordure pour le bouton désactivé */
}

.shipping-country-selector {
  display: flex;
  flex-direction: column;
}

.shipping-country-selector select {
  all: unset; /* Supprime tous les styles par défaut */
  padding: 10px;
    font-size: 16px;
    border: 1px solid #000000;
    width: 100%;
    box-sizing: border-box;
    background-color: #fff;
    transition: all 0.3s ease;
}
.shipping-country-selector select:focus {
  border-color: #000000;
  outline: none;
}

.drop-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 150px;
  margin-bottom: 20px;
  border: 1px solid var(--second-border-color);
  overflow: hidden;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.drop-container h1 {
  position: absolute;
  font-size: 5rem;
  font-weight: bold;
  color: black;
  z-index: 10;
}

.falling-row {
  position: absolute;
  top: -150px; /* Les t-shirts apparaissent juste au-dessus */
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  animation: fall 5s linear infinite;
}

.tshirt {
  width: 150px; /* Taille des t-shirts */
  opacity: 0.9;
}

@keyframes fall {
  0% {
      transform: translateY(-150px);
  }
  100% {
      transform: translateY(100vh);
  }
}

@media screen and (max-width: 540px) {
  .drop-container h1{
    font-size: 4rem;
  }
}
@media screen and (max-width: 480px) {
  .drop-container h1{
    font-size: 3rem;
  }
}

.newsletter-footer{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: fit-content;
  margin-top: 50px;
  gap: 50px;
}

.image-footer-div{
  border: 1px solid var(--second-border-color);
  /* max-width: 600px; */
  max-height: 100%;
  /* width: 600px; */
  /* width: fit-content; */
  height: 354px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* margin: 50px 0; */
  width: 100% !important;
}

.image-footer-div h2{
  font-size: 120px;
}

.image-footer-div img{
  width: 100%;
  object-fit: contain;
  overflow: hidden;
}

@media screen and (max-width: 1700px) {
  .image-footer-div{
    display: none;
  }
  .newsletter-footer{
    justify-content: center;
  }
}

.text-wrapper{
  display: flex;
  justify-content: flex-start;
  border: 1px solid var(--second-border-color);
  overflow: hidden;
  margin-bottom: 20px;
}

.text-wrapper h3{
  white-space: nowrap;
  animation: move-rtl 6000ms linear infinite;
}

@keyframes move-rtl{
  0%{
    transform: translateX(0);
  }
  100%{
    transform: translateX(-100%);
  }
}

.preorder-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  /* height: 100px; */
  margin-bottom: 20px;
  border: 1px solid var(--main-border-color);
  overflow: hidden;
}

.preorder-container-text{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.preorder-text {
  text-align: center;
  font-weight: bold;
  margin: 10px;
  font-size: 20px;
}

.preorder-text-description {
  text-align: center;
  font-weight: light;
  margin: 10px;
  font-size: 20px;
}

.progress-bar {
  width: 100%;
  max-width: calc(100% - 20px);
  height: 20px;
  background-color: #eee;
  overflow: hidden;
  margin: 10px;
}

.progress-fill {
  height: 100%;
  background-color: #000000;
  width: 0%;
}

@media screen and (max-width: 900px) {
  .preorder-text-description {
  display: none;
  }
}
@media screen and (max-width: 370px) {
  .preorder-text{
    font-size: 15px;
  }
}

.galerie {
  display: flex;
  gap: 10px; /* espace entre les images, optionnel */
  flex-wrap: nowrap; /* pour que ça passe à la ligne si trop large */
  flex-direction: row;
  margin-top: 20px;
}

.galerie img {
  height: auto;
  width: auto;
  max-width: 50%; /* Pour éviter que ça déborde du conteneur */
  object-fit: contain; /* ou 'cover' selon l'effet voulu */
}

.img1 {
  height: auto;
  min-width: 100%;

}

.img2 {
  max-height: 1450px;
  width: auto;

}

.galerie1{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.galerie2{
  display: flex;
  flex-direction: row;
  gap: 10px;
}

@media screen and (max-width: 1000px) {
  .galerie {
  display: none;

  }
}

#countdown{
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--main-border-color);
  width: 100%;
  margin-bottom: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 40px;
  letter-spacing: 10px;
  font-weight: 500;
}

@media screen and (max-width: 600px) {
  #countdown {
  font-size: 25px;

  }
}
@media screen and (max-width: 480px) {
  #countdown {
  font-size: 15px;

  }
}
@media screen and (max-width: 400px) {
  #countdown {
  font-size: 12px;

  }
}