/* PAGE HEADER BANNER ANIMATION ENHANCEMENTS */
.page-header-banner {
    background-image: url('../images/builderimages/image5.jpg'); 
    background-size: cover;
    background-position: center;
    height: 250px;
    position: relative;
    display: flex;
    align-items: end;
    padding: 0 5%;
    overflow: hidden;
    animation: bannerZoom 10s ease-in-out infinite alternate;
}

@keyframes bannerZoom {
    0% { background-size: 100%; }
    100% { background-size: 110%; }
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.65);
    z-index: 1;
    animation: overlayFade 2s ease 0.5s both;
}

@keyframes overlayFade {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

.header-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    animation: contentFadeIn 1.2s ease 0.8s forwards;
}

@keyframes contentFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--metallic-gold); /* metallic gold color from your variables */
    margin: 0;
    text-transform: uppercase; 
}

.breadcrumb {
    font-size: 0.9rem;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 5px;
}

.breadcrumb a{

    color: var(--white);
    cursor: pointer;
     font-weight: 600;
     text-decoration: none;
}
.breadcrumb a:hover {
    color: var(--metallic-gold);
}

.breadcrumb i {
    color: var(--metallic-gold);
}

.breadcrumb span {
    font-weight: 600;
}