/** Shopify CDN: Minification failed

Line 96:33 Expected ")" to end URL token

**/
/* Full screen banner */
.image-banner-custom {
    position: relative;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

/* Overlay to improve text visibility */
.image-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    z-index: 1;
}

/* Centered content */
.image-banner-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Heading */
.image-banner-heading {
    font-size: 52px;
    font-weight: 900; /* make BOLDER */
    color: #fff;
    text-align: center;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
    margin: 0;
    letter-spacing: 0.5px;
}

/* Subheading */
.image-banner-subheading {
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    text-align: center;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    margin: 12px 0 20px 0;
    letter-spacing: 0.3px;
}


/* Button */
.image-banner-button {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 700; /* <== MAKE TEXT BOLD */
    color: #fff;
    background-color: transparent;
    border: 2px solid #fff;
    border-radius: 30px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.image-banner-button:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    border-color: #fff;
}



/* Mobile adjustments */
@media only screen and (max-width: 749px) {
    .image-banner-custom {
        height: 90vh;
        background-image: url({{ section.settings.mobile_image | image_url }});
        background-size: cover;
        background-position: center 30%; /* You can adjust 30% to fine-tune image positioning */
    }

    .image-banner-heading {
        font-size: 32px;
        line-height: 1.2;
    }

    .image-banner-subheading {
        font-size: 16px;
    }
}
