
.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
  background-color: var(--bg-color); /* Use background color variable */
  color: var(--text-color); /* Use text color variable */
}

.hero-content {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  margin-top: 100px;
}

.hero-text-container {
  margin: 0 auto;
  max-width: 1200px;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 30px;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--text-color) 0%, var(--mid-col) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2; /* Increase line height */
  padding-bottom: 5px; /* Add padding to prevent clipping */
}

.hero-subtitle {
  font-size: 2rem;
  color: var(--mid-col); /* Use mid color variable */
  margin-bottom: 30px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.hero-description {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--mid-col); /* Use text color variable */
  line-height: 1.6;
  letter-spacing: -0.01em;
  margin-bottom: 45px;
}

.hero-description:first-of-type {
  color: var(--mid-col); /* Use mid color variable */
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.hero-cta-container {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color:  var(--bg-color); /* Use teal color variable */
  color: var(--link-col); /* Use page color variable for text */
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid var(--link-col);
}

.hero-cta:hover {
  background-color: var(--link-col); /* Use teal color variable */
  color: var(--page-col); /* Use page color variable */
}

.secondary-cta {
  background-color: var(--bg-color); /* Use background color variable */
  color: var(--link-col); /* Use teal color variable */
  border: 2px solid var(--link-col); /* Use teal color variable */
  box-shadow: none;
}

.secondary-cta:hover {
  background-color: var(--link-col); /* Use teal color variable */
  color: var(--page-col); /* Use page color variable */
}

/* Animation classes */
.animate-on-load {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards;
  animation-delay: calc(var(--animation-order, 0) * 0.2s);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .hero-cta {
    padding: 10px 20px;
    font-size: 1rem;
  }
}