/* ===== BASE STYLES ===== */
/* Styles de base et reset */

/* Empêche le scroll horizontal indésirable */
html, body {
    overflow-x: hidden;
    max-width: 100vw;
}



@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  font-family: "Raleway", Calibri,"Lora", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;   
}

/* ===== TYPOGRAPHY ===== */
h1, .h1 {
  font-size: calc(0.8rem + 1.8vw);
}

h2, .h2 {
  text-align: left;  
  font-size: calc(0.8rem + 0.6vw);
}

@media (max-width: 780px) {
  h2, .h2 {
    font-size: 1rem;
  }
}

h3, .h3 {
  font-size: calc(0.8rem + 0.9vw);
}

h4 {
  font-family: "Segoe print", Arial, Helvetica, sans-serif;
}

h5 {
  font-family: "Segoe print", Arial, Helvetica, sans-serif;
  font-size: calc(0.7rem + 0.4vw);
  font-weight: 400;
}

h5:before {
  content: "○"
}

p {
  margin-bottom: 0rem;
  text-indent: 0em;
  font-size: calc(0.8rem + 0.2vw);
  text-justify: inter-word;	
}

span {
  margin-bottom: 0rem;
  text-indent: 0em;
  font-size: calc(0.8rem + 0.2vw);
}

ul li {
  font-size: calc(0.8rem + 0.2vw);
}

em {
  font-size: calc(0.8rem + 0.2vw);
}

.font-Segoe {
  font-family: "Segoe print", Arial, Helvetica, sans-serif;
  font-size: calc(0.7rem + 0.7vw);
}

/* ===== UTILITIES ===== */
.container {
  width: 95%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;  /* Ajoute un peu d'air sur les côtés sur mobile */
  padding-right: 1rem;
}

.opacite1 { opacity: 1; }
.opacite2 { opacity: 1; }
.opacite3 { opacity: 0.5; }
.opacite4 { opacity: 0.25; }
.opacite5 { opacity: 0.1; }

.img-fluid {
  max-width: 100%;
  height: auto;
}

.mb-lg-0 {
  margin-bottom: 0 !important;
}

.rounded {
  border-radius: 0.25rem !important;
}

.text-center {
  text-align: center !important;
}

.bg-faded {
  border: solid 5px #b12b5d;
}

.flex-colonne {
  flex-direction: column;		
  display: flex;
  justify-content: center;
}

.image-align {
  float: left;
}

.retrait {
  margin-left: 2em;
}

/* ===== RESPONSIVE UTILITIES ===== */
@media (min-width: 1000px) {
  .affiche {
    width: 40px;
  }
  .affichecadeau {
    width: 80px;
  }
}

@media (min-width: 500px) and (max-width: 1000px) {
  .affiche {
    width: 30px;
  }
  .affichecadeau {
    width: 60px;
  }
}

@media (max-width: 500px) {
  .affiche {
    width: 25px;
  }
  .affichecadeau {
    width: 60px;
  }
}

/* Icones - Ces styles pourraient être déplacés vers components.css si nécessaire */
.icone {
  position: relative;
  background-size: cover;
  max-width: 3vw;
  vertical-align: middle;
}

.icone2 {
  position: relative;
  background-size: cover;
  max-width: 2vw;
  vertical-align: middle;
}

@media screen and (max-width: 780px) {
  .icone2 {
    max-width: 5vw;
  }
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
}

.iconemap {
  position: relative;
  background-size: cover;
  max-width: 2em;
}