/*==============================================
    Artistic About Banner
===============================================*/

/* Remove background for artistic banner */
.page-header--artistic .page-header__bg {
    display: none;
}

/* Make section narrower */
.page-header--artistic {
    padding: 80px 0 60px;
    background: var(--tanspot-black);
}

/* Artistic text container */
.page-header__artistic-text {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    margin-bottom: 30px;
}

/* Main centered text (solid) */
.page-header__main-text {
    position: relative;
    z-index: 10;
    font-size: 80px;
    font-weight: 700;
    color: var(--tanspot-white);
    text-transform: capitalize;
    line-height: 1em;
    margin: 0;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
}

/* Background hollow text with outline - CENTERED */
.page-header__bg-text {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin-top: -135px;
    z-index: 1;
    font-size: 180px;
    font-weight: 900;
    color: transparent;
    text-transform: uppercase;
    line-height: 1em;
    margin-left: auto;
    margin-right: auto;
    -webkit-text-stroke: 2px rgba(var(--tanspot-base-rgb), 0.3);
    text-stroke: 2px rgba(var(--tanspot-base-rgb), 0.3);
    letter-spacing: 0.02em;
    opacity: 0.4;
    white-space: nowrap;
    text-align: center;
    width: 100%;
    max-width: 100%;
    overflow: visible;
    text-shadow: 0 4px 20px rgba(0, 128, 87, 0.3) !important;
}

/* Gradient fade effect from bottom */
.page-header__bg-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80%;
    background: linear-gradient(to top, 
        rgba(var(--tanspot-black-rgb), 1) 0%, 
        rgba(var(--tanspot-black-rgb), 0.5) 50%,
        transparent 100%);
    pointer-events: none;
}

/* Adjust breadcrumb position */
.page-header__inner--artistic .thm-breadcrumb__inner {
    position: relative;
    z-index: 20;
    text-align: center;
    display: flex;
    justify-content: center;
}

.page-header__inner--artistic .thm-breadcrumb {
    justify-content: center;
}

/* Add subtle decoration lines */
.page-header__artistic-text::before,
.page-header__artistic-text::after {
    content: '';
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--tanspot-base) 50%, 
        transparent 100%);
    z-index: 5;
}

.page-header__artistic-text::before {
    /* top: 20%;
    left: 10%;
    right: 10%; */
    display: none;
}

.page-header__artistic-text::after {
    bottom: 20%;
    left: 10%;
    right: 10%;
}

/*==============================================
    Responsive Styles
===============================================*/

@media only screen and (max-width: 1199px) {
    .page-header--artistic {
        padding: 70px 0 50px;
    }

    .page-header__main-text {
        font-size: 65px;
    }

    .page-header__bg-text {
        font-size: 150px;
        margin-top: -60px;
    }
}

@media only screen and (max-width: 991px) {
    .page-header--artistic {
        padding: 60px 0 45px;
    }

    .page-header__main-text {
        font-size: 55px;
    }

    .page-header__bg-text {
        font-size: 120px;
        margin-top: -50px;
    }

    .page-header__artistic-text {
        min-height: 170px;
    }
}

@media only screen and (max-width: 767px) {
    .page-header--artistic {
        padding: 50px 0 40px;
    }

    .page-header__main-text {
        font-size: 42px;
    }

    .page-header__bg-text {
        font-size: 90px;
        margin-top: -35px;
        -webkit-text-stroke: 1.5px rgba(var(--tanspot-base-rgb), 0.3);
        text-stroke: 1.5px rgba(var(--tanspot-base-rgb), 0.3);
    }

    .page-header__artistic-text {
        min-height: 150px;
    }

    .page-header__artistic-text::before,
    .page-header__artistic-text::after {
        display: none;
    }
}

@media only screen and (max-width: 575px) {
    .page-header--artistic {
        padding: 40px 0 35px;
    }

    .page-header__main-text {
        font-size: 36px;
    }

    .page-header__bg-text {
        font-size: 70px;
        margin-top: -50px;
        -webkit-text-stroke: 1px rgba(var(--tanspot-base-rgb), 0.3);
        text-stroke: 1px rgba(var(--tanspot-base-rgb), 0.3);
    }

    .page-header__artistic-text {
        min-height: 120px;
    }
}

@media only screen and (max-width: 479px) {
    .page-header--artistic {
        padding: 35px 0 30px;
    }

    .page-header__main-text {
        font-size: 30px;
    }

    .page-header__bg-text {
        font-size: 60px;
    }

    .page-header__artistic-text {
        min-height: 100px;
        margin-bottom: 20px;
    }
}

/*==============================================
    End
===============================================*/
