/* ==========================================================
   HERO SECTION - 
   ========================================================== */.hero-header {
  position: relative;
  overflow: hidden;
}

.hero-header img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

/* Pleine hauteur sur mobile uniquement */
@media (max-width: 767.98px) {
  .hero-header {
    height: 100vh;
  }

  .hero-header img {
    height: 100%;
    object-fit: cover;
  }
}



/* ==========================================================
   Section Présentation - Créatrice de bijoux artisanaux
   ========================================================== */
.section-bijoux {
  background-color: #fffdf9;
  padding: 4rem 2rem;
  text-align: center;
}

.section-bijoux h2 {
  color: var(--italian-red);
  font-family: 'Georgia', serif;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.section-bijoux p {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 2rem;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}


.section-bijoux .btn-contact {
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-size: 1rem;
  border: 2px solid var(--italian-red);
  background: transparent;
  color: var(--italian-red);
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.section-bijoux .btn-contact:hover {
  background: var(--italian-red);
  color: white;
}








/* ==========================================================
   Boutique - 
   ========================================================== */
.section-presentation {
  background-color: var(--gold);
  padding: 4rem 2rem;
}

.presentation-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.presentation-image img {
  width: 250px;
}

.presentation-text {
  max-width: 500px;
}

.presentation-text h2 {
  font-family: 'Georgia', serif;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: black;
}

.presentation-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 1.5rem;
}

.btn-presentation {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  border: 2px solid black;
  background: transparent;
  color: black;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-presentation:hover {
  background-color: black;
  color: white;
}

/* ==========================================================
   Section vente - 
   ========================================================== */

.bijoux-a-vendre {
  background-color: #fffdf9;
  padding: 4rem 2rem;
  text-align: center;
}

.bijoux-a-vendre h2 {
  font-family: 'Georgia', serif;
  color: black;
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.bijoux-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.bijou {
  background-color: #f8f8f8;
  padding: 1rem;
  border-radius: 12px;
  width: 200px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.bijou img {
  max-width: 100%;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.bijou .nom {
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.bijou .prix {
  color: black;
  font-size: 1.1rem;
}
.btn-panier {
  margin-top: 1rem;
  padding: 0.6rem 1.2rem;
  font-size: 1rem;
  background-color: black;
  color: white;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-panier:hover {
  background-color: #a00000;
}
