:root {
  --gold: #bfa05a;
  --gold-dark: #a88b48;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #fff;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  padding: 1rem;
}

.top-header {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 1000;
  padding: 10px 0;
  text-align: center;
}

.header-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo {
  max-width: 180px;
  height: auto;
}

.hero {
  position: relative;
  text-align: center;
}

.hero-image {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: cover;
}

.hero-content {
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
  text-align: center;
  width: 90%;
}

h1 {
  font-size: 2.4rem;
  margin-bottom: 0.5rem;
}

h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: #333;
}

/* Agrandir les slogans */
.slogan.large {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.6;
  margin: 0.5rem 0;
}

/* Bouton call-to-action doré */
.cta-button {
  display: inline-block;
  margin-top: 1rem;
  background: var(--gold);
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: var(--gold-dark);
}

/* Bloc prix doré */
.starting-price {
  text-align: center;
  padding: 2rem 0;
}

.starting-price .price-box {
  background: var(--gold);
  color: white;
  font-size: 2rem;
  padding: 1rem 2rem;
  border-radius: 12px;
  display: inline-block;
  margin-top: 0.5rem;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Sections split */
.split {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.split .text, .split .image {
  flex: 1 1 45%;
}

.image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

/* Galerie */
.gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
}

/* Formulaire */
form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  max-width: 500px;
  margin: auto;
}

form input, form select {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

/* Bouton formulaire */
form button {
  background: var(--gold);
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 1rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: background 0.3s ease;
}

form button:hover {
  background: var(--gold-dark);
}

/* Footer */
footer {
  background: #f3f3f3;
  text-align: center;
  padding: 1rem 0;
  font-size: 0.9rem;
  margin-top: 2rem;
}

/* WhatsApp flottant */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}

.whatsapp-float img {
  width: 55px;
  height: 55px;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .split {
    flex-direction: column;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .slogan.large {
    font-size: 1.1rem;
  }

  .cta-button,
  form button {
    font-size: 0.95rem;
    padding: 10px 20px;
  }

  .starting-price .price-box {
    font-size: 1.6rem;
  }

  .logo {
    max-width: 140px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
}
.price-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem; /* Ajuste l'espace entre les 2 blocs */
}

.price-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem; /* espace réduit entre les blocs */
  margin-top: 1rem;
}

@media screen and (max-width: 768px) {
  .price-wrapper {
    gap: 0.4rem;
    margin-top: 0.5rem;
  }

  .starting-price .price-box {
    font-size: 1.3rem;
    padding: 0.8rem 1.5rem;
  }
}
