/* =============================================
   TASTE OF ASIA - PAGE HEADER (SHARED)
   Crimson hero section with breadcrumb for all pages
   ============================================= */

/* Page Header Container */
/* Crimson background extends behind Elementor Pro sticky header */
/* Content positioned with 32px gap below header bottom edge */
.toa-page-header {
  background: #82001b; /* Fallback hex crimson */
  background: var(--toa-crimson, #82001b);
  /* Pull section up behind fixed header (120px) */
  margin-top: -120px;
  /* 120px header + 32px breathing room + content + 28px bottom */
  padding: 180px 0 28px;
  margin-bottom: 32px;
}

.toa-page-header-inner {
  max-width: var(--toa-container-width);
  margin: 0 auto;
  padding: 0 var(--toa-gutter);
}

/* Breadcrumb */
.toa-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}

.toa-breadcrumb-link {
  background: none;
  border: none;
  color: var(--toa-gold);
  font-size: 13px;
  text-decoration: none;
  padding: 0;
  transition: color 0.15s ease;
}

.toa-breadcrumb-link:hover {
  color: var(--toa-white);
}

.toa-breadcrumb-sep {
  color: rgba(255, 255, 255, 0.3);
  font-size: 13px;
}

.toa-breadcrumb-current {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

/* Page Title */
.toa-page-title {
  font-family: var(--toa-font-heading);
  font-size: 42px;
  font-weight: 700;
  color: var(--toa-white);
  margin: 0 0 8px;
  line-height: 1.1;
}

/* Page Description */
.toa-page-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* Responsive */
@media (max-width: 767px) {
  .toa-page-header {
    /* Mobile Elementor header ~80px + 24px gap */
    margin-top: -80px;
    padding: 104px 0 20px;
    margin-bottom: 24px;
  }

  .toa-page-title {
    font-size: 28px;
  }

  .toa-breadcrumb {
    margin-bottom: 8px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .toa-page-header {
    /* Tablet Elementor header ~100px + 24px gap */
    margin-top: -100px;
    padding: 124px 0 24px;
  }

  .toa-page-title {
    font-size: 34px;
  }
}
