* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: #3c2f2f;               /* brun foncé chaleureux pour texte */
  background: #fff8f0;           /* beige clair chaud, appétissant */
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  color: #c14a2e;                /* orange-brun gourmand pour titres */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.navbar {
  font-family: 'Playfair Display', serif;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: #E0C23A;           /* jaune (vert sauge/olive chaud) */
  color: white;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo {
  font-size: 1.6rem;
  font-weight: bold;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 30px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #c14a2e;               /* orange clair chaleureux au hover */
}

.burger {
  display: none;
  cursor: pointer;
}

.burger div {
  width: 25px;
  height: 3px;
  background: white;
  margin: 5px;
  transition: all 0.3s;
}

/* Burger mobile reste identique */

.hero {
  height: 50vh;
  min-height: 300px;
  background: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)), 
              url('images/aromat1.jpg') center/cover no-repeat;
  /* ↑ Image plus chaude : microgreens colorés avec tons orangés/jaunes – remplacez par la vôtre ! */
  color: white;
  display: flex;
  align-items: center;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 4.5rem;
  margin-bottom: 10px;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}

.slogan {
  font-size: 2.2rem;
  font-style: italic;
  margin-bottom: 20px;
  color: #ffddaa;               /* jaune-orangé clair pour slogan pop */
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  background: #ff6f61;           /* corail vif, appétissant */
  color: white;
  padding: 14px 30px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: all 0.3s;
}

.btn:hover {
  background: #ff8c6b;           /* plus clair au hover */
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255,111,97,0.3);
}

.section {
  padding: 100px 0;
}

.section-alt {
  background: #fff0e6;           /* beige rosé très chaud */
}

h2 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 50px;
  color: #c14a2e;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-12px);
  box-shadow: 0 12px 30px rgba(193,74,46,0.15); /* ombre orangée */
}

.card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.card h3 {
  padding: 20px 20px 5px;
  color: #556B2F;               /* vert chaud pour noms variétés */
}

.card p {
  padding: 0 20px 25px;
  color: #5c4033;               /* brun chaud */
}

.contact-info {
  margin-top: 40px;
  text-align: center;
  font-size: 1.1rem;
}

footer {
  background: #E0C23A;           /* même jaune que navbar */
  color: white;
  text-align: center;
  padding: 30px;
}

footer a {
  color: #ffddaa;
  text-decoration: none;
}

@media (max-width: 768px) {
  .hero h1 { font-size: 3rem; }
  .slogan { font-size: 1.6rem; }
  h2 { font-size: 2.4rem; }
}