/* Hero Section Styles */
.hero-section-new {
  position: relative;
  width: 100%;
  height: 763px; /* Fixed height as requested */
  background-image: url("../images/Home-Page.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0; /* Header is fixed, padding is on body */
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2); /* Slight overlay for readability if needed */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1200px;
  padding: 0 20px;
}

.hero-title {
  font-family: var(--font-primary);
  font-weight: 400;
  font-style: normal;
  font-size: 109px;
  line-height: 120%; /* 130.8px */
  letter-spacing: -0.02em; /* -2% */
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.hero-subtitle {
  font-family: var(--font-secondary);
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  line-height: 120%; /* 24px */
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn-hero {
  display: inline-block;
  padding: 15px 30px;
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 200px;
  text-align: center;
}

.btn-hero-solid {
  background-color: var(--primary-color); /* Matching theme */
  color: var(--white);
  border: 1px solid var(--primary-color);
}

.btn-hero-solid:hover {
  background-color: var(--hover-color);
  border-color: var(--hover-color);
}

.btn-hero-outline {
  background-color: var(--white);
  color: var(--primary-color);
  border: 1px solid var(--white);
}

.btn-hero-outline:hover {
  background-color: var(--light-bg);
}

/* Responsive */
@media (max-width: 991px) {
  .hero-section-new {
    height: 600px;
  }
  .hero-title {
    font-size: 60px;
  }
}

@media (max-width: 768px) {
  .hero-section-new {
    height: 500px;
  }
  .hero-title {
    font-size: 40px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  .btn-hero {
    width: 100%;
    max-width: 300px;
  }
}
