/* Hero Section Styles */
#hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-light);
  padding-top: 80px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                    url('https://www.pushgaming.com/uploads/henry/henry-game-bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-content {
  max-width: 800px;
  padding: var(--spacing-xl);
  animation: fadeIn 1s ease-in-out;
}

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

#hero h1 {
  font-size: 3.5rem;
  margin-bottom: var(--spacing-lg);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

#hero p {
  font-size: 1.2rem;
  margin-bottom: var(--spacing-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

#hero .btn-primary {
  padding: var(--spacing-md) var(--spacing-xl);
  font-size: 1.1rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Responsive styles */
@media (max-width: 992px) {
  #hero h1 {
    font-size: 3rem;
  }
  
  #hero p {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  #hero {
    min-height: 500px;
  }
  
  #hero h1 {
    font-size: 2.5rem;
  }
  
  #hero p {
    font-size: 1rem;
  }
  
  .hero-content {
    padding: var(--spacing-lg);
  }
}

@media (max-width: 576px) {
  #hero {
    min-height: 450px;
  }
  
  #hero h1 {
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
  }
  
  #hero p {
    margin-bottom: var(--spacing-lg);
  }
  
  #hero .btn-primary {
    padding: var(--spacing-sm) var(--spacing-lg);
    font-size: 1rem;
  }
}