/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #f9f9f9;
  color: #333;
}

/* === TON CODE D'ORIGINE - NE PAS TOUCHER === */
/* HEADER ULTRA PREMIUM */
.premium-header {
background: linear-gradient(145deg, #0d0d0d 0%, #1a1a1a 100%);
padding: 20px 0;
box-shadow: 0 4px 20px rgba(255, 215, 0, 0.15);
position: sticky;
top: 0;
z-index: 999;
backdrop-filter: blur(8px);
border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

/* CONTAINER */
.container {
width: 90%;
max-width: 1400px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
}

/* LOGO */
.logo img {
height: 80px;
object-fit: contain;
transition: transform 0.3s ease;
}

.logo img:hover {
transform: scale(1.05);
}

/* NAVBAR PREMIUM VISIBILITÉ MAXIMUM */
.navbar ul {
list-style: none;
display: flex;
gap: 40px;
margin: 0;
padding: 0;
}

.navbar ul li {
position: relative;
}

.navbar ul li a {
color: #ffffff;
text-decoration: none;
font-weight: 700;
font-size: 18px;
text-align: center;
display: flex;
flex-direction: column;
align-items: center;
transition: all 0.3s ease;
letter-spacing: 0.7px;
padding: 10px 15px;
border-radius: 10px;
}

.navbar ul li a span {
font-size: 24px;
margin-bottom: 6px;
color: #FFD700;
transition: transform 0.3s ease, color 0.3s ease;
}

.navbar ul li a:hover {
background: rgba(255, 255, 255, 0.08);
color: #FFD700;
box-shadow: 0 6px 18px rgba(255, 215, 0, 0.4);
transform: translateY(-3px);
}

.navbar ul li a:hover span {
transform: scale(1.3);
color: #ffffff;
}

.navbar ul li a::after {
content: '';
position: absolute;
left: 50%;
transform: translateX(-50%);
bottom: -6px;
width: 0;
height: 2px;
background: #FFD700;
transition: width 0.3s ease;
}

.navbar ul li a:hover::after {
width: 50%;
}



/* ==== RESPONSIVE ULTRA PREMIUM ++++ ==== */
@media (max-width: 992px) {
.container {
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.navbar {
  width: 100%;
  display: none;
  flex-direction: column;
  background: #111;
  padding: 20px;
  border-radius: 15px;
  margin-top: 10px;
  box-shadow: 0 8px 24px rgba(255, 215, 0, 0.1);
}

.navbar ul {
  flex-direction: column;
  gap: 15px;
  width: 100%;
}

.navbar ul li a {
  justify-content: flex-start;
  font-size: 16px;
}

.navbar ul li a span {
  font-size: 20px;
}



/* Hamburger Icon */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
}

.hamburger div {
  width: 28px;
  height: 3px;
  background: #FFD700;
  border-radius: 3px;
  transition: 0.3s;
}

.hamburger.active div:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active div:nth-child(2) {
  opacity: 0;
}

.hamburger.active div:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.navbar.show {
  display: flex;
}
}

@media (max-width: 500px) {
.logo img {
  height: 55px;
}


}


/* SECTION HERO ULTRA PREMIUM */
.hero {
  position: relative;
  background: url('img/hero-index.jpeg') no-repeat center center/cover;
  height: 85vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Overlay noir pour lisibilité */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 30px;
  animation: fadeInUp 1s ease-out forwards;
  opacity: 0;
}

.hero h1 {
  font-size: 3.8rem;
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.2;
}

.hero h1 .gold {
  color: #FFD700; /* Mot doré */
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 40px;
  line-height: 1.6;
  color: #f0f0f0;
}

/* ✅ ULTRA RESPONSIVE PREMIUM+++ MOBILE */
@media (max-width: 768px) {
  .hero {
    height: auto;
    padding: 80px 6% 100px;
  }

  .hero-content {
    padding: 20px;
  }

  .hero h1 {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 15px;
  }

  .hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.5;
  }
}


/* SECTION MAP */
.map-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f9f9f9 0%, #ececec 100%);
  text-align: center; 
}

.map-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.map-section h2 {
  font-size: 3rem;
  color: #222;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 50px; /* Réduit l'espacement entre le texte et la carte */
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
  margin-left: 40px; /* Décalage du texte vers la gauche */
}

.map-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  height: 3px;
  background-color: #f1c40f;
  border-radius: 5px;
}

#map {
  width: 100%;
  height: 600px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
  margin-top: 50px; /* Ajoute un espacement entre la carte et le titre */
  margin-left: 20px; /* Décale la carte à droite */
}

#map:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15), 0 15px 25px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .map-section h2 {
      font-size: 2rem;
      margin-bottom: 40px; /* Réduit l'espacement sur mobile */
      margin-left: 30px;
  }

  #map {
      height: 400px;
      margin-top: 30px;
      margin-left: 0; /* Réinitialise le décalage sur mobile */
  }
}


/* === SECTION DÉCOUVERTE ULTRA-PREMIUM === */
.discover-section {
  position: relative;
  padding: 100px 30px;
  background: linear-gradient(135deg, #ffffff, #f2f5f9);
  overflow: hidden;
  text-align: center;
}

.discover-inner {
  max-width: 1000px;
  margin: 0 auto;
  z-index: 2;
  position: relative;
}

.discover-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 20px;
}

.discover-subtitle {
  font-size: 1.2rem;
  color: #555;
  max-width: 750px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.discover-button {
  display: inline-block;
  padding: 16px 36px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #ffaf40, #b8860b);
  border-radius: 50px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.discover-button:hover {
  background: linear-gradient(135deg, #ffd166, #b8860b);
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* === BULLES / DÉCORATIONS EN FOND === */
.discover-decor {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #ffe09a 0%, transparent 70%);
  z-index: 1;
  opacity: 0.3;
  filter: blur(50px);
}

.decor-left {
  top: -100px;
  left: -120px;
}

.decor-right {
  bottom: -120px;
  right: -100px;
}

/* === RESPONSIVE === */
@media screen and (max-width: 768px) {
  .discover-title {
    font-size: 2.2rem;
  }

  .discover-subtitle {
    font-size: 1rem;
    padding: 0 10px;
  }

  .discover-button {
    font-size: 1rem;
    padding: 14px 28px;
  }
}



/* Bouton Doré Ultra Premium */
.btn-gold {
  background: linear-gradient(135deg, #FFD700, #FFC300);
  color: #000;
  padding: 14px 30px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
  transition: all 0.4s ease;
  display: inline-block;
}

.btn-gold:hover {
  background: linear-gradient(135deg, #FFC300, #FFD700);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.7);
  color: #000;
}

/* Animation d'entrée douce */
@keyframes fadeInUp {
  0% {
      transform: translateY(30px);
      opacity: 0;
  }
  100% {
      transform: translateY(0);
      opacity: 1;
  }
}
/* SECTION À PROPOS ULTRA PREMIUM */
.apropos {
  padding: 80px 0;
  background-color: #0a0a0a; /* Noir profond */
  text-align: center;
  position: relative;
  overflow: hidden;
}

.container-apropos {
  max-width: 900px;
  margin: auto;
  padding: 0 20px;
  animation: fadeInUp 1.2s ease-out forwards;
  opacity: 0;
}

.apropos h2 {
  font-size: 3rem;
  margin-bottom: 30px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 1px;
  line-height: 1.2;
}

.apropos h2 .gold {
  color: #FFD700;
}

.apropos p {
  font-size: 1.3rem;
  line-height: 1.8;
  color: #f0f0f0;
}

/* Petite barre dorée décorative sous le titre */
.apropos h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #FFD700 0%, #FFC300 100%);
  margin: 20px auto 0;
  border-radius: 50px;
}

/* Réutilisation de ton animation d'entrée */
@keyframes fadeInUp {
  0% {
      transform: translateY(30px);
      opacity: 0;
  }
  100% {
      transform: translateY(0);
      opacity: 1;
  }
}

/* SECTION VIDEO + TEXTE ULTRA PREMIUM */
.video-presentation {
  background-color: #0a0a0a;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.container-video {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  padding: 0 20px;
}

.video-wrapper {
  flex: 1 1 400px; /* Réduit la largeur de la vidéo */
  max-width: 800px; /* Limite la largeur maximale de la vidéo */
  height: auto; /* Laisse la hauteur s'adapter à la vidéo */
  max-height: 450px; /* Limite la hauteur de la vidéo pour l'adapter à l'écran */
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
  display: flex; /* Ajout de flex pour centrer l'image/vidéo à l'intérieur du container */
  justify-content: center;
  align-items: center;
}

.video-wrapper video {
  width: 100%;
  height: 100%; /* Assure que la vidéo prend toute la hauteur disponible */
  object-fit: contain; /* Permet à la vidéo de s'ajuster sans la couper */
  border-radius: 20px;
}

.text-wrapper {
  flex: 1 1 500px;
  color: #f0f0f0;
  animation: fadeInRight 1.2s ease-out forwards;
  opacity: 0;
}

.text-wrapper h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: #ffffff;
}

.text-wrapper h2 .gold {
  color: #FFD700;
}

.text-wrapper p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #d0d0d0;
}


/* Section Galerie */
.galerie {
  padding: 60px 0;
  background-color: #f9f9f9;
  text-align: center;
}

.galerie h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #333;
}

.galerie p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #666;
}

.container-galerie {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.overlay h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  font-weight: bold;
}

.overlay p {
  font-size: 1.2rem;
  font-style: italic;
}

.gallery-item:hover .overlay {
  opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
  .gallery {
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }

  .gallery-item img {
      object-position: center;
  }
}




/* Bouton secondaire ultra premium */
.btn-secondary {
  background: linear-gradient(90deg, #FFD700 0%, #FFC300 100%);
  color: #0a0a0a;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
}

.btn-secondary:hover {
  background: linear-gradient(90deg, #FFC300 0%, #FFD700 100%);
  transform: translateY(-3px);
}

/* Effet d'entrée du texte */
@keyframes fadeInRight {
  0% {
      transform: translateX(50px);
      opacity: 0;
  }
  100% {
      transform: translateX(0);
      opacity: 1;
  }
}









/* SECTION SERVICES ULTRA PREMIUM */
.services {
  padding: 100px 0;
  background: linear-gradient(135deg, #f5f5f5, #ececec);
  text-align: center;
  position: relative;
}

.services-header h2 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: #222;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.services-header h2 .gold {
  color: #d4af37;
  font-style: italic;
}

.services-header p {
  font-size: 1.3rem;
  color: #666;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
  font-weight: 400;
  text-transform: capitalize;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid #f0f0f0;
}

.service-card:before {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: #d4af37;
  border-radius: 10px;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #222;
  font-weight: 600;
  text-transform: capitalize;
}

.service-card p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
  font-weight: 400;
  text-align: left;
  letter-spacing: 0.5px;
}

.service-card:hover p {
  color: #333;
}

@media (max-width: 768px) {
  .services-header h2 {
      font-size: 2.5rem;
      margin-bottom: 10px;
  }

  .services-header p {
      font-size: 1.1rem;
      margin-bottom: 40px;
  }

  .services-grid {
      gap: 30px;
  }

  .service-card {
      padding: 30px 20px;
  }

  .service-card h3 {
      font-size: 1.6rem;
  }
}

.section-gestion-location {
  background: linear-gradient(to bottom right, #101010, #1f1f1f);
  color: white;
  padding: 80px 0;
  font-family: 'Montserrat', sans-serif;
}

.gestion-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
  justify-content: space-between;
}

.gestion-texte {
  flex: 1 1 500px;
}

.gestion-texte h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #FFD700;
}

.gestion-texte p {
  font-size: 18px;
  margin-bottom: 20px;
  line-height: 1.7;
}

.liste-avantages {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.liste-avantages li {
  margin-bottom: 15px;
  font-size: 17px;
}

.liste-avantages i {
  color: #FFD700;
  margin-right: 10px;
}

.accent-gold {
  color: #FFD700;
  font-weight: 600;
}

.btn-location-vente {
  background: #FFD700;
  color: #101010;
  padding: 14px 28px;
  text-transform: uppercase;
  font-weight: bold;
  border-radius: 8px;
  transition: background 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-location-vente:hover {
  background: #e6c200;
}

.gestion-image {
  flex: 1 1 400px;
  text-align: center;
}

.gestion-image img {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(255, 215, 0, 0.2);
}




/* === SECTION CONTACT ULTRA PREMIUM === */
.contact-redirect {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8f9fb, #e0e4f2);
  position: relative;
  overflow: hidden;
}

.contact-redirect-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #111;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #555;
  max-width: 750px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.cta-contact {
  display: inline-flex;
  align-items: center;
  padding: 16px 28px;
  border-radius: 50px;
  background: linear-gradient(135deg, #ffca3a, #b8860b);
  color: white;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.1rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  transition: background 0.3s ease, transform 0.3s ease;
}

.cta-contact i.arrow {
  margin-left: 12px;
  font-style: normal;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.cta-contact:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #ffd23f, #b8860b);
}

.cta-contact:hover .arrow {
  transform: translateX(5px);
}

/* === CONTACT BUBBLES === */
.contact-cards-premium {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 60px;
}

.contact-bubble {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  border-radius: 30px;
  padding: 40px 30px;
  width: 260px;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
}

.contact-bubble:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
}

.contact-bubble img {
  width: 55px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.contact-bubble h4 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
}

.contact-bubble p {
  font-size: 1.05rem;
  color: #333;
  word-break: break-word;
}

/* === BACKGROUND DÉCOR OPTIONNEL === */
.contact-redirect::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #ffdd8b 0%, transparent 70%);
  top: -100px;
  left: -100px;
  z-index: 1;
  opacity: 0.3;
}

.contact-redirect::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #ffc6c6 0%, transparent 70%);
  bottom: -100px;
  right: -100px;
  z-index: 1;
  opacity: 0.3;
}

/* === RESPONSIVE === */
@media screen and (max-width: 768px) {
  .contact-bubble {
    width: 90%;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .cta-contact {
    padding: 14px 22px;
    font-size: 1rem;
  }
}








.footer {
  background-color: #111;
  color: #ddd;
  padding: 60px 20px 30px;
  font-family: 'Montserrat', sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.footer-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
}

.footer-col h3 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #fff;
}

.footer-col p,
.footer-col a {
  font-size: 0.95rem;
  color: #bbb;
  text-decoration: none;
  line-height: 1.8;
}

.footer-col a:hover {
  color: #fff;
}

.social-icons a {
  color: #bbb;
  font-size: 1.2rem;
  margin-right: 15px;
  transition: 0.3s ease;
}

.social-icons a:hover {
  color: #007bff;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #333;
  padding-top: 20px;
  font-size: 0.85rem;
}

.footer-bottom a {
  color: #888;
  margin: 0 10px;
}

.footer-bottom a:hover {
  color: #fff;
}
