.fondVertSombre {
  background-color: #005D31;
}

.fondVertClair {
  background-color: #9ED8A4;
}

.fondCanard {
  background-color: #65BBA7;
}

.fondBleuCiel {
  background-color: #AEE6F4;
}

.fondBlanc {
  background-color: #FFFFFF;
}

header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 2%;
}
header picture img {
  max-width: 100px;
}
header h2 {
  font-family: "pacifico, sans-serif";
  font-size: 3rem;
  color: #FFFFFF;
}
header .connect a {
  font-family: "inter, sans-serif";
  color: white;
  font-size: 1rem;
  text-decoration: none;
}

nav {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  margin: 20px;
}
nav .breadcrumb {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
}
nav .breadcrumb li {
  display: flex;
  align-items: center;
  font-size: 14px;
}
nav .breadcrumb li:not(:last-child)::after {
  content: "/";
  margin: 0 10px;
  color: #999;
  font-weight: normal;
}
nav .breadcrumb li[aria-current=page] {
  color: #333;
  font-weight: 500;
}
nav .breadcrumb li[aria-current=page]::after {
  content: none;
}
nav .breadcrumb a {
  text-decoration: none;
  color: #0066cc;
  transition: color 0.2s ease;
}
nav .breadcrumb a:hover {
  color: #004499;
  text-decoration: underline;
}
nav .breadcrumb ul {
  display: flex;
  flex-direction: row;
  width: 860px;
  height: 70px;
  border-radius: 30px;
  justify-content: space-between;
}
nav .burger {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  padding: 5px;
  width: 80px;
  height: 40px;
  border-radius: 10px;
}
nav .menuPrincipal {
  display: none;
  border-radius: 30px;
  padding: 10px;
}
nav .menuPrincipal.display {
  display: block;
  position: absolute;
  right: 110px;
  z-index: 99999;
}
nav .menuPrincipal li {
  border-radius: 20px;
  padding: 5px 10px;
  margin: 15px;
  box-shadow: 3px 3px black;
  list-style: none;
}
nav .menuPrincipal li a {
  text-decoration: none;
  color: black;
}
nav .menuPrincipal li:hover {
  box-shadow: 5px 5px black;
}

@media screen and (min-width: 800px) {
  nav {
    flex-direction: column;
    align-items: center;
  }
  nav .burger {
    display: none;
  }
  nav .menuPrincipal {
    display: flex;
    flex-direction: row;
    width: 860px;
    height: 70px;
    border-radius: 30px;
    justify-content: space-between;
    align-items: center;
    list-style-type: none;
    padding: 0 20px;
    margin: 0 0 20px 0;
  }
  nav .menuPrincipal li {
    border-radius: 20px;
    padding: 5px 10px;
    box-shadow: 3px 3px black;
  }
  nav .menuPrincipal li a {
    text-decoration: none;
    color: black;
  }
  nav .menuPrincipal li:hover {
    box-shadow: 5px 5px black;
  }
}
h1, h2, h3 {
  font-family: "EB gramond, sans-serif";
  color: black;
  font-size: 2rem;
}

p {
  font-family: "inter, sans-serif";
  color: black;
  font-size: 1rem;
}

.slider {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  background-color: #65BBA7;
  height: auto;
  padding: 30px;
  border-radius: 40px;
}
.slider .slide {
  flex: 0 0 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #9ED8A4;
  padding: 20px;
  border-radius: 40px;
  max-height: 500px;
}
.slider .slide .slide-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100px;
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: black;
}
.slider .slide .slide-image {
  width: 100%;
  max-height: 200px;
  margin-bottom: 15px;
  overflow: hidden;
  border-radius: 8px;
}
.slider .slide .slide-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.slider .slide .summary {
  height: 150px;
  line-height: 1.6;
  color: black;
}
.slider .main {
  order: 1;
}
.slider .last {
  order: 2;
}
.slider .hidden {
  display: none;
}

@media (min-width: 1150px) {
  .slider {
    flex-direction: row;
  }
}
#footerNav {
  display: flex;
  flex-direction: column;
  margin: 0px;
  padding: 10px;
}
#footerNav p {
  font-family: "inter, sans-serif";
  color: white;
  font-size: 1rem;
}
#footerNav p a {
  font-family: "inter, sans-serif";
  color: white;
  font-size: 1rem;
  text-decoration: none;
}
#footerNav ul {
  display: flex;
  flex-direction: row;
}
#footerNav ul li {
  list-style-type: none;
  margin: 5px;
}
#footerNav ul li a {
  font-family: "inter, sans-serif";
  color: white;
  font-size: 1rem;
  text-decoration: none;
}

.notification-popup {
  position: fixed;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #9ED8A4;
  color: black;
  padding: 12px 20px;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90%;
  max-width: 400px;
  font-family: "inter, sans-serif";
  color: black;
  font-size: 1rem;
  opacity: 0;
  visibility: hidden;
}
.notification-popup.show {
  opacity: 1;
  visibility: visible;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.hero {
  position: relative;
  height: 500px;
  overflow: hidden;
}
.hero .bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -1;
}
.hero .banner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  height: 500px;
}
.hero .banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
}
.hero .banner h1 {
  font-family: "EB gramond, sans-serif";
  color: white;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 20px;
}
.hero .banner p {
  font-family: "inter, sans-serif";
  color: white;
  font-size: 1rem;
  width: 70%;
  text-align: center;
}

.buttons {
  display: flex;
  justify-content: space-around;
}

.content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 28px 80px;
}
.content .slider-box {
  background-color: #65BBA7;
  align-content: flex-end;
  text-align: center;
  padding: 40px;
  border-radius: 40px;
}
.content .side {
  justify-content: center;
  height: 1000px;
  background-color: #65BBA7;
  border-radius: 40px;
}
.content .side .itinerary {
  padding: 30px;
  line-height: 1.8em;
}
.content .side .itinerary h2 {
  text-align: center;
  margin-bottom: 20px;
}
.content .side .itinerary p {
  display: flex;
  justify-content: space-between;
}
.content .side .itinerary a {
  text-decoration: none;
  color: #FFFFFF;
}

@media (min-width: 1200px) {
  .content {
    flex-direction: row;
  }
  .content .events {
    width: 66%;
  }
  .content .side {
    width: 33%;
  }
}

/*# sourceMappingURL=accueil.css.map */
