* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #1f2d1f;
  background: #f8f6ef;
  line-height: 1.6;
}

.header {
  background: #ffffff;
  padding: 14px 7%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo {
  height: 95px;
  width: auto;
  display: block;
}

.nav {
  display: flex;
  gap: 26px;
  align-items: center;
}

.nav a {
  text-decoration: none;
  color: #1f3b24;
  font-weight: 600;
}

.nav a:hover {
  color: #7ca632;
}

.hero {
  min-height: 82vh;
  background:
    linear-gradient(rgba(20, 45, 25, 0.65), rgba(20, 45, 25, 0.65)),
    url("images/verger.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 80px 7%;
  color: white;
}

.hero-content {
  max-width: 760px;
}

.tagline {
  color: #d9f28c;
  font-weight: bold;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero h1 {
  font-size: 52px;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-text {
  font-size: 20px;
  margin-bottom: 34px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
}

.primary {
  background: #7ca632;
  color: white;
}

.secondary {
  background: white;
  color: #1f3b24;
  border: 1px solid #d8d8d8;
}

.section {
  padding: 80px 7%;
}

.section h2 {
  font-size: 36px;
  margin-bottom: 24px;
  color: #1f3b24;
}

.intro {
  text-align: center;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
  margin-top: 40px;
}

.card {
  background: white;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  text-align: left;
}

.card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.card h3 {
  font-size: 26px;
  margin: 24px 24px 10px;
  color: #1f3b24;
}

.card p {
  margin: 0 24px 20px;
}

.card a {
  display: inline-block;
  margin: 0 24px 28px;
  color: #7ca632;
  font-weight: bold;
  text-decoration: none;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  background: #ffffff;
}

.split p {
  margin-bottom: 28px;
  font-size: 18px;
}

.image-box img {
  width: 100%;
  height: 500px;
  border-radius: 24px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.commercial {
  text-align: center;
  background: #eef2df;
}

.commercial p {
  max-width: 760px;
  margin: 0 auto 30px;
  font-size: 18px;
}

.footer {
  background: #1f3b24;
  color: white;
  text-align: center;
  padding: 24px;
}

@media (max-width: 850px) {
  .header {
    flex-direction: column;
    gap: 18px;
  }

  .logo {
    height: 85px;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }

  .hero {
    min-height: 70vh;
    padding: 60px 6%;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-text {
    font-size: 17px;
  }

  .cards,
  .split {
    grid-template-columns: 1fr;
  }

  .card img {
    height: 280px;
  }

  .image-box img {
    height: 320px;
  }

  .section {
    padding: 55px 6%;
  }
}

.main.section {
    max-width: 1400px;
    margin: 0 auto;
}

.main.section h1 {
    text-align: center;
    margin-bottom: 40px;
}

.fruit-container {
    display: flex;
    justify-content: center;
    gap: 60px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.fruit-bloc {
    flex: 1;
    min-width: 350px;
    max-width: 600px;
    text-align: center;
}

.fruit-image {
    display: block;
    margin: 0 auto 25px auto;
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
}

.verger-video {
    width: 100%;
    max-width: 550px;
    border-radius: 15px;
    margin: 0 auto 25px auto;
    display: block;
}

.fruit-bloc p {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.8;
}
.fruit-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: stretch;
}

.fruit-bloc {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.fruit-image,
.verger-video {
    width: 100%;
    max-width: 650px;
    height: 450px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 25px;
}

.fruit-bloc h2 {
    margin-bottom: 25px;
    color: #1f3b24;
    font-size: 2rem;
}

.fruit-bloc p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 90%;
}

.main h1 {
    text-align: center;
    margin-bottom: 50px;
    color: #1f3b24;
    font-size: 3rem;
}

@media (max-width: 900px) {

    .fruit-container {
        grid-template-columns: 1fr;
    }

    .fruit-image,
    .verger-video {
        height: 320px;
    }
}
.localisation-container {
    max-width: 1200px;
    margin: 40px auto;
    text-align: center;
}

.localisation-image {
    width: 100%;
    max-width: 1000px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.contact-section {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-section h1 {
  text-align: center;
  font-size: 42px;
  color: #1f3b24;
  margin-bottom: 20px;
}

.contact-intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 45px;
  font-size: 18px;
  color: #444;
}

.contact-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.contact-form,
.contact-card {
  background: #ffffff;
  padding: 35px;
  border-radius: 22px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 18px;
  border: 1px solid #d8d8d8;
  border-radius: 12px;
  font-size: 16px;
  font-family: Arial, Helvetica, sans-serif;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  background: #7ca632;
  color: #ffffff;
  border: none;
  padding: 15px 25px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
}

.contact-form button:hover {
  background: #688d2a;
}

.contact-card h2 {
  color: #1f3b24;
  font-size: 28px;
  margin-bottom: 5px;
}

.small-title {
  color: #7ca632;
  font-weight: bold;
  margin-bottom: 25px;
}

.contact-card p {
  margin-bottom: 16px;
  font-size: 17px;
}

.contact-card hr {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin: 25px 0;
}

@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-section h1 {
    font-size: 32px;
  }
}