/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  background: url('../../img/hero-bp.jpeg') no-repeat center center/cover;
  color: #fff;
  text-align: center;
  padding: 160px 20px 120px;
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.35) 100%);
  z-index: 0;
}

.hero > * {
  position: relative;
  z-index: 1;
}

#herologo img {
  width: clamp(100px, 12vw, 160px);
  filter: brightness(0) invert(1);
  margin-bottom: 24px;
}

.hero-content h1 {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.hero-content p {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  margin-bottom: 36px;
  font-weight: 400;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.92;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.btn-primary {
  display: inline-block;
  padding: 12px 28px;
  text-decoration: none;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  background-color: #d32f2f;
  border: 2px solid #d32f2f;
  border-radius: 6px;
  transition: background-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.btn-primary:hover {
  background-color: #b71c1c;
  border-color: #b71c1c;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(211, 47, 47, 0.35);
}

.btn-primary.btn-outline {
  background-color: transparent;
  border-color: #fff;
  color: #fff;
}

.btn-primary.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.15);
}

@media (max-width: 768px) {
  .hero {
    padding: 120px 16px 80px;
    min-height: 70vh;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}