/** Shopify CDN: Minification failed

Line 75:2 Unexpected "{"
Line 75:3 Expected identifier but found "%"
Line 77:4 Unexpected "{"
Line 77:5 Expected identifier but found "%"
Line 89:2 Unexpected "{"
Line 89:3 Expected identifier but found "%"
Line 91:4 Unexpected "{"
Line 91:5 Expected identifier but found "%"

**/

/* Compensation for header's negative margin */
:root {
  --header-negative-margin: 140px;  /* Adjust this value if necessary */
}

/* Banner Container */
.custom-banner {
  position: relative;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  /* Compensate for the header margin */
  padding-top: 140px;
  padding-bottom: 140px;

  /* Hero height */
  min-height: 60vh;

  display: flex;
  justify-content: center;
  align-items: center;
}

/* Static Overlay (CSS only) */
.custom-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4); /* Static overlay opacity (40%) */
  z-index: 1;
  pointer-events: none;
}

/* Content Layer */
.custom-banner__content {
  position: relative;
  z-index: 2;
  text-align: center;
  width:73%;
}

.custom-banner__content h1 {
  color: #fff;
  font-size: 58px;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 2px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .custom-banner {
    padding-top: 80px;
    padding-bottom: 80px;
    min-height: 50vh;
  }
  .custom-banner__content {
  width:80%;
  }
  {% comment %} .custom-banner__content h1 {
    font-size: 40px;
  } {% endcomment %}
}

@media (max-width: 600px) {
  .custom-banner {
    padding-top: 90px;
    padding-bottom: 90px;
    min-height: 40vh;
  }
  /* .custom-banner__content {
  width:75%;
  } */
  {% comment %} .custom-banner__content h1 {
    font-size: 28px;
  } {% endcomment %}
}
