/* ============================================================
   vertical-hero.css
   Full-bleed background hero used on the Mining, Logistics, and
   Food & Hospitality vertical pages. Background is either a
   looping video (.vertical-hero__bg-video) or a static image
   (.vertical-hero__bg-image), both covered by a gradient overlay
   so text remains readable at all viewport sizes.
   ============================================================ */

/* --- Wrapper: full-bleed container --- */
.vertical-hero {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  display: flex;
  align-items: center;
  padding: 88px 48px 72px;
  background: var(--navy);
}

/* --- Background video (Mining) --- */
.vertical-hero__bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* --- Background image (Logistics, Hospitality) --- */
.vertical-hero__bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* --- Gradient overlay — ensures text legibility over any bg --- */
.vertical-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    100deg,
    rgba(10,22,40,0.92) 0%,
    rgba(10,22,40,0.82) 40%,
    rgba(10,22,40,0.52) 72%,
    rgba(10,22,40,0.22) 100%
  );
}

/* --- Inner content: sits above overlay --- */
.vertical-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
}
.vertical-hero__inner > div { max-width: 620px; }

/* --- Back navigation button --- */
.back-button {
  background: none;
  border: none;
  color: var(--od-m);
  font-size: 13px;
  cursor: pointer;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0;
  margin-bottom: 20px;
  transition: color 0.15s;
}
.back-button:hover { color: var(--od); }

/* --- Vertical tag badge --- */
.vertical-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  margin-bottom: 18px;
}
.vertical-tag--mining {
  background: rgba(29,158,117,0.15);
  color: #4ED9A8;
  border: 1px solid rgba(29,158,117,0.3);
}
.vertical-tag--logistics {
  background: rgba(0,174,255,0.12);
  color: #7CCFFF;
  border: 1px solid rgba(0,174,255,0.22);
}
.vertical-tag--hospitality {
  background: rgba(153,53,86,0.15);
  color: #F48AAE;
  border: 1px solid rgba(153,53,86,0.3);
}

/* --- Headline --- */
.vertical-hero h1 {
  color: var(--od);
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.08;
  margin-bottom: 16px;
}

/* --- Subtitle --- */
.vertical-hero__subtitle {
  color: var(--od-m);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 32px;
}
