﻿/* -----------------------------------------
   PAGE HERO
----------------------------------------- */
.page-hero {
    position: relative;
    height: clamp(250px, 35vw, 500px);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: clamp(1rem, 2vw, 2rem);
}

    .page-hero-content h1 {
        font-size: clamp(2.5rem, 2rem + 2.5vw, 3.5rem);
        font-weight: 700;
        color: #fff;
        margin: 0;
        text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    }

/* Fix blue hover on gallery links */
.gallery-item a:hover,
.gallery-item a:focus {
    color: #fff !important;
}

.gallery-overlay h3 {
    color: #fff !important;
}
