/* Hero Section - Pure CSS */
#home {
  margin-top: 70px; /* Adjust to match header height */
  margin-bottom: 0;
}

/* .hero-section {
  height: 100vh;
  width: 100%;
  background: 
    linear-gradient(rgba(255, 255, 255, 0.6), 
    url('../assets/herolight.jpg'));
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
} */
.hero-section {
  height: 100vh;
  width: 100%;
  background: 
    linear-gradient(rgba(255, 255, 255, 0.6), 
    rgba(255, 255, 255, 0.6)),
    url('../assets/herolight.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0px;
  padding-bottom: 10px;
}

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

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #111;
}

.hero-description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #333;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-button {
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-button.primary {
  background: #dc2626;
  color: white;
}

.hero-button.primary:hover {
  background: #b91c1c;
}

.hero-button.secondary {
  border: 2px solid #dc2626;
  color: #dc2626;
}

.hero-button.secondary:hover {
  background: #dc2626;
  color: white;
}

.scroll-down-arrow {
  display: inline-block;
  font-size: 2rem;
  color: #dc2626;
  animation: bounce 2s infinite;
  text-decoration: none;
}

.scroll-anchor {
  height: 96px;
}

/* Bounce Animation */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}

/* Responsive Adjustments */
@media (min-width: 768px) {
  .hero-title {
    font-size: 3.75rem;
  }
  .hero-description {
    font-size: 1.25rem;
  }
}html {
  scroll-behavior: smooth;
}