.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-section a {
  display: flex;
  position: relative;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
}

.hero-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.4);
  z-index: 1;
}

.logo-hero {
  position: absolute;
  margin: 0px;
  z-index: 2;
  max-width: 10%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-section h1 {
  position: absolute;
  top: 64%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgb(255, 200, 0);
  font-size: 40px;
  font-weight: 700;
  font-family: "Nohemi";
  text-transform: uppercase;
  text-align: center;
  margin: 0;
  z-index: 2;
  width: 100%;
}

.hero-cta-button {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  font-family: "DM Sans", sans-serif;
  background-color: rgb(255, 255, 255);
  color: #000000;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  z-index: 2;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.hero-cta-button:hover{
  background-color: rgb(255, 200, 0);
  color: #000000;
  transform: translateX(-50%) scale(1.05);
  box-shadow: 0 4px 12px #ffc40033;
}

.hero-section h3:hover {
  color: #000000;
  text-shadow: 1px 1px rgba(255, 255, 255, 0.527);
}

/* ===== RESPONSIVE HERO STYLES ===== */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
  .hero-section {
    height: 100vh;
  }

  .hero-section h3 {
    font-size: 26px;
    top: 35%;
  }

  .hero-section h1 {
    font-size: 36px;
    top: 50%;
  }

  .hero-cta-button {
    padding: 10px 20px;
    font-size: 13px;
    bottom: 60px;
  }
}

/* Mobile (below 768px) */
@media (max-width: 767px) {
  .hero-section {
    height: 100vh;
    min-height: 500px;
  }

  .logo-hero {
    max-width: 20%;
    top: 57%;
  }

  .hero-section h1 {
    font-size: 26px;
    top: 67%;
  }

  .hero-cta-button {
    padding: 9px 18px;
    font-size: 12px;
    bottom: 50px;
  }
}

/* Small Mobile (below 480px) */
@media (max-width: 479px) {
  .hero-section {
    height: 100vh;
    min-height: 400px;
  }

  .hero-section h3 {
    font-size: 16px;
    top: 35%;
  }

  .hero-section h1 {
    font-size: 22px;
    top: 50%;
  }

  .hero-cta-button {
    padding: 8px 16px;
    font-size: 11px;
    bottom: 40px;
  }
}