
/*===========================================================================================================================================================
                                  ÉCRITURE GÉNÉRALE / GLOBAL
=================================================================================================================================================*/

/* Style global du corps */
body {
  font-family: Arial, sans-serif;     /* Police générale */
  padding: 0;                         /* Supprime le padding par défaut */
  margin: 0 auto;                     /* Centre le corps horizontalement */
  max-width: 800px;                   /* Largeur maximale pour écrans larges */
  color: #000000;                     /* Couleur texte principale */
  line-height: 1.6;                   /* Hauteur de ligne pour lisibilité */
  position: relative;                 /* Pour positionner les pseudo-éléments */
  z-index: 0;                         /* Base de pile */
}

html {
  font-size: 16px; /* base */
}

/* Reset global */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;             /* Inclut padding et border dans largeur/hauteur */
}

/* Header et images */
header {
  margin: 0;
  padding: 0;
  display: flex;               /* active flexbox */
  justify-content: center;     /* centre horizontalement */
  align-items: center;         /* centre verticalement */
}

img, header, nav {             
  display: block;                     /* Supprime espaces invisibles entre les éléments */
}

/* Titres généraux */
h1 {
  text-align: center;
  font-size: clamp(24px, 5vw, 40px);
}

h1 strong { 
  font-weight: 900; 
}

h2 { 
  font-size: clamp(32px, 6vw, 70px); 
}

h3 { 
  font-size: clamp(18px, 4vw, 30px); 
}

/* Liens dans les produits */
.produit a {
  text-decoration: none;
  color: inherit;
}

/* Titre creux à gauche */
.titre-creux-gauche {
  text-align: left;
  margin-left: 0px;
  font-size: clamp(40px, 10vw, 100px);
  font-weight: bold;
  color: transparent;
  -webkit-text-stroke: 2.5px black;
  font-family: Arial, sans-serif;
  margin-top: 0px;
  margin-bottom: 0px;
}

/*===========================================================================================================================================================
                                  FONDS GÉNÉRAUX ET LOGOS
=================================================================================================================================================*/

/* FOND ACCUEIL */
.fond-accueil {
  background-image: url('images/fond/flyerblanc.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  width: 100%;                     /* à ajuster selon contenu */
  font-size: clamp(10px, 2vw, 16px);
  padding-bottom: clamp(180px, 60vh, 600px);
}

/* FOND ÉVÉNEMENT */
.fond-evenement {
  background-image: url("images/fond/flyerblanc.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  color: #000; 
  width: 100%; 
  font-size: clamp(14px, 2.5vw, 20px);
  padding-bottom: clamp(180px, 60vh, 600px);
}

/* FOND BOUTIQUE */
.fond-boutique {
  background-image: url('images/fond/flyernoir.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  color: #dddbdb;
  min-height: 100vh; 
  width: 100%;
  font-size: clamp(14px, 2.5vw, 20px);
  padding-bottom: clamp(150px, 90vh, 900px);
}

.fond-produits {
  background-image: url('images/fond/flyernoir.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  color: #dddbdb;
  min-height: 100vh; 
  width: 100%;
  font-size: clamp(14px, 2.5vw, 20px);
  padding-bottom: clamp(180px, 60vh, 600px);
}

.fond-produits-cd {
  background-image: url('images/fond/flyernoir.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  color: #dddbdb;
  min-height: 100vh; 
  width: 100%;
  font-size: clamp(14px, 2.5vw, 20px);
}

/* FOND MENTIONS LÉGALES */
.fond-ml {
  background-image: url("images/fond/flyerblanc.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  color: #000;
  width: 100%;
  font-size: clamp(14px, 2.5vw, 20px);
  padding-bottom: clamp(400px, 60vh, 700px);
}

/* LOGOS */
.logo {
  width: clamp(200px, 50%, 550px);
  height: auto;
  display: block;
  margin: 20px auto;
}

.logo-accueil {
  width: clamp(300px, 60%, 650px);
  height: auto;
  display: block;
  margin: 0 auto 20px;
  border-radius: 0 0 20px 20px;
  border: 2px solid #fff;
  box-shadow: 0 0 50px rgba(0,0,0,0.1);
}

.logo-evenement {
  width: clamp(320px, 60vw, 600px);
  height: auto;
  display: block;
  margin: 0 auto 20px;
  border-radius: 0 0 20px 20px;
  
}

/* Bloc lien et image hello asso*/
.lien-helloasso {
  display: flex;
  align-items: flex-start;   
  justify-content: flex-start;
  gap: 1rem;             /* espace entre l’image et le texte */
  flex-wrap: nowrap;     /* NE PAS passer en dessous, même sur petit écran */
}

.lien-helloasso .img {
  width: clamp(100px, 13vw, 600px);           /* ajuste la taille selon ton design */
  height: auto;
  border-radius: 8px;
  flex-shrink: 0;        /* évite que l’image rétrécisse trop */
  margin-top: -5px;
}

.lien-helloasso .texte-lien {
  font-size: clamp(12px, 2vw, 20px); /* taille fluide */
  margin: 0;
}

.lien-helloasso .style-lien {
  color: #000000;   /* exemple bleu */
  text-decoration: none;
  text-decoration: underline;
}




/* CADRE MENTIONS LÉGALES */
footer {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: white;
  font-size: clamp(12px, 1.5vw, 20px);
  background-color: rgba(0,0,0,0.4);
  padding: 6px 10px;
  border-radius: 2px;
  z-index: 10;
}

footer a {
  color: #ccc;
  text-decoration: none;
  margin: 0 5px;
}

/*===========================================================================================================================================================
                                  PAGE ACCUEIL / FLUO-CONTAINER
=================================================================================================================================================*/

.flou-container {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 2rem;
  border-radius: 20px;
  color: #2b2b2b;
  max-width: 95%;
  margin: auto;
  border: 2px solid #6FB7DB;
  overflow: hidden;
}

.flou-container::before {
  content: "";
  position: absolute;
  top: -20px; left: -20px; right: -20px; bottom: -20px;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 30%, transparent 100%);
  z-index: -1;
  border-radius: inherit;
}

.flou-container.active {
  transform: scale(1.05);
  transition: transform 0.6s ease, box-shadow 0.6s ease, opacity 0.6s ease;
  opacity: 1;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  z-index: 2;
}

.flou-container {   /* bloc non-actif */
  opacity: 0.5;
  transform: scale(0.97);
  transition: transform 0.6s ease, box-shadow 0.6s ease, opacity 0.6s ease;
}

/* Titres et textes */
.titre-accueil {
  font-weight: bold;
  color: transparent;
  -webkit-text-stroke: clamp(0.1px, 0.2vw, 1.5px) black;
  margin-top: 0;
  font-size: clamp(24px, 5vw, 50px);
}

.texte-accueil { 
  font-size: clamp(12px, 2vw, 16px); 
}
.texte-centre-ac { 
  text-align: center; 
  font-style: italic; 
  text-decoration: underline; }

.style-lien-accueil {  
  color: #070707; 
  border-radius: 8px; }

/* Trait bleu décoratif */
h2.decoratif {
  position: relative;
  display: block;
  padding-bottom: 10px;
  margin-bottom: 0;
  z-index: 1;
}
h2.decoratif::after {
  content: "";
  position: absolute;
  right : clamp(25px, 7vw, 70px);
  top : 2px;
  width: 100%;
  height: clamp(75px ,15vw, 160px);
  background-image: url("images/fond/traitbleu.PNG");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left;
  pointer-events: none;
  z-index: -1;
}

/*===PHOTOS FONDATEURS====*/
/*===== Photo "Les Founder" =====*/
.container {
  display: flex;
  gap: clamp(8px, 2vw, 20px);               /* espace horizontal entre la grande image et la colonne droite */
  align-items: flex-start; /* aligne les images en haut */
  max-height: 180px      /* limite la hauteur du conteneur global */
}

.image-gauche {
  height: auto;           /* hauteur fixe */
  max-width: clamp(200px, 40vw, 400px);
  width:100%;             /* largeur auto pour garder proportions */
  display: block;
  margin : 20px auto;
  position: relative;
  right: 25px;
}

.col-droite {
  display: flex;
  flex-direction: column;  /* empile verticalement */
  gap: clamp(0px, 1.5vw, 10px);               /* espace vertical entre les deux images */
  height: 400px;           /* mÃªme hauteur que l'image gauche */
}

.image-droite-haut {
  height: clamp(110px, 15vw, 200px);              
  width: auto;             /* largeur auto pour garder proportions */
  object-fit: contain;       /* ou contain selon ce que tu veux */
  position: relative;   /* pour pouvoir dÃ©caler avec top/left */
  top: clamp(45px, 5vw, 50px);            /* dÃ©cale vers le bas de 10px */
  right: clamp(100px, 11vw, 120px);
}

.image-droite-bas {
  height: clamp(100px, 15vw, 180px);              
  width: auto;             /* largeur auto pour garder proportions */
  object-fit: contain;       /* ou contain selon ce que tu veux */
  position: relative;   /* pour pouvoir dÃ©caler avec top/left */
  top: clamp(19px, 2vw, 20px);            /* dÃ©cale vers le bas de 10px */
  right: clamp(100px, 12vw, 125px);
}



/* MEDIA QUERY POUR TABLETTE ET MOBILE */
@media (max-width: 1024px) {
  h1 { font-size: clamp(20px, 7vw, 35px); }
  h2 { font-size: clamp(28px, 6vw, 60px); }
  h3 { font-size: clamp(16px, 4vw, 24px); }
}

@media (max-width: 600px) {
  h1 { font-size: clamp(18px, 8vw, 28px); }
  h2 { font-size: clamp(22px, 7vw, 50px); }
  h3 { font-size: clamp(14px, 5vw, 20px); }
  .texte-accueil { font-size: clamp(12px, 3vw, 16px); }
}

/*===========================================================================================================================================================
                                  PAGE ÉVÈNEMENT
=================================================================================================================================================*/

/* Titre principal */
.titre-fleche {
  text-align: center;
  font-size: clamp(40px, 12vw, 100px);
  line-height: 1;
  margin-bottom: 20px;
}

/* Conteneur flèches */
.container-fleches {
  display: flex;
  flex-wrap: nowrap; 
  justify-content: center;
  align-items: flex-start;
  gap: 0;
}
 
  

/* Bloc flèche individuel */
.bloc-fleche {
  display: flex;
  flex: 1 1 0;
  min-width: 80px;
  flex-direction: column;
  align-items: center;
}

.ligne {
  width: clamp(2px, 0.5vw, 4px);
  height: clamp(50px, 10vw, 100px);
  background-color: #000;
}

.rond {
  width: clamp(10px, 1vw, 14px);
  height: clamp(10px, 1vw, 14px);
  background-color: #000;
  border-radius: 50%;
  margin-top: 8px;
}

.texte-fleche {
  margin-top: 8px;
  text-align: center;
  max-width: clamp(150px, 25vw, 300px); /* largeur adaptative selon l’écran */
  font-size: clamp(12px, 2vw, 30px);
} 




/* Timeline évènements */
.timeline {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: auto;
}
.line {
  position: absolute;
  left: 5%;
  Top: 0;
  bottom:0;
  width: 3px;
  background: #6FB7DB;
  transform: translateX(-50%);
}
.event {
  position: relative;
  margin: 30px 0;
  text-align: left;
  padding-left: 10%;
}

.dot {
  position: absolute;
  left: 3.5%;
  top: 0;
  transform: translateX(-50%, 0);

  width: clamp(12px, 3vw, 20px);
  height: clamp(12px, 3vw, 20px);
  background-color: #6FB7DB;
  border-radius: 50%;
}

.event p { 
  margin: 0; 
  font-size: clamp(12px, 2vw, 20px); 
  font-weight: bold;
}






/* Titre événement trait bleu */
.titre-evenement {
  text-align: left;
  font-size: clamp(30px, 9vw, 70px); /* Plus petite taille mini */
  font-weight: bold;
  color: transparent;
  -webkit-text-stroke: clamp(1px, 0.3vw, 2.5px) black; /* Contour qui suit */
  font-family: Arial, sans-serif;
  margin-bottom: 5px;
}


/* En dessous de 768px → centrer */
@media (max-width: 768px) {
  .titre-evenement {
    margin-top: 0;
  }
}



h1.decoratifev {
  position: relative;
  display: block;
  padding-bottom: 10px;
  margin-bottom: 0;
  z-index: 1;
}

h1.decoratifev::after {
  content: "";
  position: absolute;
  right: clamp(30px, 9vw, 90px);
  top:  clamp(14px, 2vw, 15px);
  width: 100%;
  height: clamp(90px, 20vw, 200px);
  background-image: url("images/fond/traitbleu.PNG");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left;
  pointer-events: none;
  z-index: -1;
}






.texte-evenement { 
  font-size: clamp(12px, 3vw, 20px); }

.petit-titre-evenement { 
  font-size: clamp(18px, 3vw, 30px); 
  font-weight: bold; 
}
.style-lien-evenement { 
  color: #070707; 
  border-radius: 8px; }

/*===========================================================================================================================================================
                                  BOUTIQUE
=================================================================================================================================================*/

.boutique {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(10px, 4vw, 40px);
  margin-top: clamp(20px, 5vw, 40px);
  font-size: clamp(14px, 2vw, 20px);
}

.produit {
  flex: 1 1 clamp(120px, 20vw, 200px);
  max-width: 250px;
  text-align: center;
}

.produit img {
  width: 100%;
  height: auto;
  max-height: clamp(100px, 15vw, 180px);
  object-fit: contain;
  border-radius: 8px;
}

.produit p { 
  margin: 10px 0 0; 
}

.produit strong { 
  font-size: clamp(16px, 3vw, 24px); 
  color: #dddbdb; 
}

.titre-creux {
  text-align: left;
  margin-left: 0px;
  font-size: 60px;
  font-weight: bold;
  color: transparent;
  -webkit-text-stroke: 1.5px white;
  font-family: comic, sans-serif;
  margin-top: 20px;
}

.texte-boutique {
  font-size: clamp(14px, 2vw, 20px);
  max-width: 90vw;
}
/* Trait bleu boutique */
h1.decoratifbout {
  position: relative;
  display: block;
  padding-bottom: 10px;
  margin-bottom: 0;
  z-index: 1;
}

h1.decoratifbout::after {
  content: "";
  position: absolute;
  right: clamp(40px, 6vw, 60px);
  top: clamp(10px, 1.5vw, 15px);
  width: 100%;
  height: clamp(100px, 13vw, 180px);
  background-image: url("images/fond/traitbleu.PNG");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left;
  pointer-events: none;
  z-index: -1;
}




/*===========================================================================================================================================================
                                  PAGES PRODUIT
=================================================================================================================================================*/

/* === CARROUSEL === */
#carousel {
  width: clamp(100px, 40vw, 350px);                     /* Largeur fixe du carrousel */
  height: clamp(100px, 40vw, 350px);                    /* Hauteur fixe */
  position: relative;               /* Nécessaire pour positionner les images et boutons */
  overflow: hidden;                 /* Cache les parties qui dépassent */
  margin: 0 auto;                   /* Centre horizontalement */
}

#carousel img {
  width: 100%;                      /* Prend toute la largeur */
  height: 100%;                     /* Prend toute la hauteur */
  object-fit: contain;              /* Garde proportions */
  display: none;                    /* Caché par défaut */
  position: absolute;               /* Superposé dans le carrousel */
  top: 0; 
  left: 0;
}

#carousel img.active {
  display: block;                   /* Image active visible */
}

/* === MINIATURES IMAGES === */
.miniatures {
  display: flex;                    /* Ligne d'images */
  justify-content: center;          /* Centre horizontalement */
  gap: 5px;                         /* Espace entre miniatures */
  margin-top: 10px;
}

.miniatures img {
  width: 50px;                      /* Largeur max des miniatures */
  height: 50px;                     /* Hauteur max */
  object-fit: cover;                /* Recadre l'image */
  cursor: pointer;                  /* Curseur main */
  opacity: 0.9;                     /* Légèrement transparent */
  transition: transform 0.3s, opacity 0.3s;
}

.miniatures img:hover {
  transform: scale(1.05);           /* Zoom léger */
  opacity: 1;                        /* Pleine opacité */
}

/* === BOUTON RETOUR BOUTIQUE === */
.btn-retour {
  position: fixed;                   /* Fixe dans la fenêtre */
  top: clamp(15px, 3vw, 30px); 
  left: clamp(15px, 3vw, 30px);
  background-color: #f0f0f0;        /* Gris clair */
  color: #333;                       /* Texte sombre */
  text-decoration: none; 
  font-weight: 500; 
  border: 1px solid #ccc; 
  border-radius: 6px;
  padding: clamp(5px, 1vw, 8px) clamp(10px, 1.5vw, 15px);
  z-index: 10; 
  transition: background-color 0.3s, color 0.3s;
  font-size: clamp(12px, 1.5vw, 16px);
}

.btn-retour:hover {
  background-color: #e0e0e0;
  color: #000;
}

/* === BOUTONS RONDS CARROUSEL === */
.btn-circle {
  position: absolute; 
  top: 50%; 
  transform: translateY(-50%); 
  width: 40px; height: 40px;
  background-color: rgba(255,255,255,0.3); 
  border-radius: 50%; 
  cursor: pointer; 
  z-index: 20; 
  transition: background-color 0.3s; 
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
}

.btn-circle:hover {
  background-color: rgba(255,255,255,0.6);
}

.btn-circle.gauche { left: 10px; }
.btn-circle.droite { right: 10px; }

/* === DESCRIPTION PRODUIT === */
.description {
  max-width: 800px;
  margin: 20px auto;
  font-size: clamp(14px, 2vw, 20px);
  line-height: 1.5;
  text-align: left;
}

.guide-tailles {
  max-width: clamp(250px, 40vw, 400px);
  margin: 20px auto;
  font-size: 16px;
  line-height: 1.5;
  object-fit: contain;
}

/* === BOUTONS TAILLE / QUANTITÉ / PANIER === */
.boutons {
  display: flex; 
  flex-wrap: wrap;                 /* Autorise retour à la ligne si trop petit */
  justify-content: center; 
  gap: 8px;
  margin: 20px auto;
  max-width: 600px;
}

.boutons button {
  display: flex; 
  justify-content: center; 
  align-items: center; 
  width: 80px; 
  height: 40px;
  background-color: #9f9d9d; 
  color: white; 
  border: 1px solid #ccc; 
  border-radius: 4px;
  cursor: pointer; 
  font-size: 14px;
  font-family: Arial, sans-serif;
  box-sizing: border-box;
  text-transform: uppercase;
  transition: background-color 0.3s;
}

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

.boutons button:focus {
  outline: 2px solid #c4c1c1;
  outline-offset: 2px;
}

/*========================================================================== 
                              MENTIONS LÉGALES
============================================================================*/
.texte-ml { font-size: 16px; }

/*========================================================================== 
                              MENU DÉROULANT 
============================================================================*/
.menu-deroulant {
  position: fixed; 
  top: 30px; 
  left: 30px; 
  z-index: 1000;
  font-size: 20px;
}

#btn-menu {
  background-color: #3C3C3C; 
  color: white; 
  border: none;
  padding: 8px 10px; 
  font-size: 20px;
  border-radius: 5px;
  cursor: pointer;
}

#btn-menu:focus {
  outline: 2px solid #6FB7DB;
}

.nav-menu {
  display: none; 
  margin-top: 5px;
  background-color: #3C3C3C;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  min-width: 60px;
}

.nav-menu ul { list-style: none; padding: 0; margin: 0; }
.nav-menu li { border-bottom: 1px solid #555; }
.nav-menu li:last-child { border-bottom: none; }
.nav-menu a {
  display: block; padding: 10px 15px; color: #ddd; text-decoration: none;
  transition: background-color 0.3s;
}
.nav-menu a:hover, .nav-menu a:focus {
  background-color: #6FB7DB; color: #fff;
}

/*========================================================================== 
                              FORMULAIRE CONTACT
============================================================================*/
.formulaire-contact {
  width: clamp(280px, 80%, 500px);
  margin: clamp(20px, 5vw, 50px) auto;
  padding: clamp(15px, 3vw, 30px);
  background-color: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  font-family: Arial, sans-serif;
  color: #333;
  font-size: clamp(14px, 2vw, 16px);
}

.formulaire-contact label {
  display: block;
  margin-bottom: clamp(5px, 1vw, 8px);
  font-weight: bold;
  margin-top: clamp(10px, 2vw, 20px);
  font-size: clamp(14px, 1.5vw, 16px);
}

.formulaire-contact input,
.formulaire-contact textarea {
  width: 100%;
  padding: clamp(8px, 1.5vw, 12px);
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: clamp(14px, 1.8vw, 15px);
  background-color: white;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.formulaire-contact input:focus,
.formulaire-contact textarea:focus {
  border-color: #6FB7DB;
  box-shadow: 0 0 0 3px rgba(111,183,219,0.2);
  outline: none;
}

.formulaire-contact button {
  margin-top: clamp(15px, 3vw, 25px);
  padding: clamp(8px, 2vw, 12px) clamp(12px, 3vw, 20px);
  background-color: #3C3C3C;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: clamp(14px, 2vw, 16px);
  cursor: pointer;
  transition: background-color 0.3s;
}

.formulaire-contact button:hover {
  background-color: #6FB7DB;
}

/*========================================================================== 
                              RESPONSIVE GÉNÉRAL
============================================================================*/
/* Smartphones portrait (<480px) */
@media (max-width: 480px) {
  #carousel { width: 90vw; height: 90vw; }
  .miniatures img { width: 18vw; height: 18vw; }
  .guide-tailles { font-size: 4.5vw; }
  .boutons button { width: 35vw; height: 12vw; font-size: 4vw; }
  .btn-retour { font-size: 3.5vw; padding: 2.5vw 4vw; }
  #btn-menu { font-size: clamp(19px, 2.5vw, 20px); padding: 2.5vh 4vw; }
  .nav-menu a { font-size: 3.5vw; padding: 2vh 3vw; }
}

/* Mobiles + Tablettes petits écrans (<768px) */
@media (max-width: 768px) {
  
  .miniatures img { width: 15vw; height: 15vw; }
  .description { font-size: 4.5vw; }
  .guide-tailles { font-size: 4vw; }
  .boutons button { width: 40vw; height: 10vw; font-size: 3.5vw; }
  .btn-retour { font-size: 3vw; padding: 2vw 4vw; }
  #btn-menu { font-size: clamp(14px, 2.5vw, 20px); padding: 2vh 3vw; }
  .nav-menu a { font-size: clamp(14px, 2.5vw, 20px); padding: 1.8vh 3vw; }
}

/* Tablettes grands écrans (<1024px) */
@media (max-width: 1024px) {
  .miniatures img { width: 45px; height: 45px; }
  .description { font-size: 18px; }
  .guide-tailles { font-size: 15px; }
  .boutons button { width: 70px; height: 35px; font-size: 13px; }
  #btn-menu { font-size: 1.8vw; padding: 1.5vh 2vw; }
  .nav-menu a { font-size: 1.6vw; padding: 1.2vh 2vw; }
}


/* Smartphones portrait (<480px) */
@media (max-width: 480px) {
  body { max-width: 95vw; font-size: 12px; }
  .titre-creux { font-size: 10vw; -webkit-text-stroke: 0.3vw rgb(255, 255, 255); }
  .container-fleches { gap: 10px; }
  .texte-fleche, .texte-evenement, .texte-accueil { font-size: 3vw; max-width: 90vw; }
  .boutique { gap: 5vw; }
  .texte-boutique { font-size: 4vw; max-width: 90vw; }
  .produit { width: 40vw; }
  .description { max-width: 100%; padding: 0 10px; font-size: clamp(14px, 2vw, 20px); }
}

/* Tablettes (<768px) */
@media (max-width: 768px) {
  .titre-creux-gauche { font-size: 40vw; -webkit-text-stroke: 1.2vw black; }
  .container-fleches { gap: 15px; }
  .boutique { gap: 20px; }
  .produit { width: 45vw; }
}

/* Ordinateur (<1024px) */
@media (max-width: 1024px) {
  .titre-creux-gauche { font-size: 80px; }
  .produit { width: 150px; }
  
}