#homepage #first-section {
  overflow: hidden;
  background-color: var(--bg-dark);
}

#homepage #first-section .bg-image {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transition: transform 4s ease-in-out;
}

#homepage #first-section .hero-overlay {
  background-color: rgba(0, 0, 0, 0.35);
}

#homepage #first-section .hero-logo {
  max-width: 180px;
  height: auto;
}

#homepage #first-section .hero-title {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  font-weight: 400;
  margin-bottom: 0.2rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

#homepage #first-section .hero-subtitle {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  letter-spacing: 4px;
  font-weight: 600;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

#homepage #first-section .hero-location {
  font-family: var(--font-primary);
  font-size: 1rem;
  font-style: italic;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  #homepage #first-section .hero-title {
    font-size: 2.8rem;
  }
  #homepage #first-section .hero-subtitle {
    font-size: 0.9rem;
    letter-spacing: 2px;
  }
  #homepage #first-section .hero-logo {
    max-width: 130px;
  }
}
