.hero-banner {
  text-align: center;
  padding: 0rem 1rem 5rem;
  background: var(--background-color--dark);
  background-attachment: fixed;
  color: var(--color-white);
  position: relative;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Mobile background fallback */
@media (max-width: 768px) {
  .hero-banner {
    background-attachment: scroll;
    min-height: 60vh;
    padding: 2rem 1rem 3rem;
  }
}

.hero-content {
  animation: fadeInUp 1s ease;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  padding: 1rem;
}

@media (max-width: 992px) {
  .hero-content {
    max-width: 90%;
  }
}

.hero-logo {
  margin-bottom: 1.5rem;
}

.hero-logo-image {
  height: auto;
  max-height: 180px;
  max-width: 90%;
  width: auto;
  display: block;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .hero-logo-image {
    max-height: 150px;
  }
}

@media (max-width: 480px) {
  .hero-logo-image {
    max-height: 120px;
  }
}

.hero-banner p {
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  color: var(--color-gray);
  line-height: 1.8;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
  margin: 0 auto 2rem;
  max-width: 1000px;
  padding: 0 1rem;
  text-align: justify;
}

@media (max-width: 768px) {
  .hero-banner p {
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-banner p {
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }
}

/* Button styling */
.btn-primary {
  background-color: var(--btn-bg);
  color: var(--btn-text);
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.8rem 2rem;
  border-radius: var(--btn-radius);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.btn-primary:hover {
  background-color: var(--btn-hover-bg);
  color: var(--btn-hover-text);
}

@media (max-width: 480px) {
  .btn-primary {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* Landscape fix */
@media (max-height: 500px) and (orientation: landscape) {
  .hero-banner {
    min-height: 100vh;
    padding: 1rem 0;
  }

  .hero-logo-image {
    max-height: 100px;
  }

  .hero-banner p {
    margin-bottom: 1rem;
  }
}
