/* ---------- IMPORT FONTS ---------- */
@import url('https://fonts.googleapis.com/css2?family=Schibsted+Grotesk:wght@900&family=Saira+Condensed:wght@700&display=swap');

/* ---------- RESET ---------- */
.contact-hero, .contact-hero * { box-sizing: border-box; }

/* ---------- FULL-WIDTH BREAKOUT ---------- */
/* This forces the element to ignore parent container widths and become full viewport width */
.contact-hero {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;   /* break out to the left */
  margin-right: -50vw;  /* break out to the right */
  width: 100vw;         /* now full viewport width */
  max-width: none !important;
  z-index: 10;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 75vh;         /* adjust as you like (reference: 75vh) */
  min-height: 420px;
  background-color: #000;
  padding: 0;
}

/* prevent any children from being clipped by parent width rules */
.contact-hero, .contact-hero * {
  max-width: none !important;
}

/* ---------- BACKGROUND IMAGE & OVERLAY ---------- */
.contact-hero .hero-background {
  position: absolute;
  inset: 0;
  background: url('https://theciomogul.com/wp-content/uploads/2025/10/Abstract-dark-background-with-moving-white-lines-and-dots-network-connection-worldwide-internet-connection-illustration-of-big-data-3d-rendering-_-Premium-Photo.jpg') center center / cover no-repeat;
  z-index: 0;
  pointer-events: none;
}

.contact-hero .hero-background::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1;
}

/* ---------- CONTENT ---------- */
.contact-hero .hero-content-text {
  position: relative;
  z-index: 2;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 0 5vw;
  width: 100%;
  max-width: 1200px;
}

/* eyebrow / small heading */
.contact-hero .hero-content-text .eyebrow {
  font-family: 'Saira Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0;
  color: #ffffff;
}

/* main heading */
.contact-hero .hero-content-text h1 {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-weight: 900;
  font-size: 50px;        /* desktop size */
  line-height: 1.02;
  letter-spacing: -1px;
  color: #FF4D4D;
  margin: 0;
  text-transform: uppercase;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1200px) {
  .contact-hero { height: 70vh; }
  .contact-hero .hero-content-text h1 { font-size: 52px; }
}

@media (max-width: 992px) {
  .contact-hero { height: 60vh; min-height: 380px; }
  .contact-hero .hero-content-text h1 { font-size: 42px; }
  .contact-hero .hero-content-text .eyebrow { font-size: 14px; }
}

@media (max-width: 768px) {
  .contact-hero { height: 55vh; min-height: 320px; }
  .contact-hero .hero-content-text h1 { font-size: 34px; }
  .contact-hero .hero-content-text .eyebrow { font-size: 12px; letter-spacing: 1px; }
  .contact-hero .hero-content-text { padding: 0 6vw; }
}

@media (max-width: 480px) {
  .contact-hero { height: 50vh; min-height: 300px; }
  .contact-hero .hero-content-text h1 { font-size: 28px; }
  .contact-hero .hero-content-text .eyebrow { font-size: 11px; }
}

/* OPTIONAL: avoid horizontal scrollbar caused by breakout — only add if you get horizontal scroll */
body { overflow-x: hidden; }

