/* ############################################################################################################################################################################ */
/* ############################################################################################################################################################################ */
/* Skye Isle Terrier Sanctuary                                                                                                                                                  */
/*  • File:                      page-banners.css                                                                                                                             */
/*  • Description:               Dramatic framed page header banners with moody lighting and premium presentation                                                           */
/*  • Location:                  /css/page-banners.css                                                                                                                          */
/* ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/*  • Version:                   v0.0.01 α                                                                                                                                       */
/* ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/*  • Project Start Date:        2026-06-19                                                                                                                                      */
/*  • Last updated:              2026-06-19 @ 23:45 EDT                                                                                                                          */
/* ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/*  • Author:                    by Conner Rhoads                                                                                                                                */
/*  • Official Site:             www.skyeisleterriersanctuary.com                                                                                                                */
/* ############################################################################################################################################################################ */
/* ############################################################################################################################################################################ */

/* ============================================= */
/* PAGE BANNER CONTAINER                         */
/* ============================================= */
.page-banner {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 40px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    background-color: #1a1a1a;
}

/* ============================================= */
/* BANNER IMAGE / BACKGROUND                     */
/* ============================================= */
.page-banner__image {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    filter: contrast(1.05) saturate(1.1);
}

/* ============================================= */
/* DARK OVERLAY + DRAMATIC LIGHTING              */
/* ============================================= */
.page-banner__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* Optional dramatic red/purple light beam from top right */
.page-banner__light-beam {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 75% 20%,
        rgba(180, 40, 60, 0.35) 0%,
        transparent 55%
    );
    z-index: 2;
    pointer-events: none;
}

/* ============================================= */
/* TEXT CONTENT                                  */
/* ============================================= */
.page-banner__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 50px 50px;
    z-index: 3;
    color: #fff;
}

.page-banner__title {
    font-family: 'Enchanted Land', 'Cinzel', serif;
    font-size: 3.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1.05;
    margin: 0 0 12px 0;
    text-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.9),
        0 2px 4px rgba(0, 0, 0, 0.6);
}

.page-banner__subtitle {
    font-size: 1.35rem;
    font-weight: 400;
    letter-spacing: 1px;
    margin: 0;
    color: #f4d9a8;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.8);
}

/* Yellow accent line under subtitle */
.page-banner__accent {
    display: block;
    width: 120px;
    height: 3px;
    background: linear-gradient(to right, #f4d9a8, #d4af37);
    margin-top: 16px;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.5);
}

/* ============================================= */
/* RESPONSIVE                                    */
/* ============================================= */
@media (max-width: 768px) {
    .page-banner__image {
        height: 320px;
    }
    
    .page-banner__content {
        padding: 40px 30px 35px;
    }
    
    .page-banner__title {
        font-size: 2.4rem;
    }
    
    .page-banner__subtitle {
        font-size: 1.15rem;
    }
}