
/* <!-- 
  ██████╗ ██████╗ ███╗   ██╗███╗   ██╗███████╗ ██████╗████████╗     █████╗ ███████╗
 ██╔════╝██╔═══██╗████╗  ██║████╗  ██║██╔════╝██╔════╝╚══██╔══╝    ██╔══██╗██╔════╝
 ██║     ██║   ██║██╔██╗ ██║██╔██╗ ██║█████╗  ██║        ██║       ███████║███████╗
 ██║     ██║   ██║██║╚██╗██║██║╚██╗██║██╔══╝  ██║        ██║       ██╔══██║╚════██║
 ╚██████╗╚██████╔╝██║ ╚████║██║ ╚████║███████╗╚██████╗   ██║       ██║  ██║███████║
  ╚═════╝ ╚═════╝ ╚═╝  ╚═══╝╚═╝  ╚═══╝╚══════╝ ╚═════╝   ╚═╝       ╚═╝  ╚═╝╚══════╝

                             »» CONNECT - AS «« --> */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}
body {
    background-color: white;
}
header {
    padding: 50px  8%;
}
section {
    padding: 70px 8%;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.logo {
    font-weight: bold;
    font-size: 20px;  
}
.logo-div {
    width: 30%;
}
.logo span {
    color: chocolate;
}
ul {
    display: flex;
    justify-content: center;
    width: 40%;
    list-style: none;
}
ul li {
    padding: 10px 25px;
}
ul li a {
    text-decoration: none;
    color: #878584;
    transition: 0.5s;
    font-size: 14px;
}
ul li a:hover{
    background-color:chocolate ;
    padding: 15px;
    color: black;
    font-weight: bold;
    border-radius: 20px;
}
.btn-header {
    width: 30%;
    display: flex;
    justify-content: end;
}
.btn {
    color: black;
    background-color: chocolate;
    border: 2px solid chocolate;
    padding: 15px 30px;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 5px 5px 30px rgba(0, 0, 0,0.1);
    transition: 0.5s;
}
.btn:hover {
    background-color: white;
    transform:  rotate(5deg);
}
.btn i {
    margin-right: 5px;
}
/* tout ce qui touche au image d'interface */
.home-section {
    display: flex;
    justify-content: center;
    width: 100%;
}
.home-section .left {
    position: relative;
    height: 500px;
    width: 600px;
}
.home-section .left img {
    position: absolute;
    object-fit: cover;
    border: 8px solid #fff;
    box-shadow: 5px 5px 30px rgba(0, 0, 0,0.1);
    border-radius: 2rem;
}
.home-section .left-image-1 {
    width: 450px;
    height: 500px;
    transition: 0.5s;
}
.home-section .left-image-1:hover {
    transform: scale(1.1) rotate(10deg);
}
.home-section .left-image-2 {
    width: 350px;
    height: 350px;
    top: 150px;
    left: 250px;
    transition: 0.5s;
}
.home-section .left-image-2:hover {
    transform: scale(1.1) rotate(-10deg);
}
.right {
    margin-left: 100px;
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.right  .text-right {
    color: chocolate;
    font-weight: bold;
}
.right h1 {
    margin: 20px 0;
    font-size: 35px;
    font-weight: bold;
    line-height: 50px;
}
.right p{
    margin-bottom: 25px;
    color: #5e5d5d ;
    width: 70%;
    font-size: 17px;
}

.second {
    margin-left: 20px;
}

.destinations .small-desc {
    color: #5e5d5d;
    width: 60%;
    font-size: 17px;
}
.destinations .gallerie .image {
    width: 24%;
    height: 350px;
    border-radius: 1rem;
    box-shadow: 5px 5px 30px rgba(0, 0, 0,0.1);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background-color: #fff;
    padding: 20px;
}
.destinations .gallerie .image img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    border-radius: 1rem;
    transition: 0.5s;
}
.destinations .gallerie {
    display: flex;
    justify-content: space-between;
}
.destinations .gallerie .description {
    transform: translateY(350px);
    background-color: #fff;
    padding: 20px;
    text-align: center;
    transition: 0.5s;
}
.destinations .gallerie .description h1 {
    font-size: 20px;
    margin-bottom: 10px;
}
.destinations .gallerie .description p {
    font-size: 14px;
    color:#878584;
} 
.destinations .gallerie .image:hover .description {
    transform: translateY(-120px);
}
.destinations .gallerie .image:hover img {
    transform: translateY(-120px);
}

footer {
    background-color: #f1f1f1;
    border-radius: 60px 60px 0 0;
    padding: 20px 0;
    text-align: center;
    justify-content: center;
    align-items: center;
}
footer.right-footer {
    color: #878584;
    font-size: 14px;
}
footer .right-footer span {
    color: chocolate;
}

/* Styles spécifiques à la page Contact */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1000px;
  margin: 50px auto;
  align-items: start;
}

.contact-card {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  padding: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.contact-icon {
  background-color: chocolate;
  color: white;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-right: 20px;
  font-size: 20px;
  transition: all 0.3s ease;
}

.contact-icon:hover {
  transform: rotate(15deg);
  background-color: #e07a1c;
}

.contact-item h3 {
  color: #333;
  font-size: 18px;
  margin-bottom: 5px;
  
}

.contact-item a {
  color: chocolate;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.contact-item a:hover {
  text-decoration: underline;
}

.contact-item span {
  color: black;
  font-size: 16px;
}

.contact-text {
  color: chocolate;
  font-weight: 500;
}


.mini-map iframe {
  border-radius: 16px;
  width: 100%;
  height: 350px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}



/* Animation a l'ouverture du site */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, chocolate 0%, pink 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 1s ease, transform 1s ease;
}

.loader.fade-out {
  opacity: 0;
  transform: translateY(-100%);
}

.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.loader-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid white;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  animation: pulse 2s infinite alternate;
}

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

.loader-text {
  text-align: center;
}

.loader-letters {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  display: inline-block;
  letter-spacing: 2px;
  text-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.loader-subtitle {
  display: block;
  margin-top: 10px;
  font-size: 1.2rem;
  color: rgba(255,255,255,0.8);
  letter-spacing: 1px;
}

.loader-progress {
  width: 200px;
  height: 3px;
  background: rgba(255,255,255,0.3);
  margin-top: 50px;
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

.loader-progress::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: white;
  animation: progress 2.5s ease-in-out forwards;
}

/* Animations */
@keyframes pulse {
  0% { transform: scale(1); }
  100% { transform: scale(1.05); }
}

@keyframes progress {
  0% { width: 0; }
  100% { width: 100%; }
}

@keyframes letterFade {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}


.loader-letters span {
  display: inline-block;
  opacity: 0;
  animation: letterFade 0.5s ease forwards;
}


.loader-letters span:nth-child(1) { animation-delay: 0.1s; }
.loader-letters span:nth-child(2) { animation-delay: 0.2s; }
.loader-letters span:nth-child(3) { animation-delay: 0.3s; }


/* ===== SECTION TARIFS ===== */
.tarifs {
  background: white;
  padding: 60px 20px;
  text-align: center;
}

.tarifs h1.title {
  font-size: 2.8em;
  color: chocolate;
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
}

.tarifs .small-desc {
  color: #292828;
  margin-bottom: 40px;
  font-size: 1.1em;
}

.tarifs-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.tarifs-cards .card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  width: 250px;
  height: 420px; 
  display: flex;
  flex-direction: column;
  justify-content: space-between; 
  align-items: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  word-break: break-word;
  box-sizing: border-box;
}



.tarifs-cards .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.tarifs-cards .card i {
  font-size: 40px;
  color: chocolate;
  margin-bottom: 15px;
}

.tarifs-cards .card h3 {
  color: #333;
  font-size: 1.5em;
  margin: 10px 0;
  min-height: 40px;
}

.tarifs-cards .card .price {
  font-size: 1.8em;
  color: chocolate;
  margin: 15px 0;
}

.tarifs-cards .card .description {
  color: #292828;
  font-size: 0.95em;
}

.tarif-list {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
}


.tarif-list li {
  margin-bottom: 8px;
}

.tarif-list li strong {
  color: chocolate;
}

.small-note {
  font-size: 0.8em;
  color: #292828;
}

.note-tarifs {
  display: block;
  width: 100%;
  margin-top: 40px;
  font-size: 1.5em;
  color: chocolate;
  text-align: center;
  line-height: 1.5;
}



.tarif-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
  font-size: 0.95em;
}

.tarif-table td {
  padding: 6px 8px;
  color: #292828;
}

.tarif-table td:first-child {
  text-align: left;
}

.tarif-table td:last-child {
  text-align: right;
  color: chocolate;
}

.small-note {
  font-size: 0.8em;
  color: #292828;
  margin-top: 10px;
}

/* Bouton RDV */
.contact-tarifs {
  text-align: center;
  margin-top: 40px;
}

.contact-tarifs .btn {
  padding: 15px 30px;
  font-size: 1.1em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}


/* Catégorie présentation */

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Playfair Display', serif;
}

.presentation {
  display: flex;
  flex-direction: column; 
  justify-content: center; 
  align-items: flex-start;     
  background: linear-gradient(135deg, white, white);
  padding: 40px 20px;
  gap: 50px;
  max-height: 80vh;
  overflow-y: auto;
}


.presentation-content {
  max-width: 500px;
  max-height: 500px;
  text-align: center;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: transform 0.3s ease;
}


.presentation-content:hover {
  transform: scale(1.02);
}

.presentation-content h2 {
  color: chocolate;
  font-size: 2.5em;
  margin-bottom: 20px;
}

.presentation-content p {
  font-size: 1.1em;
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}


.presentation-graph {
  width: 300px;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.presentation-graph canvas {
  width: 100% !important;
  height: 100% !important;
}


@media (max-width: 768px) {
  .presentation {
    flex-direction: column;
    min-height: auto; 
    padding: 40px 10px;
  }

  .presentation-content {
    max-width: 90%;
  }

  .presentation-graph {
    width: 90%;
    height: auto;
  }
}

/* Image de la page présentation  */
.galerie {
  max-width: 900px;
  margin: 20px auto;
  padding: 0 20px;
  text-align: center;
}

.galerie h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2em;
  color: chocolate;
  margin-bottom: 20px;
}

.galerie-images {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.galerie-images img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.galerie-images img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 12px rgba(0,0,0,0.2);
}


@media (max-width: 600px) {
  .galerie-images img {
    width: 45vw;
    height: auto;
  }
}


/* Styles pour le menu burger */

.burger-menu {
  display: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-around;
  width: 25px;
  height: 20px;
  margin-left: 20px;
  z-index: 10;
}

.burger-menu div {
  width: 25px;
  height: 3px;
  background-color: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
}


.burger-menu.toggle div:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger-menu.toggle div:nth-child(2) {
  opacity: 0;
}

.burger-menu.toggle div:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}


header ul {
  display: flex;
  list-style: none;
  gap: 25px;
}


@media screen and (max-width: 768px) {
  header ul {
    position: fixed;
    top: 65px; 
    left: 0;
    height: calc(100vh - 65px);
    width: 100%;
    background-color: white;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    padding-top: 20px;
    gap: 20px;
    transform: translateY(-150%);
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 9;
  }

  header ul.nav-active {
    transform: translateY(0);
  }

  .burger-menu {
    display: flex;
  }


  .btn-header {
    display: none;
  }
}








