/* Hero Section Styles */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(240, 237, 237, 0.863), rgba(240, 237, 237, 0.863)), url('https://raw.githubusercontent.com/CalKK/CALKK_/main/1 WHITE BACKGROUND.jpeg');
  background-size: cover;
  background-position: center;
  color: var(--dark-color);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

.hero-content {
  max-width: 800px;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 20px;
  color: var(--dark-color);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.2;
  opacity: 0;
  animation: fadeIn 1s ease forwards;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  opacity: 0;
  animation: fadeIn 1s ease 0.2s forwards;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  opacity: 0;
  animation: fadeIn 1s ease 0.4s forwards;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 3rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
}