@font-face {
  font-family: "Inter_18pt-Regular";
  src: url('../polices/Inter_18pt-Regular.ttf');
}
@font-face {
  font-family: "Inter_24pt-ExtraBold";
  src: url('../polices/Inter_24pt-ExtraBold.ttf');
}
/*===========================
  COMMON css 
===========================*/
:root {
  --police-textes: "Inter_18pt-Regular", sans-serif;
  --police-titres: "Inter_24pt-ExtraBold", sans-serif;

  /* 🎨 Primary */
  --primary: #fbb414;
  --primary-dark: #d89c11;
  --primary-light: #fbcf68;

  /* 🎨 Accent */
  --accent: #4bafe0;
  --accent-dark: #3d8db6;
  --accent-light: #7fc8f5;

  /* 🎨 Secondary */
  --secondary: #4352ba;
  --secondary-dark: #313c85;
  --secondary-light: #6a78d4;

  /* ✅ Success */
  --success: #3dbf4a;
  --success-dark: #2a8f35;
  --success-light: #c6f2cb;

  /* ℹ️ Info */
  --info: #4bafe0;
  --info-dark: #3d8db6;
  --info-light: #d5efff;

  /* ⚠️ Caution */
  --caution: #f5a623;
  --caution-dark: #d88b1c;
  --caution-light: #fde6ba;

  /* ❌ Error */
  --error: #d63e4d;
  --error-dark: #a12e39;
  --error-light: #f9cdd1;

  /* 🎭 Neutres et gris */
  --black: #1d1d1d;
  --dark-1: #2d2d2d;
  --dark-2: #4d4d4d;
  --dark-3: #6d6d6d;
  --gray-1: #8d8d8d;
  --gray-2: #adadad;
  --gray-3: #cdcdcd;
  --gray-4: #e0e0e0;
  --light-1: #efefef;
  --light-2: #f5f5f5;
  --light-3: #fafafa;
  --white: #ffffff;

  /* 🌈 Gradients */
  --gradient-1: linear-gradient(180deg, #fbb414 0%, #d89c11 100%);
  --gradient-2: linear-gradient(180deg, #4bafe0 13.02%, #4352ba 85.42%);
  --gradient-3: linear-gradient(180deg, #4352ba 0%, #4bafe0 100%);
  --gradient-4: linear-gradient(180deg, #fbb414 0%, #3dbf4a 100%);
  --gradient-5: linear-gradient(180deg, #4bafe0 0%, #fbb414 100%);
  --gradient-6: linear-gradient(180deg, #f5a623 0%, #fbb414 100%);
  --gradient-7: linear-gradient(180deg, #d63e4d 0%, #4352ba 100%);
  --gradient-8: linear-gradient(180deg, #4bafe0 0%, #fbb414 100%);
  --gradient-9: linear-gradient(180deg, #3d8db6 13.02%, #fbb414 85.42%);

  /* 🖤 Ombres */
  --shadow-1: 0px 0px 1px rgba(40, 41, 61, 0.08),
    0px 0.5px 2px rgba(96, 97, 112, 0.16);
  --shadow-2: 0px 0px 1px rgba(40, 41, 61, 0.04),
    0px 2px 4px rgba(96, 97, 112, 0.16);
  --shadow-3: 0px 0px 2px rgba(40, 41, 61, 0.04),
    0px 4px 8px rgba(96, 97, 112, 0.16);
  --shadow-4: 0px 2px 4px rgba(40, 41, 61, 0.04),
    0px 8px 16px rgba(96, 97, 112, 0.16);
  --shadow-5: 0px 2px 8px rgba(40, 41, 61, 0.04),
    0px 16px 24px rgba(96, 97, 112, 0.16);
  --shadow-6: 0px 2px 8px rgba(40, 41, 61, 0.08),
    0px 20px 32px rgba(96, 97, 112, 0.24);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 0.625rem;
}

::-webkit-scrollbar-thumb {
  border-radius: var(--border-radius);
  background: linear-gradient(180deg, var(--primary) 0.52%, var(--white) 50%, var(--primary) 100%);
}

::-webkit-scrollbar-track {
  background: var(--white);
}

.scrollbar-thumb {
  scrollbar-color: var(--primary-color) var(--white);
  scrollbar-width: thin;
}

/* Réglage général */
body {
  font-family: var(--police-textes) !important;
  color: var(--black);
  font-size: 1.125em;
}

/* Images */
img {
  max-width: 100%;
}

/* Liens */
a {
  display: inline-block;
}

a,
button,
a:hover,
a:focus,
input:focus,
textarea:focus,
button:focus {
  text-decoration: none;
  outline: none;
}

/* Listes */
ul,
ol {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}

/* Titres */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--police-titres) !important;
  font-weight: 600;
  margin: 0px;
}

h1,
.h1 {
  font-size: 2.75em;
  line-height: 1.25;
}

h2,
.h2 {
  font-size: 2.25em;
  line-height: 1.25;
}

h3,
.h3 {
  font-size: 1.75em;
  line-height: 1.25;
}

h4,
.h4 {
  font-size: 1.5em;
  line-height: 1.25;
}

h5,
.h5 {
  font-size: 1.25em;
  line-height: 1.25;
}

h6,
.h6 {
  font-size: 0.875em;
  line-height: 1.25;
}

/* Textes */
p {
  font-size: 1em;
  font-weight: 400;
  line-height: 1.5;
  color: inherit;
  margin: 0px;
}

.text-small {
  font-size: 0.875em;
  line-height: 1.5;
}

.text-lg {
  font-size: 1.225em;
  line-height: 1.5;
}

.text-primary {
  color: var(--primary) !important;
}

.text-secondary {
  color: var(--secondary) !important;
}

.text-accent {
  color: var(--accent) !important;
}

.text-black {
  color: var(--black) !important;
}

.text-white {
  color: var(--white) !important;
}

.text-shadow {
   text-shadow: 2px 3px 4px var(--primary-dark); 
}

/* Background */
.bg-primary {
  background-color: var(--primary) !important;
}

.bg-secondary{
  background-color: var(--secondary) !important;
}

.bg-accent{
  background-color: var(--accent) !important;
}

/* Container */
@media (max-width: 767px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* 🔹 Règles générales pour les boutons */
.btn {
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 6px;
  border: 2px solid transparent;
  transition: all 0.3s ease-in-out;
  display: inline-block;
}

/* 🔥 Bouton Primary */
.btn-primary {
  background-color: var(--primary) !important;
  color: #fff !important;
  border-color: var(--primary-dark) !important;
}

.btn-primary:hover {
  background-color: var(--primary-dark) !important;
  border-color: var(--primary) !important;
  box-shadow: 0px 4px 10px rgba(251, 180, 20, 0.3);
}

/* 🎨 Bouton Secondary */
.btn-secondary {
  background-color: var(--secondary);
  color: #fff !important;
  border-color: var(--secondary-dark) !important;
}

.btn-secondary:hover {
  background-color: var(--secondary-dark) !important;
  border-color: var(--secondary) !important;
  box-shadow: 0px 4px 10px rgba(67, 82, 186, 0.3);
}

/* 💎 Bouton Accent */
.btn-accent {
  background-color: var(--accent) !important;
  color: #fff !important;
  border-color: var(--accent-dark) !important;
}

.btn-accent:hover {
  background-color: var(--accent-dark) !important;
  border-color: var(--accent) !important;
  box-shadow: 0px 4px 10px rgba(75, 175, 224, 0.3);
}

/* 💎 Bouton instagram */
.btn-instagram {
  background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d, #f56040, #f77737, #fcaf45, #ffdc80) !important; /* Dégradé entre les couleurs Instagram */
  color: #fff !important;
  border-color: var(--accent-dark) !important;
}

.btn-instagram:hover {
  background: linear-gradient(45deg, rgba(255, 9, 173, 0.5), rgba(150, 77, 150, 0.5)) !important; /* Dégradé au survol */
  border-color: var(--accent) !important;
  box-shadow: 0px 4px 10px rgba(75, 175, 224, 0.3);
}



.btn:focus {
  box-shadow: none;
}