/* Base Styles */
body {
  margin: 0;
  font-family: 'Georgia', serif;
  background-color: #fef9f6; /* slightly warmer than #fdf8f4 */
  color: #3a3a3a; /* softer dark text */
  line-height: 1.6;
}

/* Hero Section */
.hero {
  background-image: url('jardin-dete-website/mockup_fleurdegeorgiaparfum.png');
  background-size: cover;
  background-position: center;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: inset 0 0 60px rgba(0,0,0,0.15); /* subtle vignette for focus */
}

.hero .overlay {
  background-color: rgba(255, 255, 255, 0.9); /* slightly more opaque */
  padding: 2.5rem 3rem;
  border-radius: 1.2rem;
  text-align: center;
  max-width: 650px;
  box-shadow: 0 8px 24px rgba(90, 58, 47, 0.25);
  backdrop-filter: saturate(180%) blur(12px);
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 0.6rem;
  font-weight: 700;
  color: #6b4332; /* rich brown */
  letter-spacing: 0.05em;
}

.hero p {
  font-size: 1.25rem;
  color: #8a6d59;
  font-style: italic;
  font-weight: 500;
}

/* Sections */
section {
  padding: 3.5rem 2.5rem;
  max-width: 850px;
  margin: 0 auto;
  line-height: 1.75;
  color: #4b4037;
}

.product-intro h2,
.contact h2 {
  font-size: 2rem;
  color: #5a4432;
  margin-bottom: 1rem;
  font-weight: 600;
  border-bottom: 2px solid #c9b79c;
  padding-bottom: 0.3rem;
}

/* Footer */
footer {
  background-color: #ede6df;
  text-align: center;
  padding: 1.25rem 1rem;
  font-size: 0.95rem;
  color: #6c5a4a;
  letter-spacing: 0.03em;
  font-weight: 500;
}
