/* =========================================================
   PAGE HERO SECTION - WITH IMAGE BACKGROUND
========================================================= */

.page-hero {
  position: relative;
  padding: 80px 40px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
  margin-top: 0;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Dark overlay for better text readability */
.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(27, 127, 124, 0.85), rgba(27, 46, 94, 0.95));
  z-index: 1;
}

/* Optional: Add decorative gradient overlay */
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.05));
  z-index: 1;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}

/* Breadcrumb Navigation */
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb a:hover {
  color: var(--orange);
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-separator {
  color: rgba(255, 255, 255, 0.5);
}

/* Page Hero Content */
.page-hero-content {
  color: var(--white);
  margin: 0 auto;
  max-width: 800px;
}

.page-hero-title {
  font-family: 'Quicksand', sans-serif;
  font-size: 56px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0;
  letter-spacing: -1px;
  color: var(--white);
}

.page-hero-subtitle {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.page-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  color: var(--orange);
  padding: 10px 20px;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.page-hero-label::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
}

/* CTA Buttons in Hero */
.page-hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
  justify-content: center;
}

/* Responsive */
@media (max-width: 768px) {
  .page-hero {
    padding: 60px 24px;
    min-height: 280px;
  }

  .page-hero-title {
    font-size: 40px;
    margin-bottom: 0;
  }

  .page-hero-subtitle {
    font-size: 16px;
  }

  .breadcrumb {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .page-hero {
    padding: 50px 16px;
    min-height: 240px;
  }

  .page-hero-title {
    font-size: 26px;
  }

  .page-hero-subtitle {
    font-size: 15px;
  }

  .page-hero-ctas {
    flex-direction: column;
    gap: 12px;
  }

  .page-hero-ctas a {
    width: 100%;
    text-align: center;
  }
}

/* Shorter hero variant for utility pages (e.g. category selection) that
   don't need the full marketing-height banner. */
.page-hero-short {
  padding: 44px 40px;
  min-height: 0;
}
@media (max-width: 768px) {
  .page-hero-short { padding: 36px 24px; }
}