/** Shopify CDN: Minification failed

Line 105:15 Expected identifier but found whitespace
Line 105:17 Unexpected "{"
Line 105:26 Expected ":"

**/


/* CSS from section stylesheet tags */
.hero-banner {
  position: relative;
  display: flex;
  color: #fff;
  min-height: 60vh;
  text-decoration: none;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Overlay container on top of image */
.hero-banner__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 2rem 6%;
  box-sizing: border-box;
}

/* Desktop text alignment modifiers */
.hero-banner__overlay.align-left { align-items: flex-start; text-align: left; }
.hero-banner__overlay.align-center { align-items: center; text-align: center; }
.hero-banner__overlay.align-right { align-items: flex-end; text-align: right; }

.hero-banner__overlay.valign-top { justify-content: flex-start; }
.hero-banner__overlay.valign-center { justify-content: center; }
.hero-banner__overlay.valign-bottom { justify-content: flex-end; }

/* Text styling */
.hero-banner__title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-banner__text {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.hero-banner__link-button {
  display: inline-block;
  background: #fff;
  color: #000;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-weight: 600;
}

/* Mobile view: mobile image swap and independent text positioning */
@media screen and (max-width: 750px) {
  .hero-banner {
    flex-direction: column;
  }
  
  /* When text is below image, remove min-height constraint */
  .hero-banner.mobile-text-below-enabled {
    min-height: 0 !important;
  }
  
  /* Mobile horizontal alignment - works for both overlay and below */
  .hero-banner__overlay.mobile-align-left { 
    align-items: flex-start !important; 
    text-align: left !important; 
  }
  .hero-banner__overlay.mobile-align-center { 
    align-items: center !important; 
    text-align: center !important; 
  }
  .hero-banner__overlay.mobile-align-right { 
    align-items: flex-end !important; 
    text-align: right !important; 
  }

  /* Mobile vertical alignment - only for overlay mode */
  .hero-banner__overlay.mobile-valign-top:not(.mobile-text-below) { 
    justify-content: flex-start !important; 
  }
  .hero-banner__overlay.mobile-valign-center:not(.mobile-text-below) { 
    justify-content: center !important; 
  }
  .hero-banner__overlay.mobile-valign-bottom:not(.mobile-text-below) { 
    justify-content: flex-end !important; 
  }
  
  /* Text below image option */
  .hero-banner__overlay.mobile-text-below {
    position: relative !important;
    margin-top: 68vh;
    background: {{ section.settings.mobile_text_bg_color | default: '#000' }};
    padding: 2rem 1.5rem;
    width: 100%;
    height: auto !important;
    justify-content: center !important;
    
  }
  
  /* Content wrapper for better control when text is below */
  .hero-banner__overlay.mobile-text-below > * {
    width: 100%;
  }
  
  /* Smaller text on mobile */
  .hero-banner__title {
    font-size: 1.8rem;
  }
  
  .hero-banner__text {
    font-size: 1rem;

  }
}