/* Hero Section Styles */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;

  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('https://i.pinimg.com/736x/49/83/06/49830613220104f76793c8e26f80c7c8.jpg') no-repeat center/cover;
  opacity: 1;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 700px;
  text-align: left;
  animation: fadeIn 1s ease-in-out;
}

.hero h1 {
  margin-bottom: var(--spacing-md);
  text-shadow: 0 2px 4px rgba(180, 78, 167, 0.623);
  color: white;
}

.hero h1 span {
  color: var(--secondary-light);
  position: relative;
  display: inline-block;
}

.hero h1 span::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 4px;
  background: var(--secondary-light);
  bottom: -8px;
  left: 0;
  border-radius: var(--border-radius-full);
}

.hero p {
  font-size: var(--font-size-lg);
  margin-bottom: var(--spacing-lg);
  max-width: 600px;
  opacity: 0.9;
  color: white;
}

.hero .btn {
  padding: var(--spacing-sm) var(--spacing-lg);
  font-size: var(--font-size-md);
  border-radius: var(--border-radius-md);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all var(--transition-normal);
}

.hero .btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

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

/* Media Queries */
@media (max-width: 768px) {
  .hero {
    padding-top: 80px;
    height: auto;
    min-height: 500px;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero p {
    font-size: var(--font-size-md);
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 450px;
  }
  
  .hero h1 {
    font-size: var(--font-size-xl);
  }
  
  .hero p {
    font-size: var(--font-size-sm);
  }
}