/** Shopify CDN: Minification failed

Line 20:4 Unexpected "{"
Line 20:5 Expected identifier but found "%"
Line 25:4 Unexpected "{"
Line 25:5 Expected identifier but found "%"
Line 28:4 Unexpected "{"
Line 28:5 Expected identifier but found "%"

**/


/* CSS from section stylesheet tags */
.hero-section {
    position: relative;
    overflow: hidden;
    padding-top: 120px;
    padding-bottom: 120px;
    /* The if condition should wrap all image-related properties */
    {% if section.settings.hero_image != blank %}
      background-image: url('{{ section.settings.hero_image | image_url }}'); /* Simplified image_url filter */
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    {% else %}
      /* Fallback background if no image is selected in theme editor */
      background-color: #333;
    {% endif %}
  }

  /*
    If you want a separate div for the background image (e.g., for video or more complex layering later)
    and not apply it directly to .hero-section, you would uncomment this .hero-background CSS
    and remove the background-image properties from .hero-section above.
    Make sure your HTML has <div class="hero-background"></div> if you use this.
  */
  /*
  .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    {% if section.settings.hero_image != blank %}
      background-image: url('{{ section.settings.hero_image | image_url: width: 1920 }}'); // Or the simplified version
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    {% else %}
      background-color: #333;
    {% endif %}
  }
  */

  .hero-overlay-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.5) 100%);
    z-index: 2;
  }

  .hero-content-container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 3;
    padding-left: 15px;
    padding-right: 15px;
  }

  .hero-text-content {
    text-align: center;
    max-width: 68%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-main-headline {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 16px;
    line-height: 1.2;
  }

  .hero-sub-headline {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: #F5EBDD; /* Sun-Faded Sand */
    margin: 0;
  }

  .hero-cta-button {
    display: inline-block;
    background-color: #FF7755; /* Coral Splash */
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 12px;
    margin-top: 24px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    min-height: 44px;
    box-sizing: border-box;
    line-height: normal;
    text-align: center;
  }

  .hero-cta-button:hover {
    background-color: #E85E40;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

  /* --- Responsive Styles --- */
  @media (max-width: 1279px) and (min-width: 768px) { /* Tablet */
    .hero-main-headline { font-size: 48px; }
    .hero-sub-headline { font-size: 18px; }
  }

  @media (max-width: 767px) { /* Mobile */
    .hero-section {
      padding-top: 80px;
      padding-bottom: 80px;
    }
    .hero-text-content { max-width: 90%; }
    .hero-main-headline { font-size: 36px; }
    .hero-sub-headline { font-size: 16px; }
    .hero-cta-button {
      display: block;
      width: 100%;
    }
  }
.haka-lui-newsletter-section {
    background: linear-gradient(135deg, #028090 0%, #1FB9B2 100%);
    padding: 80px 20px 40px;
    position: relative;
    overflow: hidden;
  }
  
  .newsletter-wrapper {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
  }
  
  .newsletter-title {
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
  }
  
  .newsletter-subtitle {
    color: #F5EBDD;
    font-family: 'Lato', sans-serif;
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
  }
  
  .newsletter-form-box {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  }
  
  .form-group {
    margin-bottom: 20px;
    text-align: left;
  }
  
  .form-label {
    display: block;
    color: #028090;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 8px;
  }
  
  .form-label .required {
    color: #FF7755;
  }
  
  .form-input {
    width: 100%;
    padding: 14px 20px;
    background-color: #F5EBDD;
    border: 2px solid transparent;
    border-radius: 12px;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    color: #333333;
    transition: all 0.3s ease;
    box-sizing: border-box;
  }
  
  .form-input:focus {
    outline: none;
    border-color: #1FB9B2;
    background-color: #FFFFFF;
    box-shadow: 0 0 0 3px rgba(31, 185, 178, 0.1);
  }
  
  .form-input::placeholder {
    color: #999999;
  }
  
  .newsletter-submit-btn {
    width: 100%;
    padding: 18px 40px;
    background: linear-gradient(135deg, #E85E40 0%, #FF7755 100%);
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 18px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 10px;
    box-sizing: border-box;
  }
  
  .newsletter-submit-btn:hover {
    background: linear-gradient(135deg, #D64E30 0%, #E85E40 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232, 94, 64, 0.3);
  }
  
  .newsletter-privacy {
    color: #666666;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    margin-top: 20px;
    margin-bottom: 0;
  }
  
  .newsletter-footer {
    text-align: center;
    margin-top: 60px;
    padding-top: 20px;
    color: #FFFFFF;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
  }
  
  .newsletter-footer a {
    color: #F5EBDD;
    text-decoration: none;
  }
  
  .newsletter-footer a:hover {
    text-decoration: underline;
  }
  
  /* Remove the decorative bar - was causing artifact */
  
  /* Responsive Design */
  @media (max-width: 767px) {
    .newsletter-title {
      font-size: 32px;
    }
    
    .newsletter-subtitle {
      font-size: 18px;
    }
    
    .newsletter-form-box {
      padding: 30px 20px;
    }
    
    .newsletter-submit-btn {
      font-size: 16px;
      padding: 16px 30px;
    }
  }