.montserrat {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-style: normal;
}


.montserrat-700 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-style: normal;
}



p {
  font-family: "Montserrat", sans-serif;
}


@font-face {
    font-family: 'Brightwall Personal Use Only';
    src: url('css/Brightwall Personal Use Only.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}



.brightwall {
  font-family: 'Brightwall Personal Use Only';
  font-style: normal;
}


.bg-peche{
  background-color: #d49d84 !important
}

.bg-beige{
  background-color: #e7d1c1 !important
}

.bg-blanc-c{
  background-color: #faf6ed !important
}

.text-marron{
    color: #935e43 !important;
}


.activity-card {
  background-color: #fdf5ee;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  max-width: 280px;
}
.overlay-container {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.overlay {
  position: absolute;
  z-index: 2;
}
.text-title {
  font-weight: bold;
  font-size: 1.2rem;
  color: #6b3e2e;
}
.text-body {
  font-size: 0.95rem;
  color: #7c5544;
}
.btn-link {
  text-decoration: none;
  font-weight: bold;
  color: #814f3c;
}

#photo-solo{
  background-image: url('img/solo.jpg');
}

#photo-groupe{
  background-image: url('img/groupe.jpg');
}

.text-white{
  color: #fff !important;
}


@media (min-width: 1425px) {
  .navbar-collapse {
    display: flex !important;
    flex-basis: auto !important;
  }
  .navbar-toggler {
    display: none !important;
  }
  .navbar-nav {
    flex-direction: row;
  }
  .navbar-nav .nav-item {
    margin-left: 1rem;
  }
  .navbar-nav .dropdown-menu {
    position: absolute;
  }
}

.img-full {
  height: 100vh; /* Prend toute la hauteur de l'écran */
  overflow: hidden;
}

.img-full img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}



.navbar-brand img {
  display: inline-block;
  height: 200px;
  width: auto;
  margin: 0; /* Important pour éviter les marges inattendues */
}

.navbar-brand {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;   /* Réduit la marge gauche */
  padding-right: 0;  /* Réduit la marge droite */
  margin-right: 1rem; /* Optionnel pour séparer un peu le logo du menu */
}

.navbar-collapse {
  justify-content: flex-start !important;
}


a {
  color: black; /* Définit la couleur du lien en noir */
  text-decoration: none; /* Retire le soulignement par défaut */
}

a:hover {
  color: gray;
  text-decoration: underline; /* Ajoute un soulignement au survol pour indiquer que c'est cliquable */
}



 /* Conteneur qui contient les deux images */
  .image-container {
    position: relative; /* Position relative pour positionner les enfants */
    width: 100%; /* Largeur du conteneur */
    height: 100%; /* Hauteur du conteneur */
  }

  /* Image de fond (la première image) */
  .background-image {
    /*position: absolute;*/
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ajuste l'image pour couvrir entièrement */
  }

  /* Image au-dessus (la seconde image) */
  .foreground-image {
    position: absolute;
    /*top: 50%;  Positionne au centre verticalement */
    left: 60%;
    /*right: 0%;*/
    transform: translate(-50%, -50%); /* Centre parfaitement l'image */
    width: 150px; /* Largeur de l'image au-dessus */
    height: auto; /* Conserve le ratio de l'image */
    z-index: 2; /* Assure que cette image soit au-dessus de l'autre */
  }





.btn-outline-marron {
    --bs-btn-color: #935e43;
    --bs-btn-border-color: #935e43;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #935e43;
    --bs-btn-hover-border-color: #935e43;
    --bs-btn-focus-shadow-rgb: 13, 110, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #935e43;
    --bs-btn-active-border-color: #935e43;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #935e43;
    --bs-btn-disabled-bg: transparent;
    --bs-gradient: none;
    border-radius: 0px !important;
}




.navbar-nav .nav-link {
  text-decoration: none; /* Pas de soulignement par défaut */
  /*transition: all 0.3s ease;*/
}

.navbar-brand, .navbar-brand:hover{
	text-decoration: none;
	color: #935e43;
}

.current-menu-item, .navbar-nav .nav-link:hover {
  /*text-decoration: underline;*/
  border-bottom: 5px solid #935e43;
}


#scrollToTop {
  position: fixed;
  right: 20px;
  bottom: 25%;
  padding: 0.75rem 1rem;
  background-color: #caa18d; /* couleur à adapter */
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1000;
  transition: opacity 0.3s;
  opacity: 0.7;
}

#scrollToTop:hover {
  opacity: 1;
}

