/* Import fonts */
@import url('https://fonts.googleapis.com/css2?family=Schibsted+Grotesk:wght@900&family=Saira+Condensed:wght@700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ==============================
   STATIC HERO — FULL SCREEN
============================== */
.static-hero {
  position: relative;
  width: 100vw;
  height: 80vh; /* keep 80vh */
  overflow: hidden;
  background-color: #000;

  display: flex;
  justify-content: center; /* center horizontally */
  align-items: center;     /* vertical centering */
  text-align: center;
  padding: 0 5vw;
}

/* Ensure it breaks out of WP containers */
.static-hero,
.static-hero * {
  max-width: 100% !important;
}

/* Background image */
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://theciomogul.com/wp-content/uploads/2025/10/pngtree-business-atmosphere-black-gold-particles-lines-black-background-picture-image_1031386.png') center center / cover no-repeat;
  z-index: 0;
}

/* Black overlay for better text visibility */
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35); /* slightly stronger black overlay */
  z-index: 1;
}

/* ==============================
   CONTENT STYLING
============================== */
.hero-content {
  position: relative;
  z-index: 2;
  color: #FFFFFF; /* text color is white */
  max-width: 800px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* MAIN HEADING */
.hero-content h1 {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-weight: 900;
  font-size: 60px;
  line-height: 68px;
  letter-spacing: -1px;
  color: #FFFFFF;
  margin-bottom: 20px;
}

/* DESCRIPTION */
.hero-content p {
  font-family: 'Saira Condensed', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  color: #FFFFFF;
  max-width: 600px;
}

/* ==============================
   RESPONSIVENESS
============================== */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 48px;
    line-height: 56px;
  }
}

@media (max-width: 768px) {
  .static-hero {
    height: 80vh;
    padding: 0 4vw;
  }

  .hero-content h1 {
    font-size: 38px;
    line-height: 46px;
  }

  .hero-content p {
    font-size: 15px;
    line-height: 24px;
    max-width: 90%;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 30px;
    line-height: 38px;
  }

  .hero-content p {
    font-size: 14px;
    line-height: 22px;
    max-width: 95%;
  }
}









