.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('../assets/hero-barbershop.jpg') center center / cover no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.55) 0%,
    rgba(10, 10, 10, 0.7) 60%,
    rgba(10, 10, 10, 0.85) 100%
  );
}

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

.hero-eyebrow {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c9a14a;
  margin: 0 0 18px;
}

.hero-title {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.15;
  color: #ffffff;
  margin: 0 0 20px;
}

.hero-subtitle {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  max-width: 480px;
  margin: 0 auto 40px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.btn-solid,
.btn-outline {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 2px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.3s ease, color 0.3s ease;
}

.btn-solid {
  background: linear-gradient(135deg, #e2c275, #c9a14a);
  color: #0e0e0e;
  border: none;
}

.btn-solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(201, 161, 74, 0.4);
}

.btn-outline {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #e2c275;
  color: #e2c275;
  transform: translateY(-2px);
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 14px;
    width: 100%;
  }

  .btn-solid,
  .btn-outline {
    width: 100%;
  }
}

/* ---------- Text reveal on load ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  animation: revealUp 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.reveal-1 { animation-delay: 0.1s; }
.reveal-2 { animation-delay: 0.25s; }
.reveal-3 { animation-delay: 0.35s; }
.reveal-4 { animation-delay: 0.5s; }
.reveal-5 { animation-delay: 0.65s; }

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