/*===================
  GÉNÉRAL
===================*/
/* Changement de la police par défaut et de la couleur du texte */
body {
  font-family: 'Playfair Display', serif;
  color: #333;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #f8f9fa;
}

.p,
.navbar,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Playfair Display', serif;
}

section {
  padding: 4rem 0;
}

section h2 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 2rem;
  text-align: center;
}

/*===================
    NAVBAR
  ===================*/
.navbar {
  transition: background-color 0.3s ease;
}

.navbar.scrolled {
  background-color: #004d00e0;
  /* Couleur verte plus claire quand on défile */
}

.dropdown-menu.scrolled {
  background-color: #026e02da;
}

.navbar.scrolled .nav-link,
.navbar.transparent .nav-link {
  color: #ffffff;
  /* Changement de couleur du lien lors du défilement */
}

.navbar.transparent {
  background-color: #004d00;
  /* Couleur verte sombre pour la barre de navigation transparente */
}

.navbar-dark .navbar-toggler {
  border-color: transparent;
}

.navbar-toggler:focus,
.navbar-toggler:hover {
  box-shadow: none;
}

.navbar-toggler:focus {
  outline: none;
}

.navbar-dark .navbar-toggler-icon {
  /* Changement de l'image de l'icône de la barre de navigation */
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

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


/* +de 890px */
@media (min-width: 601px) {
  .navbar-brand {
    font-size: 2rem;
    font-weight: bold;
    padding-left: 1rem;
  }

  .bordure {
    text-align: none;
  }

  .bordure {
    text-align: none;
  }

  .nav-link {
    font-size: 1.3rem;
    padding-left: 0.6rem;
    padding-right: 0.6rem;
    transition: color 0.3s, background-color 0.3s;
    border-radius: 5px;
    font-weight: bold;
  }

  .nav-link:hover {
    color: #f8f9fa;
    background-color: rgba(0, 0, 0, 0.1);
  }

  .navbar-nav>.nav-item {
    margin-left: 5px;
    margin-right: 5px;
  }
}

/*===================
      ACCUEIL
    ===================*/
/*
    Image intro  section background *
  */
.background {
  background-image: url("/abbaye/images/prilly.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, .5);
}

.backcouleur {
  background-color: rgba(56, 142, 60, 0.5);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.backcouleur:hover {
  transform: translateY(-5px);
}

/* Main Title  section background * */
.accueil h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

/* Main Text  section background * */
.accueil p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/*Button section background */
.cta a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #4caf50;
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  transition: 0.3s;
}

.cta a:hover {
  background-color: #388e3c;
  transform: translateY(-2px);
  text-decoration: none;
}

.cta a i {
  transition: transform 0.3s;
}

.cta a:hover i {
  transform: translateX(5px);
}


/* Styles sectionns services */

#objectifs {
  background-color: #f8f9fa;
  padding: 3rem 0;
}

#objectifs h2 {
  font-weight: bold;
  margin-bottom: 1.5rem;
  text-align: center;
}

#objectifs .objectif-card {
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

#objectifs .objectif-card:hover {
  transform: translateY(-5px);
}

#objectifs .card-body {
  padding: 2rem;
}

#objectifs .card-title {
  font-weight: bold;
  margin-bottom: 1rem;
}

#objectifs .card-text {
  line-height: 1.5rem;
}

#services {
  background-color: #f8f9fa;
  padding: 3rem 0;
}

#services .card {
  margin-bottom: 1rem;
}

.service-card {
  border-radius: 1rem;
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card {
  border: none;
  border-radius: 20px;
  box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.service-card:hover {
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.2);
  transform: scale(1.01);
}

.card-icon {
  padding: 10px;
  border-radius: 10px 2px;
  color: white;
  margin-bottom: 20px;
}

.card-body {
  padding: 30px;
}

.btn {
  border-radius: 20px;
}

/*===================
      ACCUEIL CA
    ===================*/
#news {
  background-color: #f8f9fa;
}

.news-image {
  width: 100%;
  /*height: 400px;*/
 
  object-fit: cover;
}

.owl-next {
  background: none !important;
}

.owl-prev {
  background: none !important;
}

.owl-next span:hover {
  color: #717171;
}

.owl-prev span:hover {
  color: #717171;
}

.owl-carousel button.owl-prev,
.owl-carousel button.owl-next {
  border: none;
  outline: none;
}

.owl-carousel button.owl-prev {
  position: absolute;
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
}

.owl-carousel button.owl-next {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
}

.owl-carousel button.owl-prev span,
.owl-carousel button.owl-next span {
  font-size: 48px;
  /* This is for larger screens */
}

.more-info-btn,
.pdf-btn {
  color: #495057;
  border-color: #495057;
  margin-right: 5px;
  transition: all 0.3s ease;
}

.more-info-btn:hover,
.pdf-btn:hover {
  color: #fff;
  background-color: #495057;
  border-color: #495057;
}

.more-info-btn i,
.pdf-btn i {
  margin-right: 5px;
}

/* This will apply only for screens smaller than 600px */
@media (max-width: 600px) {
  .owl-carousel button.owl-prev {
    left: 0px;
  }

  .owl-carousel button.owl-next {
    right: 0px;
  }

  .owl-carousel button.owl-prev span,
  .owl-carousel button.owl-next span {
    font-size: 42px;
    /* This is for mobile screens */
  }
}

/*===================
    CONTACT
  ===================*/
#contact {
  background-color: #f8f9fa;
  padding: 3rem 0;
}

#contact h2 {
  font-weight: bold;
  margin-bottom: 1.5rem;
  text-align: center;
}

#contact form {
  max-width: 600px;
  margin: 0 auto;
}

#contact .form-group {
  margin-bottom: 1rem;
}

#contact .form-group label {
  display: block;
  margin-bottom: 0.5rem;
}

#contact button[type="submit"] {
  background-color: #4caf50;
  color: #ffffff;
  border-color: #4caf50;
  font-weight: bold;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s, transform 0.3s;
}

#contact button[type="submit"]:hover {
  background-color: #388e3c;
  border-color: #4caf50;
  transform: translateY(-2px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

#contact button[type="submit"]:active {
  border-color: #4caf50;
  transform: translateY(0);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/*===================
    CALENDRIER
  ===================*/

.containercalendrier2 .calendar table tr:hover {
  background-color: #f5f5f5;
}

.containercalendrier {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 50px;
  margin-top: 50px;
}

.containercalendrier2 {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  overflow-x: auto;
  /* Ajout de cette ligne */
}


.containercalendrier2 .calendar-table {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

.containercalendrier2 .calendar-table {
  background-color: #f8f9fa;
}

.containercalendrier2::-webkit-scrollbar {
  width: 0.5em;
}

.containercalendrier2::-webkit-scrollbar-thumb {
  background-color: #9b7653;
  border-radius: 10px;
}

.containercalendrier2::-webkit-scrollbar-track {
  background-color: #efeae4;
}

@media screen and (max-width: 768px) {


  .containercalendrier2 .calendar table,
  .containercalendrier2 .calendar table th,
  .containercalendrier2 .calendar table td {
    font-size: 0.8rem;
    padding: 0.5rem;
  }

  ;

  .containercalendrier2 .calendar table th {
    padding: 0.8rem;
  }

  ;
}

/*===================
      Membre Connexion
    ===================*/

.page-centerlogin {
  font-family: Arial, sans-serif;
  background-color: #f0f0f0;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.login-container {
  width: 300px;
  padding: 16px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.login-container h2 {
  text-align: center;
  margin-bottom: 24px;
}

.login-container input {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.login-container input[type="submit"] {
  width: 100%;
  padding: 10px;
  background-color: #007BFF;
  border: none;
  border-radius: 5px;
  color: white;
  font-weight: bold;
}

.login-container input[type="submit"]:hover {
  background-color: #0056b3;
}

/*===================
      Membre Page
    ===================*/
.contentmember {
  flex: 1 0 auto;
  padding: 20px;
}

.membre-welcome-text {
  text-align: right;
  margin-top: 60px;
}

.membre-logout-button,
.membre-pdf-link {
  display: inline-block;
  margin: 10px auto;
  padding: 10px;
  text-align: center;
  color: white;
  border-radius: 5px !important;
  text-decoration: none;
}

.membre-logout-button {
  background-color: #007BFF;
}

.membre-pdf-link {
  background-color: #5A9;
}

.membre-logout-button:hover {
  background-color: #0056b3;
}

.membre-pdf-link:hover {
  background-color: #478;
}

.membre-doc-section {
  margin: 20px;
  text-align: center;
}

.membre-doc-section h3 {
  margin-bottom: 10px;
}

.membre-icon {
  margin-right: 10px;
}

.modal-body a {
  display: block;
  margin: 10px 0;
  color: #5A9;
  text-decoration: none;
}

.modal-body a:hover {
  color: #008000;
}

.modal-body i {
  margin-right: 5px;
  color: #5A9;
}

/*===================
      Membre Liste
    ===================*/


.containerliste {
  max-width: 960px;
  margin: 0 auto;
  padding: 20px;
  flex: 1 0 auto;
  padding: 20px;
}

.membre-doc-section {
  text-align: left;
}

.membre-doc-section h3 {
  margin-bottom: 20px;
  color: #333;
  font-size: 24px;
}

.search-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.search-input {
  margin-bottom: 20px;
  padding: 10px;
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
}

.member-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  transition: opacity 0.5s ease-in-out;
}

.member-list li {
  margin-bottom: 20px;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}

.member-list .hidden {
  display: none;
  transition: all 0.3s ease-in-out;
}

.member-name {
  font-weight: bold;
  font-size: 20px;
  color: #333;
}

.member-details {
  margin-top: 10px;
  font-style: italic;
  color: #333;
  line-height: 2;
  /* Augmenter l'espace entre les lignes */
  font-size: 18px;
  /* Augmenter la taille de police */
  text-align: left;
}

.member-details li {
  margin-bottom: 10px;
}

.member-details span {
  display: block;
  margin-bottom: 5px;
}

@media (max-width: 480px) {
  .containerliste {
    padding: 10px;
  }
}

/*===================
   Admin
  ===================*/
.back-to-admin {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  font-size: 20px;
  text-decoration: none;
  color: #333;
  border: none;
  background: none;
}

.back-to-admin:hover {
  text-decoration: underline;
}

.admin-welcome-text {
  text-align: right;
  margin-top: 50px;
}

/* Styles spécifiques à la page news */
.news-container {
  margin-top: 80px;
  position: relative;
  flex: 1 0 auto;
  margin-bottom: 70px;
}

.news-container h1 {
  color: #004d00;
  margin-bottom: 20px;
}

.news-container form {
  margin-bottom: 20px;
}

.news-container input[type="text"],
.news-container textarea,
.news-container button[type="submit"] {
  margin-bottom: 10px;
}

.news-item {
  margin-bottom: 20px;
  padding: 10px;
  border: 1px solid #ccc;
  background-color: #fff;
}

.news-item img {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
}

/* Nouveau style pour l'aperçu de l'image */
.image-preview-container {
  position: relative;
  width: 200px;
  height: 200px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  overflow: hidden;
}

.image-preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-preview-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: #f8f9fa;
  color: #6c757d;
  font-size: 14px;
}

/*===================
    Capite Admin
  ===================*/

.container-fluid {
  margin-top: 70px;
  margin-bottom: 70px;
}

.container-capite {
  position: relative;
  flex: 1 0 auto;
  margin-top: 70px;
  margin-bottom: 70px;
}

/*===================
    Capite Réservation
  ===================*/
/* Griser les jours passés */
.fc-day-past {
  background-color: #D3D3D3;
}

/* Jours disponibles en blanc */
.fc-day-future {
  background-color: #ffffff;
}

/* Jours déjà réservés en rouge */
.fc-event {
  background-color: #FF0000;
}

.content-box {
  padding: 20px;
}

.container-fluid {
  margin-top: 80px;
  margin-bottom: 70px;
}

.back-to-membre {
  color: #333;
  font-size: 22px;
}

.back-to-membre:hover {
  color: #555;
}

/*===================
    Photos
  ===================*/
.galerie-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 20px;
  flex: 1;
}

.galerie-images {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.galerie-item {
  position: relative;
  overflow: hidden;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease-in-out;
  height: 250px;
  /* ajustez à la hauteur désirée */
}

.galerie-item:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.galerie-image {
  width: 100%;
  height: 100%;
  /* cela remplira tout le .galerie-item */
  object-fit: cover;
  /* l'image couvre l'élément sans être déformée */
}

.galerie-title {
  background-color: #ffffff;
  padding: 10px;
  border-radius: 0 0 5px 5px;
  /* Courbé seulement en bas */
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  position: absolute;
  /* Absolument positionné */
  bottom: 0;
  /* En bas de l'élément parent */
  left: 0;
  /* À gauche de l'élément parent */
  width: 100%;
  /* Occupe toute la largeur */
  z-index: 1;
  /* Pour s'assurer qu'il s'affiche au-dessus de l'overlay */
}

.galerie-title h3 {
  margin: 0;
  font-size: 18px;
  color: #333;
}

.galerie-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  cursor: pointer;
  border-radius: 5px 5px 0 0;
}

.galerie-item:hover .galerie-overlay {
  opacity: 1;
}

.galerie-overlay-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.galerie-overlay-icon {
  font-size: 40px;
  color: #fff;
  margin-bottom: 10px;
}

.hidden {
  display: none;
}

/* Style pour la fenêtre modale */
.modal-content {
  transition: transform 0.4s, opacity 0.4s;
  transform: scale(0.7);
  opacity: 0.5;
}

.modal.show .modal-content {
  transform: scale(1);
  opacity: 1;
}

.modal-dialog {
  max-width: 90vw;
  margin: 1.75rem auto;
}

.modal-body {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.modal-body img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease-in-out;
}

.modal-body img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.img-wrapper {
  position: relative;
  display: inline-block;
}

.btn-download {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 5px 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
}

.btn-download:hover {
  background-color: rgba(0, 0, 0, 0.9);
}

/* Bouton de fermeture modifié */
.btn-close-photo {
  background: none;
  border: none;
  padding: 10px;
  font-size: 20px;
  cursor: pointer;
  color: #333;
  /* couleur de l'icône, à ajuster selon vos besoins */
  outline: none;
  /* pour éviter l'effet de focus autour du bouton */
}

.btn-close-photo:hover {
  color: #666;
  /* couleur de l'icône au survol, à ajuster selon vos besoins */
  border: none;
}

@media (min-width: 576px) {
  .galerie-images {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .galerie-images {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 992px) {
  .galerie-images {
    grid-template-columns: repeat(4, 1fr);
  }
}

/*===================
    statuts
  ===================*/
.backstatuts {
  background-color: #f4f1ea;
  color: #4c4c4c;
  padding-top: 150px;
}

.containerstatuts {
  width: 80%;
  margin: auto;
  margin-bottom: 100px;
  background-color: #ffffff;
  padding: 15px;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}

.headerstatuts {
  text-align: center;
  border-bottom: 1px solid #4c4c4c;
}

.headerstatuts h1 {
  margin-top: 20px;
  font-size: 2em;
}

.sectionstatuts {
  margin-top: 20px;
}

.sectionstatuts h2 {
  color: #bd5d38;
}

.sectionstatuts a {
  color: #bd5d38;
  text-decoration: none;
}

.article-text {
  display: none;
  transition: all 0.5s;
}

.arrow {
  transition: all 0.5s;
}

.rotate {
  transform: rotate(90deg);
}

.sectionstatuts a i {
  color: red;
  /* Ou la couleur que vous voulez */
}

/*===================
    Devenir membre
  ===================*/
.containerdevenirmembre {
  max-width: 1140px;
  margin: auto;
  margin-top: 50px;
  padding: 2em;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.svg-divider {
  width: 100%;
  height: 50px;
  /* you can adjust this value to increase or decrease the curve height */
}

#membre {
  padding: 2em 0;
}

#membre h2 {
  color: #333;
  font-size: 2em;
  text-align: center;
  margin-bottom: 0.5em;
}

#membre h3 {
  color: #333;
  font-size: 2.2em;
  text-align: center;
  margin-bottom: 1.5em;
}

#membre .columns {
  display: flex;
  justify-content: space-evenly;
  color: #666;
}

#membre .columns ul {
  padding: 0;
  list-style: none;
  text-align: center;
}

#membre .columns li {
  margin-bottom: 1em;
}

#membre .columns li i {
  display: block;
  font-size: 1.5em;
  margin-bottom: 0.5em;
}

#membre a {
  color: #006600;
  text-decoration: none;
  padding: 0.5em 1em;
  border: 1px solid #006600;
  border-radius: 3px;
  transition: background-color 0.3s ease;
}

#membre a:hover {
  text-decoration: none;
  background-color: #006600;
  color: white;
}

#membre .horizontal {
  display: flex;
  justify-content: center;
  gap: 2em;
}

.image-section {
  position: relative;
  width: 100%;
  height: 400px;
  background: url("/abbaye/images/photos/Fête de l'Abbaye 2022 (Journée officielle)/20220911_094739.jpg");
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 30px;
  box-sizing: border-box;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  /* Added this line */
}

.image-section .content {
  background-color: rgba(0, 77, 0, 0.6);
  padding: 20px;
  border-radius: 5px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.image-section h1 {
  font-size: 2em;
  color: #fff;
  margin-bottom: 1em;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.image-section p {
  font-size: 1.5em;
  color: #fff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}



.svg-transition {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
}

.elementor-shape-fill {
  fill: #006600;
  /* or any color you like */
}

/*===================
    Boutique
  ===================*/

.boutique-container {
  max-width: 1140px;
  margin: 100px auto 0 auto;
  /* Cela ajoute une marge en haut de 60px */
  padding: 30px 15px;
  flex: 1;
}

/* Styles pour la boutique */
.boutique-items {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.boutique-item {
  flex: 1 0 calc(50% - 15px);
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 20px;
  transition: transform 0.3s ease;
}

.boutique-item:hover {
  transform: translateY(-10px);
}

.boutique-item img {
  display: block;
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  margin-bottom: 15px;
  border-radius: 5px;
}

.boutique-item h2 {
  font-size: 24px;
  color: #333;
  margin-bottom: 10px;
}

.boutique-description {
  margin-bottom: 10px;
  color: #777;
}

.boutique-prix {
  font-weight: bold;
  color: #444;
  margin-bottom: 20px;
}

.boutique-button {
  padding: 10px 20px;
  background-color: #4CAF50;
  border: none;
  border-radius: 5px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.boutique-button a {
  color: #fff;
  text-decoration: none;
}

.boutique-button:hover {
  background-color: #45a049;
}

/*===================
    Calendrier
  ===================*/

.calendar {
  background-color: #efeae4;
  padding: 2rem;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  overflow-x: auto;
  /* Ajout de cette ligne */
}

.calendar h1 {
  color: #9b7653;
  font-size: 2rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid #9b7653;
  padding-bottom: 0.5rem;
}

.calendar h2 {
  color: #9b7653;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.calendar .event p {
  color: #4a3e34;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

.calendar table {
  width: 100%;
  border-collapse: collapse;
}

.calendar table th,
.calendar table td {
  text-align: left;
  border: 1px solid #9b7653;
}

.calendar table th {
  background-color: #9b7653;
  color: white;
}

@media only screen and (max-width: 600px) {
  .calendar {
    font-size: 0.8rem;
  }

  .calendar h1 {
    font-size: 1.6rem;
  }

  .calendar h2 {
    font-size: 1.3rem;
  }

  .calendar .event p {
    font-size: 1rem;
  }

  .calendar table th,
  .calendar table td {
    padding: 0.5rem;
  }
}

/*===================
    FOOTER
  ===================*/
.foot {
  color: #bdc3c7;
  /* Une couleur de sable clair */
}



/*===================
      MÉDIAS ACC
    ===================*/
/* Écrans jusqu'à 767px (tablettes et smartphones) */
@media (max-width: 767px) {
  .navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    padding-left: 1rem;
  }

  .nav-link {
    font-size: 1.1rem;
    padding-left: 0.6rem;
    padding-right: 0.6rem;
    transition: color 0.3s, background-color 0.3s;
    border-radius: 5px;
    font-weight: bold;
  }

  .dropdown-menu.scrolled {
    background-color: #1bb41b59;
  }

  .bordure {
    text-align: center;
  }

  .nav-link:hover {
    color: #f8f9fa;
    background-color: rgba(0, 0, 0, 0.1);
  }

  .navbar-nav>.nav-item {
    margin-left: 5px;
    margin-right: 5px;
  }

  /* Ajustement de la taille de la police pour le titre principal */
  .accueil h1 {
    font-size: 2rem;
  }

  /* Ajustement de la taille de la police pour le texte d'introduction */
  .accueil p {
    font-size: 1.4rem;
  }

  /* Ajustement de la taille de la police pour les titres de section */
  section h2 {
    font-size: 3rem;
  }


  /* Ajustement de la taille de la police pour le texte des cartes de service */
  .service-card .card-text {
    font-size: 1.4rem;
  }

  /* Ajustement de la taille de la police pour le titre des cartes de service */
  .service-card .card-title {
    font-size: 2rem;
  }

  /* Les boutons des cartes de service reviennent à une largeur automatique */
  .service-card .btn {
    width: auto;
  }


  /* Ajustement de la taille de la police pour les cartes d'objectif */
  .objectif-card .card-title,
  .objectif-card .card-text {
    font-size: 1.4rem;
  }

  /* Ajustement de la taille de la police pour le formulaire de contact */
  #contact label,
  #contact input,
  #contact textarea,
  #contact button {
    font-size: 1.2rem;
  }

  .card-icon {
    padding: 2px;
    border-radius: 10px 2px;
    color: white;
    margin-bottom: 20px;
  }

  .card-body {
    padding: 20px;
  }

  .btn {
    border-radius: 20px;
  }

}

/* Écrans à partir de 768px (ordinateurs portables, ordinateurs de bureau) */
@media (min-width: 768px) {

  /* Ajustement de la taille de la police pour le titre principal */
  .accueil h1 {
    font-size: 5rem;
  }

  /* Ajustement de la taille de la police pour le texte d'introduction */
  .accueil p {
    font-size: 1.8rem;
  }

  /* Ajustement de la taille de la police pour les titres de section */
  section h2 {
    font-size: 3rem;
  }


  /* Ajustement de la taille de la police pour le texte des cartes de service */
  .service-card .card-text {
    font-size: 1.5rem;
  }

  /* Ajustement de la taille de la police pour le titre des cartes de service */
  .service-card .card-title {
    font-size: 2.2rem;
  }

  /* Les boutons des cartes de service reviennent à une largeur automatique */
  .service-card .btn {
    width: auto;
  }


  /* Ajustement de la taille de la police pour les cartes d'objectif */
  .objectif-card .card-title,
  .objectif-card .card-text {
    font-size: 1.5rem;
  }

  /* Ajustement de la taille de la police pour le formulaire de contact */
  #contact label,
  #contact input,
  #contact textarea,
  #contact button {
    font-size: 1.2rem;
  }
}