/* ===== HERO SECTION ===== */
.hero-banner {
  position: relative;
  padding: 120px 20px 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

/* Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay);
  z-index: 1;
}

/* Container */
.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
}

/* Content */
.hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  animation: fadeUp 1s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

/* Heading */
.hero-content h1 {
  font-family: var(--site-font);
  font-size: 48px;
  font-weight: 600;
  color: var(--accent);
  line-height: 1.3;
  margin-bottom: 20px;
}

/* Paragraph */
.hero-content p {
  font-family: var(--site-font);
  font-size: 18px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 30px;
  padding: 0 20px;
}

/* Button */
.hero-btn {
  display: inline-block;
  background: var(--primary);
  color: var(--text-light);
  padding: 14px 30px;
  font-size: 15px;
  text-decoration: none;
  border-radius: 4px;
  transition: 0.3s ease;
}

.hero-btn:hover {
  background: var(--accent);
  color: var(--text-light);
}

/* ===== TABLET ===== */
@media (max-width: 1024px) {
  .hero-banner {
    padding: 100px 20px 120px;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content p {
    font-size: 16px;
  }
}

/* ===== MOBILE ===== */
@media (max-width: 767px) {
  .hero-banner {
    padding: 80px 15px 100px;
  }

  .hero-content h1 {
    font-size: 26px;
  }

  .hero-content p {
    font-size: 15px;
    padding: 0;
  }

  .hero-btn {
    max-width: 280px;
  }
}