.hero-section {
  height: 100vh;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background-color: rgba(0, 0, 0, 0.2);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.2),
      rgba(0, 0, 0, 0.3)
  );
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-logo {
  width: 60%;
  max-width: 700px;
  height: auto;
  transition: all 0.4s ease-in-out;
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.15));
  margin-bottom: 6rem;
}

.hero-buttons {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-button {
  padding: 1.1rem 2.5rem;
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.08);
  color: #fff;
  backdrop-filter: blur(10px);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 200px;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hero-button:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 1);
  transform: translateY(-1px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.hero-button:active {
  transform: translateY(0);
}

.hero-button i {
  font-size: 1rem;
  transition: transform 0.3s ease;
  opacity: 0.9;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .hero-section {
      position: fixed;
      top: 0;
      left: 0;
      height: 100%;
      padding: 0;
      overflow: hidden;
  }

  .hero-logo {
      position: absolute;
      top: 50px;
      width: 85%;
      max-width: 500px;
  }

  .hero-buttons {
      position: fixed;
      left: 50%;
      transform: translateX(-50%);
      bottom: 50px; 
      flex-direction: column;
      gap: 12px;
      width: 85%;
      padding: 0;
  }

  .hero-button {
      width: 100%;
      min-width: unset;
  }
}

/* Larger screens - adjust the fixed values */
@media (min-height: 700px) and (max-width: 768px) {
  .hero-logo {
      top: 70px;
  }
  
  .hero-buttons {
      bottom: 50px;
  }
}

@media (min-height: 800px) and (max-width: 768px) {
  .hero-logo {
      top: 90px;
  }
  
  .hero-buttons {
      bottom: 60px;
  }
}

@media (min-height: 900px) and (max-width: 768px) {
  .hero-logo {
      top: 110px;
  }
  
  .hero-buttons {
      bottom: 110px;
      gap: 16px;
  }
}