/* SECTION VIDÉO EN ARRIÈRE PLAN – spécifique à la page d'accueil */

.video-background {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.video-background video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 1;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

/* TEXTE PAR-DESSUS LA VIDÉO */
.video-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding-top: 30vh;
  font-family: 'Lora', serif;
}

.video-overlay h2 {
  font-size: 42px;
  margin-bottom: 10px;
}

.video-overlay p {
  font-size: 20px;
  opacity: 0.9;
}

/* Empêche le scroll horizontal */
body {
  overflow-x: hidden;
}

/* SECTION SERVICES ÉLÉGANTE */
/* LUXURY SERVICES SECTION */
.luxury-services {
  background: linear-gradient(145deg, #1A1229, #2A1F3C);
  padding: 120px 20px;
  color: #fff;
  font-family: 'Lora', serif;
  position: relative;
}

.services-container {
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
}

.services-title {
  font-size: 40px;
  color: #D4AF37;
  letter-spacing: 2px;
  margin-bottom: 80px;
  text-transform: uppercase;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  z-index: 1;
}

/* ÉCLAT DORÉ EXTÉRIEUR AU SURVOL */
.service-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 0 20px rgba(212, 175, 55, 0.6),   /* halo doré autour */
    0 20px 40px rgba(0, 0, 0, 0.5);     /* ombre noire dessous */
}



.service-icon img {
  height: 60px;
  margin-bottom: 30px;
  filter: brightness(1.2);
}

.service-card h3 {
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #ffffff;
  margin-bottom: 20px;
}

.service-card p {
  font-size: 15px;
  color: #dddddd;
  line-height: 1.8;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .services-title {
    font-size: 28px;
    margin-bottom: 50px;
  }

  .service-card {
    padding: 30px 20px;
  }

  .service-icon img {
    height: 50px;
  }
}


/* MODAL (POP-UP STYLE LUXE) */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.modal-content {
  background-color: #1A1229;
  color: #fff;
  margin: 10% auto;
  padding: 40px;
  border-radius: 15px;
  max-width: 600px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  position: relative;
  font-family: 'Lora', serif;
}

.modal-content h3 {
  color: #D4AF37;
  font-size: 24px;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.modal-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #ddd;
}

/* BOUTON FERMER */
.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-btn:hover {
  color: #D4AF37;
}


/*Formulaire de contact*/
.hero-contact-section {
  background: white;
  padding: 100px 0;
  font-family: 'Lora', serif;
}

.hero-contact-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 500px;
  padding-right: 5%;
}

.hero-form-wrapper {
  width: 100%;
  max-width: 500px;
  background: #ffffff;
  border: 2px solid #D4AF37;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  text-align: left;
}

.hero-form-wrapper h2 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #1A1229;
}

.hero-form-wrapper p {
  font-size: 17px;
  margin-bottom: 30px;
  color: #333;
}

.hero-form-wrapper input {
  width: 100%;
  padding: 14px;
  margin-bottom: 20px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 10px;
  background-color: #f9f9f9;
}

.hero-form-wrapper button {
  width: 100%;
  padding: 15px;
  background: #D4AF37;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-form-wrapper button:hover {
  background-color: #b8952d;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-contact-container {
    justify-content: center;
    padding: 0 20px;
  }

  .hero-form-wrapper {
    width: 100%;
  }
}
.hero-photo-section {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  font-family: 'Lora', serif;
}

/* L’image prend tout l’espace */
.hero-photo-section .background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Contenu au-dessus de l’image */
.hero-photo-content {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 100px 5%;
  min-height: 600px;
  box-sizing: border-box;
}

/* Boîte du formulaire */
.hero-photo-form {
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid #D4AF37;
  border-radius: 15px;
  padding: 40px;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  color: #1A1229;
}

.hero-photo-form h2 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 10px;
}

.hero-photo-form p {
  font-size: 17px;
  margin-bottom: 30px;
}

.hero-photo-form input {
  width: 100%;
  padding: 14px;
  margin-bottom: 20px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 10px;
  background-color: #f9f9f9;
}

.hero-photo-form button {
  width: 100%;
  padding: 15px;
  background: #D4AF37;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-photo-form button:hover {
  background-color: #b8952d;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-photo-content {
    justify-content: center;
    padding: 60px 20px;
  }

  .hero-photo-form {
    max-width: 100%;
  }
}


/* ANIMATION d'entrée élégante du formulaire */
@keyframes slideInRightRoyal {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.hero-photo-form {
  animation: slideInRightRoyal 1.4s ease-out forwards;
  opacity: 0; /* nécessaire pour l'animation */
}

.hero-photo-section .background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

/*FAQ*/

.faq-section {
  background-color: #1A1229;
  color: #ffffff;
  padding: 100px 30px;
  font-family: 'Playfair Display', serif;
}

.faq-title {
  font-family: 'Cinzel', serif;
  font-size: 36px;
  color: #D4AF37;
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  padding: 25px 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  animation: slideInRight 0.8s ease forwards;
  opacity: 0;
}

.faq-item:hover {
  transform: translateY(-4px);
  box-shadow:
    0 0 15px rgba(212, 175, 55, 0.4),  /* halo doré doux */
    0 15px 30px rgba(0, 0, 0, 0.4);    /* ombre noire élégante */
  border-color: rgba(212, 175, 55, 0.6); /* bordure dorée subtile */
}


.faq-question {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 18px;
  font-family: 'Cinzel', serif;
  font-weight: 600;
  text-align: left;
  width: 100%;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 22px;
  color: #D4AF37;
  transition: transform 0.3s ease;
}

.faq-question.active::after {
  content: "–";
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  padding-top: 0;
  transition: all 0.5s ease;
}

.faq-answer.open {
  max-height: 500px;
  opacity: 1;
  margin-top: 20px;
  padding-top: 20px;
}

.faq-answer p {
  background-color: #ffffff;
  color: #1A1229;
  padding: 20px;
  border-radius: 10px;
  font-size: 16px;
  line-height: 1.7;
  font-family: 'Playfair Display', serif;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faq-item.animate {
  animation: slideInRight 0.8s ease forwards;
}



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


.mini-story {
  background: linear-gradient(to bottom right, rgba(26, 18, 41, 0.7), rgba(58, 44, 85, 0.6));
  border: 2px solid #D4AF37;
  border-radius: 20px;
  padding: 35px 25px;
  margin-top: 40px;
  text-align: center;
  font-family: 'Playfair Display', serif;
  color: #f8f8f8;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInStory 1.2s ease-out;
  backdrop-filter: blur(6px);
  position: relative;
  z-index: 2;
}


.mini-story::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), transparent);
  z-index: -1;
}

.mini-story p {
  margin-bottom: 18px;
  font-size: 17px;
  line-height: 1.8;
  color: #f0f0f0;
  font-weight: 400;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}


.mini-story strong {
  color: #D4AF37;
  font-weight: 600;
  letter-spacing: 0.5px;
}

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

h1 {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}


.hero-photo-content {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  white-space: nowrap;
}

.hero-photo-content {
  display: none !important;
}

