/* Hero Section */
.hero {
  background-image: url("/mawarid_website_custom/static/img/Rectangle23860-new.png");
  background-size: cover;
  background-position: center;
  height: 684px;
  position: relative;
  width: 100%;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(103deg, rgba(1, 133, 65, 0.3) 0%, rgba(0, 91, 44, 0.7) 100%);
  z-index: 1;
}


.hero-floating-logo {
  position: absolute;
  bottom: 0;
  width: 25vw;
  max-width: 426px;
  opacity: 0.5;
  z-index: 2;
  pointer-events: none;
  user-select: none;
}

.hero-floating-logo-left {
  left: 0;
}

.hero-floating-logo-right {
  right: 0;
}

.hero-content {
  width: 684px;
  max-width: calc(100% - 160px);
  text-align: center;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.hero-title {
  font-size: 48px;
  font-weight: 500;
  line-height: 1.6;
  color: #ffffff;
  margin: 0;
}

.hero-description {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.6;
  color: #ffffff;
  margin: 0;
  width: 100%;
  max-width: 698px;
  text-align: center;
}

.hero-description br {
  margin: 8px 0;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 0;
  align-items: center;
}

.hero-btn-outline {
  border: 2px solid #ffffff;
  background: transparent;
  color: #ffffff;
  padding: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
}

.hero-btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.7);
  color: #066434;
}

@media (max-width: 639px) {
  .hero-floating-logo-left,
  .hero-floating-logo-right {
    display: none;
  }

  .hero-content {
    max-width: calc(100% - 20px);
    padding: 0 20px;
  }
}
