/* Déclaration des polices */
@font-face {
  font-family: "Poppins-Regular";
  src: url(fonts/Poppins-Regular.ttf);
}
@font-face {
  font-family: "Neucha-Regular";
  src: url(fonts/Neucha-Regular.ttf);
}

/* ===========================
  SCROLLBAR LATERALE
=========================== */
html {
  scroll-behavior: smooth;
}

html::-webkit-scrollbar {
  width: 0.625rem;
}

html::-webkit-scrollbar-thumb {
  border-radius: 0.5rem;
  background: linear-gradient(180deg, #f8b058 0.52%, #ffe4c4 50%, #f8b058 100%);
}

html::-webkit-scrollbar-track {
  background: antiquewhite;
}

html {
  scroll-behavior: smooth;
}

/* ===========================
  CORPS DE LA PAGE
=========================== */
body {
  background-color: #ffe4c4 !important;
  font-size: 1.2rem !important;
  line-height: 1.4 !important;
  font-weight: 400 !important;
  font-family: "Neucha-Regular", Arial, sans-serif !important;
}
@media (max-width:768px) {
  body {
    font-size: 1rem !important;
  }
  .h4 {
    font-size: 1.4rem;
  }
}

/* ===========================
  BORDURES
=========================== */
.border-light {
  border: #666666 1px solid !important;
}

/* ===========================
  TITRES
=========================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins-Regular", Arial, sans-serif !important;
  color: #f8b058 !important;
}

/* ===========================
  TEXTES
=========================== */
p {
  color: #ffe4c4 !important;
}

.display-1 {
  font-size: calc(1.625rem + 4.5vw);
  font-weight: bold;
  line-height: 1.2;
}

/* Adaptation aux petits Ã©crans */
@media (max-width: 768px) {
  .display-1 {
    font-size: 1.6rem;
  }
}

.display-2 {
  font-size: calc(1.310rem + 2.5vw);
  font-weight: bold;
  line-height: 1.2;
}

/* Adaptation aux petits Ã©crans */
@media (max-width: 768px) {
  .display-2 {
    font-size: 1.3rem;
  }
}
@media (max-width: 768px) {
  .display-5 {
    font-size: 1.6rem;
  }
}

.text-primary {
  color: #f8b058 !important;
}

.text-shadow {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}


/* ===========================
 LIENS
=========================== */
a {
  text-decoration: none;
  color: #f8b058 !important;
  cursor: pointer;
  transition: color 0.3s ease !important;
}

a:hover,
a:focus {
  color: inherit !important;
  /* Couleur des liens au survol */
}

a:focus {
  outline: 2px dashed #f8b058 !important;
}

/* ====================
Styles pour les listes 
======================*/
ul, ol {
  list-style: none !important;
}


/* ===========================
  SECTIONS
=========================== */
  section {
    padding: 4rem 0;
  }

/* ===========================
  BOITES AVEC OMBRE
=========================== */
.box-shadow {
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

/* ===========================
  BARRE DE NAVIGATION
=========================== */
.navbar {
  background-color: #ffe4c4;
}

/* Style pour aligner les éléments à gauche de la navbar */
.navbar-left {
  display: flex;
  align-items: center; /* Centrer verticalement */
  gap: 15px; /* Espacement entre les éléments */
}

.navbar .navbar-left a {
  color: black !important; /* Couleur des liens */
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: 0.3s;
}

.navbar .navbar-left a:hover {
  color: #f8b058 !important; /* Couleur au survol */
}

.navbar .nav-link {
  color: black !important; /* Couleur des liens */
  transition: 0.3s;
}

.navbar .nav-link:hover {
  color: #f8b058 !important; /* Couleur au survol */
}

/* Ajuster le logo Facebook et le téléphone dans la navbar */
.navbar-brand {
  display: none; /* Cacher le texte "Offcanvas navbar" */
}

/* ===========================
  HEADER
=========================== */
@media (max-width:756px) {
  header {
    margin-top: 60px;
  }
}

/* ===========================
  Gallerie photos
=========================== */
.gallery-thumbnail {
  cursor: pointer;
  transition: transform 0.3s, top 0.3s, left 0.3s;
  transform-origin: center center;
}

.gallery-thumbnail:hover {
  transform: scale(1.125);
  z-index: 10;
}

/* ===========================
  Gallerie videos
=========================== */
figcaption {
  color: #f8b058 !important;
  font-size: 1.8rem;
}

/* ===========================
  Boutons
=========================== */
.btn-info {
  background-color: #f8b058 !important;
  color: black!important;
  border: none;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
  transition: 1.3s;
}

.btn-info:hover,
.btn-info:focus {
  background-color: #ffe4c4 !important;
  color: black !important;
  border: none;
}

.bg-info {
  background-color: #f8b058 !important;
  color: black!important;
  font-size: 1rem;
}

.bg-info:hover,
.bg-info:focus {
  background-color: #ffe4c4 !important;
  color: black !important;
}

