/* ============================================
   HERO — Hero sections & page banners
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--black);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 26, 0.95) 0%,
    rgba(26, 26, 26, 0.7) 50%,
    rgba(232, 101, 10, 0.15) 100%
  );
  z-index: 1;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.3;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero__label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: var(--space-lg);
}

.hero__title {
  color: var(--white);
  margin-bottom: var(--space-lg);
  line-height: 1.15;
}

.hero__title span {
  color: var(--orange);
}

.hero__text {
  font-size: 1.15rem;
  color: var(--gray-300);
  line-height: 1.8;
  margin-bottom: var(--space-2xl);
  max-width: 560px;
}

.hero__actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.hero__decoration {
  position: absolute;
  right: -50px;
  bottom: -50px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 2px solid rgba(232, 101, 10, 0.15);
  z-index: 1;
}

.hero__decoration::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 40px;
  right: 40px;
  bottom: 40px;
  border-radius: 50%;
  border: 2px solid rgba(232, 101, 10, 0.1);
}


/* === Page banner (inner pages) === */

.page-banner {
  position: relative;
  padding: calc(var(--nav-height) + var(--space-4xl)) 0 var(--space-4xl);
  background-color: var(--black);
  overflow: hidden;
}

.page-banner__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 26, 0.75) 0%,
    rgba(26, 26, 26, 0.55) 50%,
    rgba(232, 101, 10, 0.12) 100%
  );
}

.page-banner__content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-banner__content h1 {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.page-banner__content p {
  color: var(--gray-300);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  font-size: 0.85rem;
}

.breadcrumb a {
  color: var(--gray-300);
}

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

.breadcrumb .separator {
  color: var(--gray-500);
}

.breadcrumb .current {
  color: var(--orange);
  font-weight: 500;
}
