html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Roboto", sans-serif;
  color: #ffffff;
  background-color: #89c163;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image: url("background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}

.overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(42, 71, 23, 0.65);
  backdrop-filter: saturate(110%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.site-logo {
  max-width: 180px;
  width: 100%;
  height: auto;
  margin-bottom: 1.75rem;
}

.eyebrow {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
}

h1,
.subtitle,
.lead,
.info-card,
.info-card p,
.info-card a,
.info-label {
  color: #ffffff;
}

.subtitle {
  font-size: 1.35rem;
  font-weight: 400;
}

.intro-text {
  max-width: 760px;
  font-size: 1.1rem;
  line-height: 1.8;
}

.info-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 1.25rem;
  padding: 1.75rem;
  backdrop-filter: blur(6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.info-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  opacity: 0.9;
}

.info-card a {
  text-decoration: none;
}

.info-card a:hover,
.info-card a:focus,
.btn-outline-light:hover,
.btn-outline-light:focus {
  color: #ffffff;
}

.hero-actions .btn {
  border-radius: 999px;
  font-weight: 500;
}

@media (max-width: 767.98px) {
  .hero-content {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .site-logo {
    max-width: 140px;
  }

  h1 {
    font-size: 2.3rem;
  }

  .subtitle {
    font-size: 1.15rem;
  }

  .intro-text {
    font-size: 1rem;
    line-height: 1.7;
  }

  .info-card {
    padding: 1.25rem;
  }
}
