/* ================================
   Hero Layout (.hero)
   ================================ */

@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap");

.hero {
  font-family: "Montserrat", sans-serif;
  color: #1a1a1a;
  background-color: #ffffff;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* --- Full-width image --- */
.hero-image-wrapper {
  width: 100%;
  max-height: 800px;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  max-height: 800px;
  object-fit: cover;
  display: block;
}

/* --- Content below image --- */
.hero-content {
  width: 80%;
  margin: 0 auto;
  padding-top: 2em;
  padding-bottom: 4em;
  text-align: center;
}

/* --- Typography --- */
.hero-category {
  color: #2eaf4a;
  text-transform: uppercase;
  font-size: 1.1em;
  font-weight: 600;
  margin-bottom: 0.6em;
}

.hero-header {
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 1em;
}

.hero-lead {
  font-size: 1.05em;
  margin: 0 auto;
  font-weight: 600;
  color: #333;
  margin-bottom: 2em;
  max-width: 1200px;
}

.hero-body {
  font-size: 1em;
  max-width: 1200px;
  margin: 0 auto;
  color: #444;
  text-align: justify;
}

/* --- Button --- */
.hero-button-wrapper {
  margin-top: 2em;
}

.hero-button {
  display: inline-block;
  background-color: #2eaf4a;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  padding: 0.6em 1.6em;
  border-radius: 0.3em;
  transition: background-color 0.25s ease;
}

.hero-button:hover {
  background-color: #24953b;
}

/* --- Responsive margins --- */

/* Desktop */
@media (min-width: 993px) {
  .hero-content {
    margin-left: 10%;
    margin-right: 10%;
  }
}

/* Tablet */
@media (max-width: 992px) and (min-width: 601px) {
  .hero-content {
    margin-left: 5%;
    margin-right: 5%;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .hero-content {
    margin-left: 2%;
    margin-right: 2%;
  }

  .hero-header {
    font-size: 1.8em;
  }

  .hero-lead {
    font-size: 1em;
  }

  .hero-body {
    font-size: 0.95em;
  }
}