@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;500&family=Cinzel+Decorative:wght@400;700&display=swap');

body {
  margin: 0;
  background-color: #ffffff;
  color: #2e2e2e;
  overflow-x: hidden;
  font-size: clamp(14px, 1.3vw, 18px);
  font-family: 'Cinzel Decorative', cursive;
}

h1, h2, h3 {
  font-family: 'Lora', serif;
}

a,
.texte-cinzel {
  font-family: 'Cinzel Decorative', cursive;
  font-size: clamp(13px, 1.2vw, 16px);
}

/* BANDEAU HAUT */
.bandeau {
  background-color: #fdf2ea;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 2vw 1.5vw;
  flex-wrap: wrap;
  gap: 1.5vw;
}

.logo-wrapper {
  flex: 0 0 auto;
  text-align: center;
}

.main-logo {
  height: 20vw;
  max-height: 280px;
  width: auto;
  opacity: 0.95;
}

/* NAVIGATION */
.nav-btns {
  display: flex;
  flex-direction: row;
  gap: 2.5vw;
}

.nav-square {
  text-decoration: none;
  font-size: clamp(16px, 1.5vw, 22px);
  font-weight: 500;
  color: #b08d57;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
  font-family: 'Cinzel Decorative', cursive;
}

.nav-square::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #b08d57;
  transition: width 0.3s ease;
}

.nav-square:hover::after {
  width: 100%;
}

.nav-square:hover {
  color: #a0743f;
}

/* CARROUSEL CSS INFINI */
.carousel-container {
  overflow: hidden;
  width: 100%;
  padding: 3vh 0;
  background: white;
}

.carousel-track {
  display: flex;
  animation: scroll 20s linear infinite;
}

.carousel-container:hover .carousel-track {
  animation-play-state: paused;
}

.carousel-slide {
  flex: 0 0 auto;
  width: 300px;
  margin-right: 30px;
  position: relative;
}

.carousel-slide img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.4s ease, filter 0.4s ease;
  transform: rotateY(10deg);
  opacity: 0.8;
  display: block;
}

.carousel-slide img:hover {
  transform: scale(1.2) rotateY(0deg);
  opacity: 1;
  filter: brightness(1.1);
  z-index: 5;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* TEXTE D’ACCUEIL */
.accueil-text {
  text-align: center;
  max-width: 80%;
  margin: 4vw auto 5vw;
  padding: 0 1.5vw;
}

.accueil-text h1 {
  font-size: clamp(20px, 2vw, 28px);
  margin-bottom: 1.5vw;
  font-family: 'Lora', serif;
}

.accueil-text p {
  font-size: clamp(16px, 1.6vw, 22px);
  line-height: 1.95;
  font-family: 'Cinzel Decorative', cursive;
}

/* LISTES ET LIENS */
ul {
  font-size: clamp(16px, 1.6vw, 22px);
  line-height: 1.95;
  list-style: none;
  padding: 0;
  font-family: 'Cinzel Decorative', cursive;
}

footer {
  text-align: center;
  font-size: clamp(16px, 1.5vw, 20px);
  padding: 2.5vw 0;
  color: #999;
  font-family: 'Cinzel Decorative', cursive;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .bandeau {
    flex-direction: column;
    padding: 4vw 2vw;
  }

  .nav-btns {
    flex-direction: column;
    gap: 3vw;
    align-items: center;
  }

  .main-logo {
    height: 30vw;
    max-height: 200px;
  }

  .carousel-slide {
    width: 200px;
    margin-right: 20px;
  }

  .carousel-slide img {
    height: 200px;
    width: 100%;
  }

  .accueil-text {
    max-width: 90%;
    margin: 6vw auto 8vw;
  }
}

@media (min-width: 1440px) {
  .main-logo {
    height: 18vw;
    max-height: 300px;
  }

  .carousel-slide {
    width: 350px;
    margin-right: 30px;
  }

  .carousel-slide img {
    height: 350px;
    width: 100%;
  }

  .accueil-text {
    max-width: 60%;
  }
}

/* ---- AJOUT POUR PAGE MARQUES ---- */

.marque-ligne {
  display: flex;
  align-items: center;
  gap: 2vw;
  margin: 3vh auto;
  max-width: 900px;
  padding: 1.5vh 2vw;
  border-bottom: 1px solid #ddd;
}

.marque-logo {
  height: 140px; /* taille doublée */
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.85;
  flex-shrink: 0;
}

.marque-texte {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.marque-texte h2 {
  font-family: 'Lora', serif;
  font-size: clamp(18px, 2vw, 26px);
  margin: 0;
  letter-spacing: 1px;
}

.marque-texte p {
  font-family: 'Cinzel Decorative', cursive;
  font-size: clamp(16px, 1.6vw, 22px);
  margin: 5px 0 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .marque-ligne {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .marque-logo {
    height: 100px;
    margin-bottom: 10px;
  }

  .marque-texte {
    text-align: center;
  }
}

/* SECTION BIJOUX */
.bijoux-section {
  margin-top: 6vh;
}

.bijoux-section p {
  font-family: 'Cinzel Decorative', cursive;
  font-size: clamp(16px, 1.6vw, 22px);
  margin-bottom: 4vh;
  line-height: 1.8;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.bijoux-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2vw;
  justify-items: center;
  margin-bottom: 6vh;
}

.bijoux-grid img {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1 / 1;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  object-fit: cover;
  transition: transform 0.3s ease;
}

.bijoux-grid img:hover {
  transform: scale(1.03);
}

.services {
  font-size: clamp(16px, 1.6vw, 22px);
  font-family: 'Cinzel Decorative', cursive;
  max-width: 800px;
  margin: 0 auto 6vh;
  text-align: center;
  line-height: 1.8;
}
