﻿
/* Style global des paragraphes éditoriaux */
.bloc-texte p {
  text-align: justify;          /* justification du texte */
  text-align-last: left;        /* dernière ligne alignée à gauche */
  line-height: 1.7;             /* aération entre les lignes */
  font-size: 1.05rem;           /* taille légèrement augmentée */
  color: #2c2c2c;               /* texte gris foncé doux */
  margin-bottom: 1.2em;         /* espace entre paragraphes */
  padding: 0.5em 1em;           /* respiration intérieure */
  background: #fdfdfd;          /* fond très clair */
  border-left: 4px solid #a3c4dc; /* accent pastel bleu sur le côté */
  border-radius: 6px;           /* coins arrondis */
}

/* Variantes pastel pour sections différentes */
.section-histoire p {
  border-left-color: #f7b6c2;   /* rose pastel */
}

.section-attractions p {
  border-left-color: #b6e2d3;   /* mint pastel */
}

.section-photos p {
  border-left-color: #f5e6c8;   /* beige pastel */
}

/* Effet au survol pour dynamiser */
.bloc-texte p:hover {
  background: #f9f9f9;
  transition: background 0.3s ease;
}

















.u-nav-container-collapse,
.u-menu-overlay {
  display: none;
}
.u-nav-container-collapse.open,
.u-menu-overlay.open {
  display: block;
}












/* Debut pour Photos */



.masonry {
  column-count: 3;       /* nombre de colonnes */
  column-gap: 20px;      /* espace entre colonnes */
}

.masonry .rss-box {
  display: inline-block; /* nécessaire pour column layout */
  margin-bottom: 20px;
  width: 100%;           /* occupe toute la largeur de la colonne */
  break-inside: avoid;   /* évite les coupures d’éléments */
}

.masonry img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
  .masonry {
    column-count: 1;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .masonry {
    column-count: 2;
  }
}

@media (min-width: 1025px) {
  .masonry {
    column-count: 3;
  }
}








.gallery {
  column-count: 4;
  column-gap: 20px;
}
@media (max-width: 1200px) { .gallery { column-count: 3; } }
@media (max-width: 800px) { .gallery { column-count: 2; } }
@media (max-width: 500px) { .gallery { column-count: 1; } }

.rss-box {
  break-inside: avoid;
  margin-bottom: 20px;
  background-color: rgba(255, 255, 255, 0.6);
  border: 3px ridge #0077cc;
  border-radius: 10px;
  padding: 10px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -20px,
              rgba(0, 0, 0, 0.3) 0px 18px 36px -18px,
              rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  cursor: pointer;
}
.rss-box:hover { transform: scale(1.03); }
.rss-box img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  transition: transform 0.3s ease;
  display: block;
}

#lightbox {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
#lightbox .rss-box {
  background: white;
  padding: 10px;
  border-radius: 10px;
  max-width: 90%;
  max-height: 90%;
  position: relative;
}
#lightbox img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 6px;
}
#close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  background: #0077cc;
  color: white;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 18px;
  cursor: pointer;
}
    
    
        /* Fin pour Photos */















.cadre {

  background-color: rgba(226, 226, 226, 0.1);
  box-shadow: 1px 1px #fff, -1px -1px #444;
	border-radius: 5px;
  

  }
.cadre2 {
display: flex;
  justify-content: center; /* centre horizontalement */
	border-radius: 10px;
  max-width: 1000px;
  margin: 60px auto;
  padding: 20px 0px 20px;
background: #fbeee6; /* rose pastel velours */


  }




 bod {
      
      margin: 0;
      padding: 40px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }



/* Menu toggle */
#menu-toggle {
  position: fixed;
  top: 15px;
  left: 15px;
  background: #bfa5a0; /* rose poudrÃ© */
  color: #fff;
  padding: 10px 15px;
  cursor: pointer;
  z-index: 1000;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

/* Side menu */
#side-menu {
  position: fixed;
  top: 0;
  left: -220px;
  width: 200px;
  height: 100%;
  background: #d8cfc4; /* beige doux */
  padding-top: 60px;
  transition: left 0.3s ease;
  z-index: 999;
}

#side-menu.open {
  left: 0;
}

#side-menu ul {
  list-style: none;
  padding: 0;
}

#side-menu li {
  margin: 20px;
}

#side-menu a {
  color: #3a2f2f;
  text-decoration: none;
  font-weight: bold;
}

main {
  max-width: 1000px;
  margin: 60px auto;
  padding: 20px;
background: #fbeee6; /* rose pastel velours */

  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

section {
  margin-bottom: 40px;
}

h1, h2 {
  color: #7a6e6e;
  margin-bottom: 10px;
}

/* Gallery */
.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.gallery img {
  width: calc(33% - 10px);
  border-radius: 6px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
              rgba(0, 0, 0, 0.3) 0px 30px 60px -30px,
              rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

/* Links */
ul li a {
  color: #7a6e6e;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .gallery img {
    width: 100%;
  }
}



.incontournables {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.spot img {
  width: 60%;
  max-width: 300px;
  margin: 0 auto 15px;
  display: block;
  border-radius: 6px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
              rgba(0, 0, 0, 0.3) 0px 30px 60px -30px,
              rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}
.spot img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 10px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
              rgba(0, 0, 0, 0.3) 0px 30px 60px -30px,
              rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

.spot h3 {
  margin: 0;
  font-size: 1.1em;
  color: #7a6e6e;
}

.spot a {
  text-decoration: none;
  color: #7a6e6e;
}

.spot p {
  font-size: 0.95em;
  color: #4a3f3f;
}

@media (max-width: 768px) {
  .spot {
    width: 100%;
  }
}



.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 600px;
  margin: 0 auto;
}

.contact-form label {
  font-weight: bold;
  color: #7a6e6e;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1em;
  background-color: #fffefc;
}

.contact-form button {
  background-color: #d0e8f2;
  border: 2px solid #6ca0dc;
  color: #003366;
  padding: 0.6em 1.2em;
  border-radius: 6px;
  font-size: 0.9rem;
  font-family: sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  min-width: 160px;

  box-shadow:
    rgba(50, 50, 93, 0.25) 0px 30px 60px -20px,
    rgba(0, 0, 0, 0.3) 0px 20px 40px -30px,
    rgba(10, 37, 64, 0.35) 0px -1px 4px 0px inset;
}


.contact-form button:hover {
 background-color: #b0d4e3;
  border-color: #4a90d9;
  box-shadow: 0 0 8px rgba(106, 160, 220, 0.4);
  transform: scale(1.02);} 













.contact-form input[type="text"]:invalid,
.contact-form input[type="email"]:invalid,
.contact-form textarea:invalid {
  border-color: #e57373;
}
.form-wrapper {
  border: 2px ridge #d8cfc9;
  padding: 20px;
  border-radius: 8px;
  background-color: #fffefc;
  max-width: 600px;
  margin: 0 auto;
}

.message {
  margin-top: 15px;
  font-weight: bold;
  text-align: center;
}

.message.success {
  color: green;
}

.message.error {
  color: red;
}

.message {
  margin-top: 15px;
  font-weight: bold;
  text-align: center;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInUp 0.6s ease-out forwards;
}

.message.success {
  color: green;
}

.message.error {
  color: red;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



.intro-block {
  margin-bottom: 30px;
  line-height: 1.6;
  color: #4a3f3f;
}
.intro-block h2 {
  margin-top: 20px;
  color: #7a5c5c;
}



.map {
  width: 100%;
  max-width: 1200px;
  height: 520px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  margin: 24px auto;
}

/* Popups plus lisibles */
.leaflet-popup-content {
  max-width: 280px;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.45;
}

.popup-title {
  font-weight: 600;
  margin-bottom: 6px;
}

.popup-thumb {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
  margin: 8px 0 10px;
}

.popup-link {
  color: #0b6cff;
  text-decoration: none;
  font-weight: 600;
}
.popup-link:hover { text-decoration: underline; }

   .carousel {
      position: relative;
      max-width: 900px; /* largeur fixe */
      margin: auto;
      overflow: hidden;
      height: 250px;
    }

    .carousel-track {
      display: flex;
      transition: transform 1s ease-in-out; /* transition plus fluide */
      height: 100%;
    }

    .carousel-card {
      flex: 0 0 201px; /* largeur carte */
      margin: 10px;    /* marge de 10px */
      border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: calc(100% - 20px);
  box-shadow: rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
background-color: rgba(226, 226, 226, 0.3);
	 border: 2px solid grey;


    }

    /* Effet de survol combinÃ© */
.carousel-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 119, 204, 0.3);
  background-color: #ffffff; /* gris clair */
}

   .carousel-card img {
  display: block;
  margin: 10px auto;
  width: calc(100% - 20px);
  height: 100px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
  transition: transform 0.5s ease;
}

.carousel-card:hover img {
  transform: scale(1.1);
}

    .carousel-card .text {
      padding: 0 10px 10px;
      font-size: 13px;
      text-align: left;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

 .carousel-card .title-desc strong {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
  position: relative;
}

/* Soulignement animÃ© du titre */
.carousel-card .title-desc strong::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: #0077cc;
  transition: width 0.3s ease;
}

.carousel-card:hover .title-desc strong::after {
  width: 100%;
}

    .carousel-card .date {
      font-size: 12px;
      color: #666;
      text-align: right;
      margin-top: 4px;
    }

    .carousel-btn {
  position: absolute;
  top: calc(50% + 20px);
  transform: translateY(-50%);
  background-color: transparent; /* ou une autre couleur neutre */
  border: none;
  color: white;
  font-size: 24px;
  padding: 10px 16px;
  cursor: pointer;
  border-radius: 4px; /* coins lÃ©gÃ¨rement arrondis */
  z-index: 10;
  outline: none; /* supprime le contour au focus */
}




    .prev { left: 10px; }
    .next { right: 10px; }








.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 20px;
}

.event {
  background: #e4f5fa;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: justify;          /* justification du texte */
  text-align-last: left;        /* dernière ligne alignée à gauche */
  line-height: 1.7;             /* aération entre les lignes */
  font-size: 1.05rem;           /* taille légèrement augmentée */
  color: #2c2c2c;               /* texte gris foncé doux */
  margin-bottom: 1.2em;         /* espace entre paragraphes */
  padding: 0.5em 1em;           /* respiration intérieure */
  background: #fdfdfd;          /* fond très clair */
  border-left: 4px solid #a3c4dc; /* accent pastel bleu sur le côté */
  border-radius: 6px;           /* coins arrondis */

  
  
  
  
  
  
}

.event img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 10px;
}

.event h3 {
  margin-top: 0;
  color: #0077cc;
}

.event::before {
  content: attr(data-year);
  font-weight: bold;
  display: block;
  margin-bottom: 8px;
  color: #555;
}
/* Effet au survol pour dynamiser */
.bloc-texte p:hover {
  background: #f9f9f9;
  transition: background 0.3s ease;
}


/* 📱 Petits écrans : une carte par ligne */
@media (max-width: 768px) {
  .timeline {
    grid-template-columns: 1fr;
  }
}

/* 💻 Grands écrans : 2 cartes visibles */
@media (min-width: 1024px) {
  .timeline {
    grid-template-columns: repeat(2, 1fr);
    justify-items: center; /* centre les cartes dans leurs colonnes */
  }
}
.rss_3{

  background-color: rgba(226, 226, 226, 0.3);
	 border: 2px solid grey;
 
	

	border-radius: 10px;
  padding: 10px 10px 5px 10px;
box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;

}




.rss_container {
  display: flex;
  flex-direction: row; /* cÃ´te Ã  cÃ´te par dÃ©faut */
  justify-content: center;
  align-items: center;
  gap: 1em;
  flex-wrap: wrap;
  padding: 1em;
  box-sizing: border-box;
}

/* Boutons */
.rss_2 {
  background-color: #d0e8f2;
  border: 2px solid #6ca0dc;
  color: #003366;
  padding: 0.6em 1.2em;
  border-radius: 6px;
  font-size: 0.9rem;
  font-family: sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  min-width: 160px;

  box-shadow:
    rgba(50, 50, 93, 0.25) 0px 30px 60px -20px,
    rgba(0, 0, 0, 0.3) 0px 20px 40px -30px,
    rgba(10, 37, 64, 0.35) 0px -1px 4px 0px inset;
}

.rss_2:hover {
  background-color: #b0d4e3;
  border-color: #4a90d9;
  box-shadow: 0 0 8px rgba(106, 160, 220, 0.4);
  transform: scale(1.02);
}

/* ðŸ“± Responsive : empilement vertical sur petit Ã©cran */
@media (max-width: 600px) {
  .rss_container {
    flex-direction: column;
    align-items: stretch;
  }

  .rss_2 {
    width: 100%;
  }
}

   

    p {
      margin-bottom: 1.2em;
      font-size: 16px;
    }

    a {
      color: #0077cc;
      text-decoration: none;
    }

    a:hover {
      text-decoration: underline;
    }

    .section2 {
 background-color: #ffffff;
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.05);
      padding: 20px 30px;
      margin-bottom: 30px;
    }

#backToTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, #cce5ff, #e6f0ff);
  color: #0077cc;
  border: 2px solid #0077cc;
  border-radius: 30px;
  padding: 10px 18px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 1000;
}

#backToTop.show {
  opacity: 1;
  transform: translateY(0);
}

#backToTop:hover {
  background: linear-gradient(135deg, #b3d9ff, #d9ecff);
  color: #005fa3;
  border-color: #005fa3;
}


 .u-section-1 {
  --border-color-var: #00000000;
}

.u-section-1 .u-sheet-1 {
  min-height: 749px;
}

.u-section-1 .u-group-1 {
  width: 285px;
  --radius: 10px;
  height: auto;
  --color-var: #00000000;
  background-image: none;
  min-height: 70px;
  margin: 0 auto;
}

.u-section-1 .u-container-layout-1 {
  padding-left: 30px;
  padding-right: 30px;
}

.u-section-1 .u-btn-1 {
  --radius: 10px;
  font-weight: 700;
  font-size: 0.9375rem;
  --text-color-var: #033043;
  --text-hover-color-var: #033043;
  background-image: none;
  --hover-color-var: #b0d4e3;
  border-style: solid;
  --border-color-var: #6ca0dc;
  --border-hover-color-var: #4a90d9;
  text-transform: uppercase;
  margin: 14px auto 0 123px;
  padding: 9px;
}

.u-section-1 .u-btn-2 {
  --radius: 10px;
  font-weight: 700;
  font-size: 0.9375rem;
  --text-color-var: #033043;
  --text-hover-color-var: #033043;
  background-image: none;
  --hover-color-var: #b0d4e3;
  border-style: solid;
  --border-color-var: #6ca0dc;
  --border-hover-color-var: #4a90d9;
  text-transform: uppercase;
  margin: -43px auto 0 1px;
  padding: 9px;
}

.u-section-1 .u-custom-html-1 {
  margin-top: 30px;
  margin-bottom: 60px;
}

@media (max-width: 1199px) {
  .u-section-1 .u-group-1 {
    height: auto;
  }

  .u-section-1 .u-container-layout-1 {
    padding-top: 9px;
    padding-bottom: 9px;
  }
}

@media (max-width: 767px) {
  .u-section-1 .u-container-layout-1 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .u-section-1 .u-btn-1 {
    margin-left: 143px;
  }

  .u-section-1 .u-btn-2 {
    margin-left: 21px;
  }
}












/* pour le menu */

.trans{
margin-top:10px;

}
.dessin{
	float: left; /* ou right */
  margin: 0 1em 1em 0;
  width: 100px;
  height: 100px;
			
}




.u-form.u-carousel form {
  width: 100%;
  margin-left: unset;
}
.u-form.u-carousel .u-carousel-inner {
  z-index: 1;
}
.u-form.u-carousel .u-form-step.u-carousel-item.u-active {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
}
.u-form.u-carousel .u-form-submit {
  padding-left: 0 !important;
  margin-bottom: 0 !important;
}
.u-form.u-carousel .u-form-submit .u-btn {
  margin-left: 0;
  margin-right: 12px;
}
.u-form.u-carousel .u-form-submit.u-align-right .u-btn {
  margin-left: 12px;
  margin-right: 0;
}













  

    .text-3d {
    
    position: relative; /* ou fixed si tu veux qu’il reste visible en scrollant */
  top: 10;
    
      font-family: Garamond, serif;
      line-height: 1em;
      color: #fff9d6;
      font-weight: bold;
      font-size: 90px;
      text-align: center;
      text-shadow:
        0px 0px 0 rgb(243,243,243),
        0px 1px 0 rgb(231,231,231),
        0px 2px 0 rgb(219,219,219),
        0px 3px 0 rgb(207,207,207),
        0px 4px 0 rgb(195,195,195),
        0px 5px 0 rgb(183,183,183),
        0px 6px 0 rgb(171,171,171),
        0px 7px 6px rgba(0,0,0,0.6),
        0px 7px 1px rgba(0,0,0,0.5),
        0px 0px 6px rgba(0,0,0,.2);
      
      margin-bottom:10px;
      margin: auto;
      
      
    }

    .rss_2 {
      background-color: #d0e8f2;
      border: 2px solid #6ca0dc;
      color: #003366;
      padding: 0.6em 1.2em;
      border-radius: 10px;
      font-size: 0.9rem;
      font-family: sans-serif;
      cursor: pointer;
      transition: all 0.3s ease;
      box-sizing: border-box;
      max-width: 100%;
      min-width: 80px;
      box-shadow:
        rgba(50, 50, 93, 0.25) 0px 30px 60px -20px,
        rgba(0, 0, 0, 0.3) 0px 20px 40px -30px,
        rgba(10, 37, 64, 0.35) 0px -1px 4px 0px inset;
    }

    .rss_2:hover {
      background-color: #b0d4e3;
      border-color: #4a90d9;
      box-shadow: 0 0 8px rgba(106, 160, 220, 0.4);
      transform: scale(1.02);
    }

    .menu-container {
      text-align: center;
      margin-bottom: 20px;
    }

    .menu-list {
      display: none;
      list-style: none;
      padding: 0;
      margin-top: 0px;
width: 200px;
margin-left: auto;
margin-right: auto;
background-color: #d0e8f2;
      border: 2px solid #6ca0dc;
border-radius: 10px;
box-shadow:
        rgba(50, 50, 93, 0.25) 0px 30px 60px -20px,
        rgba(0, 0, 0, 0.3) 0px 20px 40px -30px,
        rgba(10, 37, 64, 0.35) 0px -1px 4px 0px inset;

  
  




    }

    .menu-list li {
      margin: 8px 0;
    }

    .menu-list a {
      color: #003366;
      text-decoration: none;
      font-weight: bold;
    }

    .menu-list a:hover {
      text-decoration: underline;
background-color: #b0d4e3;
      border-color: #4a90d9;
      box-shadow: 0 0 8px rgba(106, 160, 220, 0.4);
      transform: scale(1.02);
width: 200px;

    }

@media (max-width: 1199px) {
  .text-3d {
      font-size: 90px;}
    

@media (max-width: 767px) 
 .text-3d {
      font-size: 30px;}
      .body-menu, html {
           height: 500px;}
      
       header img {
  
      
  width: 80px;
height: 80px    }
      
      
 
      
      
      }
}