/* Importing fonts */
@import url('https://fonts.cdnfonts.com/css/dynomite');

/* Wrapper for the banner */
.promo-container {
    width: 100%;
    position: relative;
    border-radius: 6px;
    overflow: hidden;
}

/* Main banner */
.promo-banner {
    width: 100%;
    height: auto;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    z-index: 1;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

/* Banner images */
.promo-banner-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    z-index: -1;
}

.promo-content {
    color: white;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 60px;
    max-width: 720px;
    position: relative;
    z-index: 2;
}

.promo-header {
    font-family: 'Dynomite', Arial, sans-serif;
    font-size: 56px;
    color: white;
    line-height: 1;
    text-transform: uppercase;
    background: linear-gradient(180deg, #F61D7A 0%, #FFC6D9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    letter-spacing: 1px;
}

.promo-header:before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, #39001A 0%, #A10E3A 135.06%);
    -webkit-text-stroke-color: transparent;
    -webkit-text-stroke-width: 9px;
    -webkit-text-fill-color: #fff6eb;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    z-index: -1;
}

.promo-header:after {
    text-shadow: 0px 10px 28.6714px rgba(175, 31, 91, 0.8), 0px 15px 22.9371px rgba(0, 0, 0, 0.8);
    content: attr(data-text);
    left: -2px;
    top: 2px;
    width: 100%;
    height: 100%;
    z-index: -1;
    position: absolute;
}

.promo-subtext {
    color: white;
    margin: 5px 0 24px 0;
}

.promo-content .btn-primary {
    min-width: 200px;
    line-height: 24px;
    font-weight: 600;
    font-size: 16px;
}

@media(min-width: 1400px) {
    .promo-header, 
    .promo-subtext {
        position: relative;
    }
    .promo-subtext {
        top: -12px;
        margin-bottom: 10px !important;
    }
    .promo-header {
        top: -17px;
    }
}

@media (max-width: 767px) {
    .promo-header {
        font-size: 52px;
        display: block;
        width: 100%;
    }
    .promo-banner {
        min-height: 500px;
    }
    .promo-banner-img {
        object-fit: contain;
    }
    .promo-content {
        padding: 40px 15px;
        max-width: 340px;
        text-align: center;
        margin: 0 auto;
    }
    .promo-subtext {
        margin: 10px 0 35vh 0;
        font-size: 16px;
        line-height: 1.5;
    }
    .promo-responsive-cta {
        background-image: url(../../../assets/images/promo-btn-bg.png);
        min-width: 170px;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        line-height: 49px;
        font-size: 17px;
        text-transform: uppercase;
        font-weight: bold;
        color: #4B0545;
        display: block;
        margin: 0 auto;
        min-height: 60px;
        padding-top: 2px;
        padding-left: 7px;
        text-align: center;
        position: relative;
        top: -65px;
        cursor: pointer;
        text-shadow: 0px 1px #4B0545;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .promo-content {
        padding: 30px;
        max-width: 62vw;
    }
    .promo-header {
        font-size: 40px;
    }
    .promo-subtext {
        margin: 5px 0 10px 0;
        font-size: 14px;
        line-height: 1.5;
    }
}

@media (max-width: 991px) {
    .promo-content .btn-primary {
        line-height: 21px;
        font-size: 14px;
    }
    .promo-content br {
        display: none;
    }
}

@media (min-width: 992px){
    .promo-banner{
        min-height: 320px;
    }
}