a.logo-container {
  text-decoration: none;
  color: inherit;
}

.nos-biens-section {
  background-color: #1A1229;
  padding: 100px 30px;
  text-align: center;
  font-family: 'Playfair Display', serif;
  overflow: hidden;
}

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

.biens-slider {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.slider-track {
  display: flex;
  width: calc(300px * 10 + 30px * 10); /* largeur totale: 10 images + marge */
  animation: scrollBiens 40s linear infinite;
  gap: 30px;
}

.slider-track img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
  flex-shrink: 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.slider-track img:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.5);
}

@keyframes scrollBiens {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


.bien-description {
  background-color: #1A1229;
  padding: 80px 30px;
  color: #ffffff;
  font-family: 'Playfair Display', serif;
  text-align: center;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  max-width: 900px;
  margin: 0 auto;
}

.bien-description.visible {
  opacity: 1;
  transform: translateY(0);
}

.bien-description-content {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

#bien-titre {
  color: #D4AF37;
  font-family: 'Cinzel', serif;
  font-size: 28px;
  margin-bottom: 20px;
}

#bien-texte {
  font-size: 17px;
  line-height: 1.7;
  color: #f0f0f0;
}

.hidden {
  display: none;
}


.hidden {
  display: none;
}

.bien-description {
  background-color: #1A1229;
  padding: 100px 20px;
  color: #ffffff;
  font-family: 'Playfair Display', serif;
  text-align: center;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.bien-description.visible {
  opacity: 1;
  transform: translateY(0);
}

.bien-description-content {
  background: linear-gradient(to bottom right, rgba(26, 18, 41, 0.9), rgba(58, 44, 85, 0.9));
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); /* plus doux */

}

#bien-titre {
  color: #D4AF37;
  font-family: 'Cinzel', serif;
  font-size: 30px;
  margin-bottom: 25px;
  letter-spacing: 1px;
}

#bien-texte {
  font-size: 18px;
  line-height: 1.8;
  color: #f0f0f0;
  max-width: 800px;
  margin: 0 auto;
}

.close-button {
  position: absolute;
  top: 15px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 26px;
  color: #D4AF37;
  cursor: pointer;
  transition: transform 0.2s ease;
  z-index: 3;
}

.close-button:hover {
  transform: scale(1.2);
  color: #fff5cc;
}




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

