/* Reset de base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #F8F1E9;
}

/* Bandeau top */
.top-bar {
  background-color: #F6E9D8;
  color: #422815;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  flex-wrap: wrap;
}

.top-bar .btn {
  background-color: #422815;
  color: white;
  padding: 0.3rem 0.6rem;
  text-decoration: none;
  border-radius: 4px;
}

.top-bar a.mail
  {
  color: #422815;
  }

.top-bar a i {
  display: inline-block;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  transition: all 0.3s ease;
  border-radius: 50%; /* cercle parfait */
  color: #422815;
}

/* Boutons de langue, même style que tes .btn, avec alignement icône/texte */
.top-bar .btn.translate {
  background-color: transparent;
  color: #422815;
  border: 1px solid #422815;
  margin-left: 0.5rem;
  padding: 0.3rem 0.6rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  text-decoration: none;
}

.top-bar .btn.translate:hover {
  background-color: #422815;
  color: #F6E9D8;
}

/* Taille des drapeaux */
.top-bar .btn.translate .flag svg {
  width: 18px;  /* ajuste à 16–20px selon ton goût */
  height: 12px;
  display: block;
}

/* Empêche les svg d'hériter d'une couleur texte */
.top-bar .btn.translate .flag svg * {
  vector-effect: non-scaling-stroke;
}



 
@media (max-width: 748px) {
.top-bar {
font-size: 0.7rem;
}
.top-bar .left {
  width: 50%;
}
.top-bar .right {
  width: 50%;
  display: flex;
  justify-content: right;
  align-items: center;
}
}

.top-bar a:hover i {
 color: #F6E9D8; 
 background-color: #422815;
}



 /* === NAVIGATION PRINCIPALE === */

.main-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 0.5rem 1rem;
  position: relative;
}

.logo-container {
  position: relative;
  height: 60px; /* standard */
}

.logo {
  position: absolute;
  top: 15px;
  left: 15px;
  height: 130px;
  width: 130px;
  border: 1px solid #B6885D;
}

@media (max-width: 1300px) {
  .logo {
    height: 120px;
    width: 120px;
  }
}

/* === MENU BURGER === */

.menu-icon {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: #422815;
}

#menu-toggle {
  display: none;
}

.menu {
  display: flex;
  justify-content: center;
  list-style: none;
  flex-wrap: wrap;
  margin-left: auto;  
}

.menu,
.menu ul,
.menu li {
  list-style: none;
}


@media (max-width: 1040px) {
  .menu {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 85px;
  }

  .menu-icon {
    display: block;
    margin-left: auto;
  }

  #menu-toggle:checked + .menu-icon + .menu {
    display: flex;
  }

  .menu li a {
    padding: 0.8rem;
    text-align: center;
    border-top: 1px solid #eee;
  }
}

.menu li a {
  display: block;
  padding: 1rem;
  text-decoration: none;
  color: #422815;
  font-weight: bold;
}

.menu > li > a:hover {
  background-color: #422815;
  color: white;
  border-radius: 25px;
}

.menu li .submenu li a:hover {
  background-color: #422815;
  color: white;
  border-radius: 0;
}


/* === SOUS-MENU (PRESTATIONS) === */

.menu li.dropdown {
  position: relative;
}

/* Cacher la checkbox pour le toggle mobile */
.menu li.dropdown input[type="checkbox"] {
  display: none;
}

/* Label qui déclenche l'ouverture sur mobile */
.menu li .dropdown-label {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  cursor: pointer;
  font-weight: bold;
  color: #422815;
  text-decoration: none;
}

.menu li .dropdown-label .arrow {
  font-size: 0.8rem;
}

/* Sous-menu masqué par défaut */
.menu li .submenu {
  display: none;
}

/* Bureau : hover affiche le sous-menu */
@media (min-width: 1041px) {
  .menu li.dropdown:hover .submenu {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #FDFAF7;
    min-width: 220px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 999;
    border-radius: 0 0 10px 10px;
    overflow: hidden;
  }

  .menu li .submenu li a {
    padding: 0.8rem 1rem;
    color: #422815;
    font-weight: normal;
    background-color: #FDFAF7;
    display: block;
    text-align: left;
    font-size: 0.9rem;
  }

  .menu li .submenu li a:hover {
    background-color: #422815;
    color: white;
  }
}

/* Mobile : si checkbox cochée, afficher le sous-menu */
@media (max-width: 1040px) {
  .menu li.dropdown input[type="checkbox"]:checked + .dropdown-label + .submenu {
    display: block;
  }

  .menu li .submenu {
    position: static;
    box-shadow: none;
    border-radius: 0;
    background-color: #FDFAF7;
  }

  .menu li .submenu li a {
    padding: 0.8rem 1.2rem;
    display: block;
    text-align: center;
    color: #422815;
    font-weight: normal;
  }

  .menu li .submenu li a:hover {
    background-color: #422815;
    color: white;
  }
}




.presentation {
  background-color: #F8F1E9;
  padding: 100px 20px 60px 20px;
}

.presentation-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  gap: 100px;
}
/* Responsive */
@media (max-width: 1040px) {
.presentation-container {
  gap: 50px;
  }
}
.presentation-photo img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.presentation-text {
  max-width: 600px;
}

.presentation-text h2 {
  font-size: 2rem;
  line-height: 2.6rem;
  margin-bottom: 20px;
  color: #333;
}

.presentation-text p {
  font-size: 0.9rem;
  line-height: 1.4;
  color: #555;
  margin-bottom: 15px;
  text-align: justify;
}

/* Responsive : à partir de 768px, on met image + texte côte à côte */
@media (min-width: 768px) {
  .presentation-container {
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
  }

  .presentation-text {
    text-align: left;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.presentation-photo {
  animation: fadeInUp 1s ease-out forwards;
  opacity: 0;
}

.presentation-text {
  animation: fadeInRight 1s ease-out forwards;
  opacity: 0;
  animation-delay: 0.3s;
}



/* SECTION MOTIVATION */
.motivation {
  background-color: #FDFAF7;
  padding: 60px 20px;
  position: relative;
  z-index: 1;
}

.motivation-container {
  max-width: 800px;
  margin: 0 auto;
}

.motivation h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #333;
  text-align: center;
}

.motivation p {
  font-size: 0.9rem;
  line-height: 1.4;
  color: #555;
  text-align: justify;
}

/* BOUTON */
.motivation-button-wrapper {
  margin-top: 30px;
  text-align: center;
}

.motivation-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #422815;
  color: white;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.motivation-button:hover {
  background-color: #613A1F;
}

/* Bouton invisible au départ */
.motivation-button {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Bouton visible */
.motivation-button.visible {
  opacity: 1;
  transform: translateY(0);
}


/* VAGUES */
.wave-top,
.wave-bottom {
  width: 100%;
  height: 100px;
  overflow: hidden;
  line-height: 0;
}

.wave-top {
transform: rotate(180deg);
}

.wave-bottom {    
    bottom: 0;
    transform: rotate(180deg) scaleX(-1);
}

.wave-top svg,
.wave-bottom svg {
  display: block;
  width: 100%;
  height: 100%;
}


.prestations {
  color: #422815;
  padding: 80px 20px;
  text-align: center;
}

.prestations h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: #422815;
}

/* Grille de bulles */
.prestations-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

/* Bulle individuelle */
.bulle {
  background-color: #F6E9D8;
  color: #422815;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.4rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  padding: 20px;
}

.bulle span {
  max-width: 180px;
  line-height: 1.5;
  font-weight: 600;
  text-transform: uppercase;
}

.bulle:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

/* Responsive : 2 par ligne sur tablettes */
@media (max-width: 768px) {
  .bulle {
    width: 220px;
    height: 220px;
    font-size: 0.9rem;
  }

  .bulle span {
    max-width: 150px;
  }
}

/* 1 par ligne sur mobile */
@media (max-width: 480px) {
  .prestations-grid {
    flex-direction: column;
    align-items: center;
  }

  .bulle {
    width: 220px;
    height: 220px;
  }
}

.reservation-button-wrapper {
  text-align: center;
  margin: 50px 0 100px 0;
}

.reservation-button {
  display: inline-block;
  padding: 14px 30px;
  background-color: #422815;
  color: #fff;
  font-size: 1.1rem;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.reservation-button:hover {
  background-color: #5a3a22;
  transform: translateY(-2px);
}

.reservation-button {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reservation-button.visible {
  opacity: 1;
  transform: translateY(0);
}


.footer {
  background-color: #F6E9D8;
  color: #422815;
  padding: 40px 20px 20px;
  font-size: 0.95rem;
  margin-top: 35px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
}

.footer-col {
  flex: 1;
  min-width: 220px;
}

.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #422815;
}

.footer-col p,
.footer-col a {
  color: #422815;
  line-height: 1.6;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col a:hover {
  text-decoration: underline;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 0.85rem;
  color: #422815;
  border-top: 1px solid #422815;
  padding-top: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-col {
    margin-bottom: 30px;
  }
}

/* Image de présentation */
.header-sections {
  color: #333;
  text-align: center;
  margin: 4rem 0 0 0;
  padding: 1rem;
}

.header-sections h1 {
  font-size: 2.5rem;
}


.main-texte
  {
  text-align: justify;
  padding: 3rem;
  color: #333;
  }
.main-texte h2
  {
  font-size: 2rem;
  font-weight: bold;
  color: #000;
  }  
.main-texte h3
  {
  font-size: 1rem;
  font-weight: bold;
  } 
@media (max-width: 748px) {
  .main-texte {
    padding: 3rem 1rem;
  }
}

  
#scrollUp
  {
  position: fixed;
  bottom : 50px;
  right: -100px;
  opacity: 0.5;
  z-index: 99999;
  }