body {
  margin: 0;
  font-family: "Georgia", serif;
  background: #faf7f2;
  color: #3a2e2a;
}

/* Section vignoble */
.vignoble {
  max-width: 1100px;
  margin: 4rem auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.vignoble-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #8b3a3a;
}

.vignoble-text p {
  line-height: 1.6;
  font-size: 1.1rem;
  color: #3a2e2a;
  margin-bottom: 1.5rem;
}

.vignoble-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Bouton secondaire */
.btn-secondary {
  display: inline-block;
  padding: 0.7rem 1.4rem;
  background: #8b3a3a;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
}

.btn-secondary:hover {
  background: #6e2f2f;
}

/* Responsive */
@media (max-width: 800px) {
  .vignoble {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .vignoble-image img {
    max-width: 90%;
    margin: auto;
  }
}


.site-header {
  background: #faf7f2;
  border-bottom: 1px solid #e0dcd5;
  padding: 0.5rem 1rem;
}

.site-header nav {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header .logo {
  font-size: 1.4rem;
  font-weight: bold;
  color: #8b3a3a;
  text-decoration: none;
}

.site-header ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.site-header a {
  text-decoration: none;
  color: #3a2e2a;
  font-weight: 500;
}

.site-header a:hover {
  color: #8b3a3a;
}

.hero-small {
  background: url("images/vignes.jpg") center/cover no-repeat;
  padding: 4rem 1.5rem;
  text-align: center;
  color: white;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.wine-grid {
  max-width: 1100px;
  margin: 2rem auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.wine-card {
  background: #fff;
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
}

.wine-card img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.price {
  font-weight: bold;
  color: #8b3a3a;
  margin-top: 0.5rem;
}



.hero {
  background: url("images/solaris.jpg") center/cover no-repeat;
  padding: 6rem 1.5rem;
  text-align: center;
  color: white;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.8rem 1.5rem;
  background: #8b3a3a;
  color: white;
  text-decoration: none;
  border-radius: 4px;
}

section {
  max-width: 900px;
  margin: 2rem auto;
  padding: 1.5rem;
}
