/* ============================================
   FlexPRO — Unified Page Hero System
   Version: 1.0
   Purpose: Consistent internal page headers
   ============================================ */

/* === BASE PAGE HERO === */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
  padding: 120px 0 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* === TITLE === */
.page-hero h1 {
  color: var(--white);
  font-family: var(--font-display, 'Inter', sans-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}

/* === SUBTITLE === */
.page-hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  font-weight: 400;
  line-height: 1.5;
  margin: 0 0 16px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* === BREADCRUMB === */
.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.8125rem;
  margin-top: 8px;
}

.page-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-hero .breadcrumb a:hover {
  color: var(--white);
}

.page-hero .breadcrumb svg {
  width: 12px;
  height: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.page-hero .breadcrumb span {
  color: var(--secondary, #00d4aa);
}

/* === COMPACT VARIANT (Booking) === */
.page-hero--compact {
  padding: 100px 0 32px;
}

.page-hero--compact h1 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 8px;
}

.page-hero--compact p {
  font-size: 0.9375rem;
  margin-bottom: 12px;
}

/* === RESPONSIVE: TABLET (768px) === */
@media (max-width: 768px) {
  .page-hero {
    padding: 100px 0 40px;
  }

  .page-hero h1 {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  .page-hero p {
    font-size: 0.9375rem;
  }

  .page-hero--compact {
    padding: 88px 0 24px;
  }

  .page-hero--compact h1 {
    font-size: 1.5rem;
  }
}

/* === RESPONSIVE: MOBILE (480px) === */
@media (max-width: 480px) {
  .page-hero {
    padding: 88px 0 32px;
  }

  .page-hero h1 {
    font-size: 1.5rem;
    padding: 0 16px;
  }

  .page-hero p {
    font-size: 0.875rem;
    padding: 0 16px;
  }

  .page-hero .breadcrumb {
    font-size: 0.75rem;
  }

  .page-hero--compact {
    padding: 80px 0 20px;
  }

  .page-hero--compact h1 {
    font-size: 1.375rem;
  }
}
