/** Shopify CDN: Minification failed

Line 117:12 Expected identifier but found whitespace
Line 117:14 Unexpected "{"
Line 117:23 Expected ":"
Line 117:64 Expected ":"

**/
/* ===========================
   Stormie Hero Banner — CSS
   =========================== */

.stormie-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: block;
  line-height: 0;
}

/* ===========================
   IMAGES
   =========================== */

.hero-img {
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  line-height: 0;
}

/* Desktop image: height from CSS variable */
.hero-img--desktop {
  height: var(--hero-h-desktop, 650px);
  display: block;
}

/* Mobile image: hidden on desktop */
.hero-img--mobile {
  height: var(--hero-h-mobile, 500px);
  display: none;
}

/* Placeholder when no image uploaded */
.hero-placeholder {
  background: #d4cfc8;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.4;
}

.hero-placeholder span {
  font-family: sans-serif;
  font-size: 14px;
  color: #888;
  letter-spacing: 0.04em;
}

/* ===========================
   OVERLAY
   =========================== */

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, var(--overlay-opacity, 0.15));
  pointer-events: none;
  z-index: 1;
}

/* ===========================
   CONTENT (Text + Button)
   =========================== */

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: var(--content-align-h, center);
  justify-content: var(--content-align-v, center);
  padding: 40px 32px;
  text-align: center;
  gap: 0;
}

/* When left-aligned */
[style*="--content-align-h: flex-start"] .hero-content,
.hero-content[style*="align-items: flex-start"] {
  text-align: left;
}

/* When right-aligned */
[style*="--content-align-h: flex-end"] .hero-content {
  text-align: right;
}

/* Sub heading */
.hero-subheading {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-color, #fff);
  margin: 0 0 12px;
  opacity: 0.85;
  line-height: 1.4;
}

/* Main heading */
.hero-heading {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: {{ section.settings.heading_size | default: 42 }}px;
  font-weight: 400;
  font-style: italic;
  color: var(--text-color, #fff);
  margin: 0 0 24px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  max-width: 700px;
}

/* Description */
.hero-description {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--text-color, #fff);
  opacity: 0.85;
  margin: 0 0 28px;
  line-height: 1.6;
  max-width: 500px;
}

/* Button */
.hero-btn {
  display: inline-block;
  background: var(--btn-bg, #E8C84A);
  color: var(--btn-text, #1A1A1A);
  border: 1px solid var(--btn-border, #E8C84A);
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-decoration: none;
  padding: var(--btn-padding-v, 12px) var(--btn-padding-h, 28px);
  cursor: pointer;
  transition: opacity 0.18s ease, transform 0.18s ease;
  line-height: 1.4;
}

.hero-btn:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

/* ===========================
   RESPONSIVE — MOBILE
   =========================== */

@media (max-width: 767px) {
  /* Show mobile image, hide desktop */
  .hero-img--desktop {
    display: none;
  }
  .hero-img--mobile {
    display: block;
  }

  /* Smaller content padding on mobile */
  .hero-content {
    padding: 24px 20px;
  }

  /* Heading size from schema mobile setting */
  .hero-heading {
    font-size: var(--heading-size-mobile, 28px);
    margin-bottom: 18px;
  }

  .hero-subheading {
    font-size: 11px;
    margin-bottom: 10px;
  }

  .hero-description {
    font-size: 14px;
  }

  .hero-btn {
    font-size: 12px;
  }
}

/* ===========================
   HEADING SIZE CSS VARS
   (Injected from schema via inline style)
   =========================== */

/* These are set via inline <style> in the liquid using section.settings */
