/* ------------------------------------------------------------
   IMPORT GOOGLE FONTS
------------------------------------------------------------ */
@import url('https://fonts.googleapis.com/css2?family=Schibsted+Grotesk:wght@900&family=Saira+Condensed:wght@700&display=swap');

/* ------------------------------------------------------------
   RESET
------------------------------------------------------------ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ------------------------------------------------------------
   HERO BANNER SECTION
------------------------------------------------------------ */
.hero-banner {
  position: relative;
  width: 100%;
  height: 75vh; /* not full screen, just banner-like */
  min-height: 480px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #000;
  padding: 0 5vw;
}

/* Ensure it breaks out of WP containers */
.hero-banner,
.hero-banner * {
  max-width: 100% !important;
}

/* Background image */
.hero-banner .hero-background {
  position: absolute;
  inset: 0;
  background: url('https://theciomogul.com/wp-content/uploads/2025/10/img-bg.png')
    center center / cover no-repeat;
  z-index: 0;
}

/* Dark overlay for better text visibility */
.hero-banner .hero-background::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4); /* same overlay strength as static hero */
  z-index: 1;
}

/* ------------------------------------------------------------
   CONTENT STYLING
------------------------------------------------------------ */
.hero-banner .hero-content-text {
  position: relative;
  z-index: 2;
  color: #FFFFFF;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* MAIN HEADING */
.hero-banner .hero-content-text h1 {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-weight: 900;
  font-size: 54px;
  line-height: 64px;
  letter-spacing: -1px;
  color: #FFFFFF;
  margin-bottom: 20px;
}

/* DESCRIPTION */
.hero-banner .hero-content-text 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-banner {
    height: 65vh;
  }

  .hero-banner .hero-content-text h1 {
    font-size: 44px;
    line-height: 54px;
  }
}

@media (max-width: 768px) {
  .hero-banner {
    height: 55vh;
    padding: 0 4vw;
  }

  .hero-banner .hero-content-text h1 {
    font-size: 36px;
    line-height: 44px;
  }

  .hero-banner .hero-content-text p {
    font-size: 15px;
    line-height: 24px;
    max-width: 90%;
  }
}

@media (max-width: 480px) {
  .hero-banner {
    height: 45vh;
    padding: 0 15px;
  }

  .hero-banner .hero-content-text h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero-banner .hero-content-text p {
    font-size: 14px;
    line-height: 22px;
    max-width: 95%;
  }
}
