@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Manrope&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  position: relative;
  word-break: break-word;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  color: #333;
  line-height: 1.6;
}

.ui {
  font-family: "Material Symbols Outlined";
  font-weight: 100;
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  color: #6b705c;
}

.hidden {
  display: none !important;
}

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

.text-left {
  text-align: left;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 15px;
  font-family: inherit;
  font-size: 1rem;
}

button {
  background-color: #6b705c;
  padding: 20px;
  border-radius: 20px;
  color: white;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}
button:hover {
  background-color: rgb(106.7325, 111.72, 91.77);
}

header {
  position: sticky;
  top: 0;
  z-index: 1;
}
header .main-nav {
  background: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 1rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
  border-radius: 0 0 30px 30px;
}
header .main-nav .logo a {
  color: #6b705c;
  font-size: 1.5rem;
  text-decoration: none;
  font-weight: bold;
}
header .main-nav .logo a .stars {
  color: #FFD700;
  font-size: 0.9em;
  margin-left: 5px;
  vertical-align: middle;
  text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
}
header .main-nav .logo .burger {
  display: none;
}
@media (max-width: 768px) {
  header .main-nav .logo {
    justify-content: space-between;
    display: flex;
    align-items: center;
    width: 100%;
    z-index: 2;
  }
  header .main-nav .logo .burger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px;
    background: #6b705c;
    border-radius: 10px;
    aspect-ratio: 1/1;
    width: 40px;
  }
  header .main-nav .logo .burger-trait {
    height: 2px;
    background: white;
    width: 300;
  }
}
header .main-nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}
header .main-nav ul a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
}
header .main-nav ul a:hover {
  color: #6b705c;
}
@media (max-width: 768px) {
  header .main-nav {
    flex-direction: column;
    padding: 1rem;
  }
  header .main-nav ul {
    display: none;
  }
  header .main-nav ul.active {
    position: fixed;
    top: 30px;
    right: 30px;
    bottom: 30px;
    background: #c58c6d;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-direction: column;
    padding: 30px 60px;
    border-radius: 30px;
    animation: slideNav 0.5s forwards;
  }
  header .main-nav ul.active.back {
    animation: slideNavBack 0.5s forwards;
  }
  header .main-nav ul.active a {
    color: #fffcf7;
  }
}

@keyframes slideNav {
  0% {
    transform: translateX(110%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideNavBack {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateX(110%);
    opacity: 0;
  }
}
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  align-items: normal;
  flex-direction: column;
  text-align: center;
  color: white;
  padding: 30px;
}
.hero .hero-container {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../../image/exterieur.png") center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-direction: column;
  flex: 1;
  border-radius: 30px;
  padding: 30px;
}
.hero h1 {
  font-size: clamp(1rem, 5vw, 3rem);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  max-width: 100%;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.features {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 10px 30px;
}
.features .feature {
  background: #fffcf7;
  text-align: center;
  padding: 30px;
  border-radius: 30px;
  flex: 1 150px;
}
.features .feature .ui {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.features .feature h2 {
  color: #c58c6d;
  margin-bottom: 1rem;
}

.btn-primary {
  display: inline-block;
  padding: 10px 30px;
  background: #6b705c;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  transition: background 0.3s;
}
.btn-primary:hover {
  background: rgb(106.7325, 111.72, 91.77);
}

.about-section {
  padding: 5rem 2rem;
  background-color: white;
}
.about-section .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 3rem;
}
@media (max-width: 768px) {
  .about-section .container {
    flex-direction: column;
  }
}
.about-section .about-content {
  flex: 3;
}
.about-section .about-content h2 {
  color: #6b705c;
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  position: relative;
}
.about-section .about-content h2:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: #c58c6d;
}
.about-section .about-content p {
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
}
.about-section .about-content p:last-child {
  margin-bottom: 0;
}
.about-section .about-image {
  flex: 2;
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.about-section .about-image:before {
  content: "";
  position: absolute;
  top: 20px;
  right: 20px;
  bottom: 20px;
  left: 20px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  z-index: 1;
  pointer-events: none;
  border-radius: 30px;
}
.about-section .about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.about-section .about-image img:hover {
  transform: scale(1.05);
}
.about-section.séminaire .container {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .about-section.séminaire .container {
    flex-direction: column;
  }
}

.gallery {
  padding: 5rem 2rem;
  background-color: #fffcf7;
}
.gallery-title {
  text-align: center;
  margin-bottom: 3rem;
}
.gallery-title h2 {
  color: #6b705c;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.gallery-title p {
  max-width: 700px;
  margin: 0 auto;
  color: #333;
  font-size: 1.1rem;
}
.gallery-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .gallery-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .gallery-container {
    grid-template-columns: 1fr;
  }
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  aspect-ratio: 4/3;
  cursor: pointer;
  background: white;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #c58c6d;
  color: white;
  padding: 0.8rem;
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 0;
  border-radius: 30px;
  transform: translateY(20px);
}
@media (max-width: 768px) {
  .gallery-caption {
    font-size: 0.7em;
  }
}
@media (max-width: 500px) {
  .gallery-caption {
    opacity: 1;
    transform: translateY(0);
  }
}
.gallery-more {
  text-align: center;
  margin-top: 3rem;
}
.gallery-more .btn-secondary {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  background: transparent;
  color: #6b705c;
  border: 2px solid #6b705c;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s ease;
  font-weight: 600;
}
.gallery-more .btn-secondary:hover {
  background: #6b705c;
  color: white;
}

.gallery-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.gallery-modal.active {
  opacity: 1;
  pointer-events: auto;
}
.gallery-modal-content {
  position: relative;
  max-width: 90%;
  max-height: 80vh;
}
.gallery-modal-content img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border: 5px solid white;
}
.gallery-modal-caption {
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  text-align: center;
  color: white;
  font-size: 1.1rem;
}
.gallery-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
}
.gallery-modal-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
}
.gallery-modal-nav button {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}
.gallery-modal-nav button:hover {
  background: rgba(255, 255, 255, 0.4);
}

.gites-page .gites-hero {
  padding: 30px;
  text-align: center;
  color: white;
}
.gites-page .gites-hero .hero-container {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../../image/IMG_4199_24-3-2025.jpeg) center/cover;
  background-position: 0 70%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-direction: column;
  flex: 1;
  border-radius: 30px;
  padding: 80px 30px;
}
.gites-page .gites-hero .hero-container h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}
@media (max-width: 500px) {
  .gites-page .gites-hero .hero-container h1 {
    font-size: 2.5rem;
  }
}
.gites-page .gites-hero .hero-container p {
  font-size: 1.3rem;
  max-width: 800px;
  margin: 0 auto;
}
@media (max-width: 500px) {
  .gites-page .gites-hero .hero-container p {
    font-size: 1.1rem;
  }
}
.gites-page .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.gites-page .gites-intro {
  padding: 5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.gites-page .gites-intro .container {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 3rem;
}
@media (max-width: 768px) {
  .gites-page .gites-intro .container {
    grid-template-columns: 1fr;
  }
}
.gites-page .gites-intro .intro-content h2 {
  color: #6b705c;
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}
.gites-page .gites-intro .intro-content p {
  margin-bottom: 1.2rem;
  line-height: 1.8;
}
.gites-page .gites-intro .intro-content p:last-child {
  margin-bottom: 0;
}
.gites-page .gites-intro .intro-image {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.gites-page .gites-intro .intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gites-page .gites-intro .intro-image img:hover {
  transform: scale(1.05);
}
.gites-page .gites-features {
  padding: 5rem 0;
  background-color: #fffcf7;
}
.gites-page .gites-features h2 {
  color: #6b705c;
  font-size: 2.2rem;
  margin-bottom: 3rem;
  text-align: center;
}
.gites-page .gites-features .features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
@media (max-width: 768px) {
  .gites-page .gites-features .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .gites-page .gites-features .features-grid {
    grid-template-columns: 1fr;
  }
}
.gites-page .gites-features .feature-item {
  background: white;
  border-radius: 30px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gites-page .gites-features .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.gites-page .gites-features .feature-item span.ui {
  display: inline-block;
  font-size: 2.5rem;
  color: #6b705c;
  margin-bottom: 1rem;
}
.gites-page .gites-features .feature-item h3 {
  color: #c58c6d;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.gites-page .gites-features .feature-item p {
  color: #333;
}
.gites-page .gites-list {
  padding: 5rem 0;
}
.gites-page .gites-list h2 {
  color: #6b705c;
  font-size: 2.2rem;
  margin-bottom: 1rem;
  text-align: center;
}
.gites-page .gites-list .list-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}
.gites-page .gites-list #box-LesChambres .liste {
  gap: 30px;
}
.gites-page .gites-list #box-LesChambres .liste .chambre {
  flex: 100%;
  border-radius: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.gites-page .gites-list #box-LesChambres .liste .chambre img {
  height: 300px;
  width: 100%;
  border-radius: 30px;
}
@media (max-width: 768px) {
  .gites-page .gites-list #box-LesChambres .liste .chambre {
    display: flex;
    flex-direction: column;
  }
}
.gites-page .gites-list #box-detailsChambre .hautPrésentation .info form .form-group_with_logo .input {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}
.gites-page .gites-dejeuner {
  padding: 2rem;
}
.gites-page .gites-dejeuner .container {
  background: #333;
  color: white;
  border-radius: 30px;
  padding: 30px;
  margin: 0;
  max-width: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
@media (max-width: 768px) {
  .gites-page .gites-dejeuner .container {
    grid-template-columns: 1fr;
  }
}
.gites-page .gites-dejeuner .container h2 {
  color: white;
  font-size: 2.2rem;
  margin-bottom: 3rem;
  text-align: center;
}
.gites-page .gites-dejeuner .container .text-content {
  text-align: justify;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.gites-page .gites-dejeuner .container .img-content {
  display: flex;
  overflow: hidden;
  border-radius: 30px;
}
.gites-page .gites-dejeuner .container .img-content img {
  width: 100%;
  flex: 1;
  object-fit: cover;
  transition: all 0.5s ease;
}
.gites-page .gites-dejeuner .container .img-content img:hover {
  transform: scale(1.05);
}
.gites-page .btn-secondary {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  background: transparent;
  color: #6b705c;
  border: 2px solid #6b705c;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
  font-weight: 600;
}
.gites-page .btn-secondary:hover {
  background: #6b705c;
  color: white;
}

.supplement-modal .supplement-item button {
  padding: 10px;
  border-radius: 10px;
  background: #c58c6d;
  color: white;
}
.supplement-modal .supplement-item button:hover {
  background: rgb(196.855, 139.7125, 108.635);
}

.contact-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
  color: #333;
}
.contact-page .contact-header {
  text-align: center;
  margin-bottom: 3rem;
}
.contact-page .contact-header h1 {
  color: #6b705c;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.contact-page .contact-header .subtitle {
  font-size: 1.2rem;
  color: #c58c6d;
}
.contact-page .contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .contact-page .contact-container {
    flex-direction: column;
  }
}
.contact-page .contact-info,
.contact-page .contact-form {
  flex: 1;
  min-width: 300px;
  background-color: #fffcf7;
  padding: 2rem;
  border-radius: 30px;
}
.contact-page .contact-info h2,
.contact-page .contact-form h2,
.contact-page .map-section h2 {
  color: #6b705c;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}
.contact-page .info-item {
  display: flex;
  margin-bottom: 1.5rem;
  position: static;
}
.contact-page .info-item i {
  font-size: 1.5rem;
  color: #c58c6d;
  margin-right: 1rem;
  min-width: 30px;
  text-align: center;
  font-style: normal;
}
.contact-page .info-item h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}
.contact-page .form-group {
  margin-bottom: 1.5rem;
}
.contact-page .form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.contact-page .form-group.form-check {
  display: flex;
  align-items: flex-start;
}
.contact-page .form-group.form-check input {
  width: auto;
  margin-top: 0.25rem;
  margin-right: 0.5rem;
}
.contact-page .required {
  color: #e74c3c;
}
.contact-page textarea {
  resize: vertical;
}
.contact-page .btn-primary {
  background-color: #c58c6d;
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.contact-page .btn-primary:hover {
  background-color: rgb(196.855, 139.7125, 108.635);
}
.contact-page .map-section {
  margin-top: 2rem;
}
.contact-page .map-container {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.photos-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
  color: #333;
}
.photos-page .photos-header {
  text-align: center;
  margin-bottom: 3rem;
}
.photos-page .photos-header h1 {
  color: #6b705c;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.photos-page .photos-header .subtitle {
  font-size: 1.2rem;
  color: #c58c6d;
}
.photos-page .gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2rem;
  gap: 0.5rem;
}
.photos-page .gallery-filters .filter-btn {
  background-color: #fffcf7;
  border: 1px solid #6b705c;
  color: #6b705c;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}
.photos-page .gallery-filters .filter-btn:hover {
  background-color: #6b705c;
  color: white;
}
.photos-page .gallery-filters .filter-btn.active {
  background-color: #6b705c;
  color: white;
}
.photos-page .gallery-container {
  margin-bottom: 30px;
}

.photo-information .info-box {
  background-color: #fffcf7;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.photo-information .info-box h2 {
  color: #6b705c;
  margin-bottom: 1rem;
}
.photo-information .info-box p {
  margin-bottom: 1rem;
  line-height: 1.6;
}
.photo-information .info-box p:last-child {
  margin-bottom: 0;
}
.photo-information .info-box a {
  color: #c58c6d;
  text-decoration: none;
  font-weight: 500;
}
.photo-information .info-box a:hover {
  text-decoration: underline;
}

body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

body.overlay-active::after {
  opacity: 1;
  visibility: visible;
}

footer {
  background: #6b705c;
  color: white;
  padding: 3rem 2rem 1rem;
}
footer .footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 500px) {
  footer .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
footer .social-links {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
}
@media (max-width: 500px) {
  footer .social-links {
    justify-content: center;
  }
}
footer .social-links a {
  color: white;
  font-size: 1.5rem;
  transition: opacity 0.3s;
}
footer .social-links a:hover {
  opacity: 0.8;
}
footer .footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.section-padding {
  padding: 100px 30px;
}
@media (max-width: 500px) {
  .section-padding {
    padding: 60px 20px;
  }
}

.bg-soft {
  background-color: #fffcf7;
}

.section-subtitle {
  display: block;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #c58c6d;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 15px;
}
.section-subtitle.light {
  color: rgba(255, 255, 255, 0.8);
}

.hero-premium {
  height: 90vh;
  min-height: 600px;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3)), url("../../image/exterieur.png") center/cover no-repeat fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  border-radius: 0 0 50px 50px;
  overflow: hidden;
}
.hero-premium .hero-content {
  max-width: 900px;
  padding: 0 20px;
}
.hero-premium .hero-content .rating-badge {
  margin-bottom: 30px;
}
.hero-premium .hero-content .rating-badge .stars {
  color: #FFD700;
  font-size: 1.5rem;
  display: block;
  margin-bottom: 5px;
}
.hero-premium .hero-content .rating-badge .label {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  opacity: 0.9;
}
.hero-premium .hero-content h1 {
  font-size: clamp(2.5rem, 8vw, 5rem);
  line-height: 1.1;
  margin-bottom: 25px;
  font-weight: 800;
}
.hero-premium .hero-content h1 .highlight {
  color: #c58c6d;
  font-weight: 300;
  font-style: italic;
  display: block;
}
.hero-premium .hero-content p {
  font-size: 1.4rem;
  margin-bottom: 40px;
  opacity: 0.9;
  font-weight: 300;
}
@media (max-width: 500px) {
  .hero-premium .hero-content p {
    font-size: 1.1rem;
  }
}
.hero-premium .hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}
@media (max-width: 500px) {
  .hero-premium .hero-actions {
    flex-direction: column;
    align-items: center;
  }
}
.hero-premium .scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  text-decoration: none;
  z-index: 2;
}
.hero-premium .scroll-down span {
  font-size: 2.5rem;
  color: rgba(255, 255, 255, 0.6);
}

.btn-primary-luxury {
  background: #6b705c;
  color: white;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 20px rgba(107, 112, 92, 0.3);
}
.btn-primary-luxury:hover {
  background: rgb(80.25, 84, 69);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(107, 112, 92, 0.4);
}

.btn-discover {
  color: white;
  text-decoration: none;
  padding: 18px 40px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  backdrop-filter: blur(5px);
  transition: all 0.3s;
}
.btn-discover:hover {
  background: white;
  color: #6b705c;
}

.btn-outline-white {
  display: inline-block;
  padding: 15px 35px;
  border: 2px solid white;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.3s;
}
.btn-outline-white:hover {
  background: white;
  color: #333;
}

.section-story .story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 768px) {
  .section-story .story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.section-story .story-image-wrapper {
  position: relative;
}
.section-story .story-image-wrapper .image-stack {
  position: relative;
  padding-bottom: 20%;
}
.section-story .story-image-wrapper .image-stack .img-1 {
  width: 85%;
  border-radius: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.section-story .story-image-wrapper .image-stack .img-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  border: 10px solid white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.section-story .story-image-wrapper .image-stack .floating-badge {
  position: absolute;
  top: 10%;
  right: 5%;
  background: #c58c6d;
  color: white;
  padding: 15px 25px;
  border-radius: 50px;
  font-weight: 800;
  transform: rotate(5deg);
  box-shadow: 0 5px 15px rgba(197, 140, 109, 0.4);
}
.section-story .story-content h2 {
  font-size: 3rem;
  color: #6b705c;
  margin-bottom: 30px;
  line-height: 1.2;
}
.section-story .story-content .lead {
  font-size: 1.2rem;
  color: #c58c6d;
  font-weight: 600;
  margin-bottom: 25px;
}
.section-story .story-content p {
  margin-bottom: 20px;
  color: #666;
}
.section-story .story-content .story-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}
.section-story .story-content .story-stats .stat-item .stat-val {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #6b705c;
}
.section-story .story-content .story-stats .stat-item .stat-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: #999;
  letter-spacing: 1px;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}
.experience-grid .exp-card {
  background: white;
  padding: 40px;
  border-radius: 30px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.03);
}
.experience-grid .exp-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  border-color: rgba(197, 140, 109, 0.2);
}
.experience-grid .exp-card .exp-icon {
  width: 80px;
  height: 80px;
  background: rgba(107, 112, 92, 0.05);
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}
.experience-grid .exp-card .exp-icon span {
  font-size: 2.5rem;
  color: #6b705c;
}
.experience-grid .exp-card h3 {
  margin-bottom: 15px;
  color: #c58c6d;
}
.experience-grid .exp-card p {
  font-size: 0.95rem;
  color: #777;
  line-height: 1.6;
}

.section-cta-split {
  position: relative;
  height: 60vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  color: white;
}
.section-cta-split .split-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.section-cta-split .split-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.7) 100%);
}
.section-cta-split .split-content {
  position: relative;
  width: 50%;
  padding: 60px;
}
@media (max-width: 768px) {
  .section-cta-split .split-content {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 500px) {
  .section-cta-split .split-content {
    padding: 20px;
  }
}
.section-cta-split .split-content h2 {
  font-size: 3rem;
  margin-bottom: 25px;
}
.section-cta-split .split-content p {
  font-size: 1.2rem;
  margin-bottom: 35px;
  opacity: 0.9;
  max-width: 500px;
}
@media (max-width: 768px) {
  .section-cta-split .split-content p {
    margin: 0 auto 35px;
  }
}

.section-gallery .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-gallery .gallery-container {
  width: 100%;
  margin-top: 40px;
}

.header-line {
  width: 60px;
  height: 3px;
  background: #c58c6d;
  margin: 20px auto 40px;
}

.text-center {
  text-align: center !important;
}

.section-header {
  margin-bottom: 50px;
}
.section-header.text-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.2, 0, 0.2, 1);
}
[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
  max-width: 1200px;
  margin: 40px auto;
}
@media (max-width: 768px) {
  .gallery-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .gallery-container {
    grid-template-columns: 1fr;
  }
}

.gallery-item {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
}

.landing-page .section-padding {
  padding: 100px 0;
}
.landing-page .badge {
  background: #c5a059;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
  margin-bottom: 20px;
  display: inline-block;
}
.landing-page .grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}
.landing-page .flex-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
}
.landing-page .flex-row .flex-col {
  flex: 1;
  min-width: 300px;
}
.landing-page.business .seminar-hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../../image/IMG_4318_30-3-2025.jpeg");
  background-size: cover;
  background-position: center;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}
.landing-page.business .seminar-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 20px;
}
.landing-page.business .seminar-hero p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 30px;
}
.landing-page.business .btn-primary-luxury {
  background: #c5a059;
  color: white;
  padding: 15px 35px;
  text-decoration: none;
  display: inline-block;
  border-radius: 5px;
  font-weight: bold;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.landing-page.business .btn-primary-luxury:hover {
  transform: translateY(-3px);
  background-color: #1a252f !important;
}
.landing-page.business .asset-card {
  text-align: center;
}
.landing-page.business .asset-card .material-symbols-outlined {
  font-size: 3rem;
  color: #c5a059;
}
.landing-page.business .asset-card h3 {
  margin: 20px 0;
}
.landing-page.business .details {
  background: #fcfaf7;
}
.landing-page.business .details .subtitle {
  color: #c5a059;
  font-weight: bold;
  text-transform: uppercase;
}
.landing-page.business .details h2 {
  font-size: 2.5rem;
  margin: 15px 0;
}
.landing-page.business .details img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.landing-page.business .details ul {
  list-style: none;
  padding: 0;
}
.landing-page.business .details ul li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
.landing-page.business .details ul li .material-symbols-outlined {
  color: #c5a059;
  margin-right: 10px;
}
.landing-page.business .form-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 50px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.landing-page.business .form-wrapper .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.landing-page.business .form-wrapper label {
  display: block;
  margin-bottom: 5px;
}
.landing-page.business .form-wrapper .btn-submit {
  background: #c5a059;
  color: white;
  padding: 15px 40px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}
.landing-page.business .form-wrapper .btn-submit:hover {
  background-color: #c5a059;
  transform: translateY(-3px);
}
.landing-page.business form input:focus,
.landing-page.business form select:focus,
.landing-page.business form textarea:focus {
  outline: none;
  border-color: #c5a059;
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.2);
}
.landing-page.business label.error {
  color: #e74c3c !important;
}
.landing-page.business label.error::after {
  content: " *";
}
.landing-page.romantic .romantic-hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("../../image/IMG_4262_24-3-2025.jpeg");
  background-size: cover;
  background-position: center;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}
.landing-page.romantic .romantic-hero .italic-subtitle {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 1.5rem;
  display: block;
  margin-bottom: 10px;
}
.landing-page.romantic .romantic-hero h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  margin-bottom: 20px;
  font-weight: 300;
}
.landing-page.romantic .romantic-hero p {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto 40px;
  font-weight: 300;
}
.landing-page.romantic .romantic-hero .btn-royal {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid white;
  color: white;
  padding: 18px 45px;
  text-decoration: none;
  border-radius: 50px;
  backdrop-filter: blur(5px);
  font-weight: bold;
  transition: 0.3s;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
}
.landing-page.romantic .romantic-hero .btn-royal:hover {
  background: white !important;
  color: #c5a059 !important;
  transform: scale(1.05);
}
.landing-page.romantic .romance-intro {
  background: #fff;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.landing-page.romantic .romance-intro .material-symbols-outlined {
  color: #e74c3c;
  font-size: 2.5rem;
}
.landing-page.romantic .romance-intro h2 {
  font-size: 2.5rem;
  margin: 20px 0;
}
.landing-page.romantic .romance-intro .lead {
  font-size: 1.25rem;
  color: #555;
  line-height: 1.8;
}
.landing-page.romantic .romantic-features {
  background: #fdf8f8;
}
.landing-page.romantic .romantic-features .feat-box {
  padding: 40px;
  background: white;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}
.landing-page.romantic .romantic-features .feat-box .material-symbols-outlined {
  font-size: 3rem;
  color: #d4a373;
}
.landing-page.romantic .romantic-features .feat-box h3 {
  margin: 20px 0;
}
.landing-page.romantic .romantic-gallery {
  display: flex;
  height: 500px;
  overflow: hidden;
  margin-top: 50px;
}
.landing-page.romantic .romantic-gallery .gallery-slice {
  flex: 1;
  background-size: cover;
  background-position: center;
}
.landing-page.romantic .romantic-gallery .gallery-slice:nth-child(1) {
  background-image: url("../../image/IMG_4107_24-3-2025.jpeg");
  filter: brightness(0.9);
}
.landing-page.romantic .romantic-gallery .gallery-slice:nth-child(2) {
  background-image: url("../../image/IMG_4360_30-3-2025.jpeg");
  border-left: 5px solid white;
  border-right: 5px solid white;
}
.landing-page.romantic .romantic-gallery .gallery-slice:nth-child(3) {
  background-image: url("../../image/IMG_4337_30-3-2025.jpeg");
}
.landing-page.romantic .final-cta {
  background: #fffcf7;
  text-align: center;
}
.landing-page.romantic .final-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.landing-page.romantic .final-cta p {
  font-size: 1.2rem;
  opacity: 0.8;
  margin-bottom: 40px;
}
.landing-page.romantic .final-cta .btn-cta {
  background: #c58c6d;
  color: white;
  padding: 20px 50px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  font-size: 1.1rem;
  display: inline-block;
}
.landing-page.family .family-hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("../../image/exterieur.png");
  background-size: cover;
  background-position: center;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}
.landing-page.family .family-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: 20px;
}
.landing-page.family .family-hero h1 span {
  color: #f1c40f;
}
.landing-page.family .family-hero p {
  font-size: 1.3rem;
  max-width: 800px;
  margin: 0 auto 30px;
}
.landing-page.family .family-hero .hero-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.landing-page.family .family-hero .hero-btns .btn-green {
  background: #27ae60;
  color: white;
  padding: 15px 35px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: 0.3s;
}
.landing-page.family .family-hero .hero-btns .btn-green:hover {
  background-color: #219150;
  transform: translateY(-2px);
}
.landing-page.family .family-hero .hero-btns .btn-outline {
  border: 2px solid white;
  color: white;
  padding: 13px 35px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: 0.3s;
}
.landing-page.family .family-hero .hero-btns .btn-outline:hover {
  background: white;
  color: #27ae60;
}
.landing-page.family .family-intro .subtitle-tag {
  color: #27ae60;
  font-weight: bold;
  text-transform: uppercase;
}
.landing-page.family .family-intro h2 {
  font-size: 2.5rem;
  margin: 15px 0;
}
.landing-page.family .family-intro .intro-text {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.landing-page.family .family-intro .features-grid-mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.landing-page.family .family-intro .features-grid-mini .mini-feat {
  display: flex;
  align-items: center;
  gap: 10px;
}
.landing-page.family .family-intro .features-grid-mini .mini-feat .material-symbols-outlined {
  color: #27ae60;
}
.landing-page.family .family-intro .intro-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.landing-page.family .activities {
  background: #f4f7f6;
}
.landing-page.family .activities .activities-header {
  text-align: center;
  margin-bottom: 60px;
}
.landing-page.family .activities .activities-header h2 {
  font-size: 2.5rem;
}
.landing-page.family .activities .activity-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.landing-page.family .activities .activity-card .card-img {
  height: 200px;
  background-size: cover;
  background-position: center;
}
.landing-page.family .activities .activity-card .card-body {
  padding: 25px;
}
.landing-page.family .testimonial-block {
  background: #27ae60;
  color: white;
  text-align: center;
}
.landing-page.family .testimonial-block .material-symbols-outlined {
  font-size: 3rem;
  opacity: 0.5;
}
.landing-page.family .testimonial-block .quote {
  font-size: 1.5rem;
  font-style: italic;
  max-width: 800px;
  margin: 10px auto;
}
.landing-page.family .testimonial-block .author {
  margin-top: 20px;
}
.landing-page.family .btn-outline-white:hover {
  background: white !important;
  color: #27ae60 !important;
}
.landing-page.family .btn-primary:hover {
  background-color: #219150 !important;
  transform: translateY(-2px);
}
.landing-page .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 768px) {
  .landing-page section {
    padding: 60px 0 !important;
  }
  .landing-page .hero-premium,
  .landing-page .romantic-hero,
  .landing-page .family-hero {
    min-height: 60vh !important;
    padding: 40px 20px !important;
  }
  .landing-page .flex-row {
    flex-direction: column !important;
    gap: 30px !important;
  }
  .landing-page .grid {
    grid-template-columns: 1fr !important;
  }
}

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