/* ========================================
   Let's Rock Barber Shop - Hero Section
   Full-Viewport Hero with CTA
   ======================================== */

.lr-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--lr-bg-primary);
}

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

@media (max-width: 767px) {
  /* image ratio 1909x1200 = 0.6286
     layout: header (98px) + image + CTA space (90px) */
  .lr-hero {
    min-height: calc(98px + 100vw * 0.6286 + 90px);
    max-height: calc(98px + 100vw * 0.6286 + 90px);
    align-items: flex-end;
    padding-bottom: 1.5rem;
  }

  .lr-hero__bg {
    object-fit: contain;
    object-position: center top;
    width: 100%;
    height: calc(100vw * 0.6286);
    top: 98px; /* push image below header — dark bg shows above */
    bottom: auto;
  }
}

/* Overlay */
.lr-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.5) 50%, rgba(10,10,10,0.85) 100%);
  z-index: 1;
}

/* Content */
.lr-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--lr-space-xl);
}

/* CTA Button */
.lr-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--lr-space-md);
  padding: var(--lr-space-lg) var(--lr-space-2xl);
  font-size: var(--lr-text-lg);
  font-weight: var(--lr-weight-bold);
  color: var(--lr-bg-primary);
  background-color: var(--lr-accent-gold);
  border-radius: var(--lr-radius-lg);
  text-decoration: none;
  transition: all var(--lr-transition-base);
  box-shadow: var(--lr-shadow-md);
}

.lr-hero__cta:hover {
  background-color: var(--lr-accent-gold-light);
  color: var(--lr-bg-primary);
  transform: translateY(-4px);
  box-shadow: var(--lr-shadow-glow-strong);
}

.lr-hero__cta:active {
  transform: translateY(-2px);
}

.lr-hero__cta i {
  font-size: var(--lr-text-base);
  transition: transform var(--lr-transition-fast);
}

.lr-hero__cta:hover i {
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 768px) {
  .lr-hero__cta {
    padding: var(--lr-space-md) var(--lr-space-xl);
    font-size: var(--lr-text-base);
  }
}

@media (max-width: 480px) {
  .lr-hero__cta {
    width: 80%;
    justify-content: center;
  }
}
