/* Hero Section */
.hero {
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  margin-top: 74px; /* Adjusted for fixed header */
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--overlay);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  width: 100%;
  padding: 0 20px;
  text-align: center;
  margin: 0 auto;
}

.hero-logo {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 20px;
  animation: fadeInUp 1s ease both;
}

.hero-logo img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.3));
}

.hero-content .subtitle {
  font-size: 1.5rem;
  color: var(--accent);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.5px;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: var(--text-light);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 992px) {
  .hero-logo {
    max-width: 500px;
  }

  .hero-content .subtitle {
    font-size: 1.3rem;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .hero-logo {
    max-width: 400px;
    margin-bottom: 15px;
  }

  .hero-content .subtitle {
    font-size: 1.2rem;
    margin: -10px 0 20px;
  }

  .hero-content p {
    font-size: 1rem;
    margin-bottom: 30px;
  }
}

@media (max-width: 576px) {
  .hero {
    margin-top: 60px;
  }

  .hero-logo {
    max-width: 300px;
  }

  .hero-content .subtitle {
    font-size: 1.1rem;
    margin: -8px 0 15px;
  }

  .hero-content p {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }
}
