/* Page Hero */
.hero {
    position: relative;
    background: url('../images/hero-background.jpg') no-repeat center center/cover;
    min-height: 40vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-foreground);
    text-align: center;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    z-index: 1;
}
.hero__title {
    position: relative;
    z-index: 2;
    font-size: 4rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    color: var(--primary-foreground);
    transition: text-shadow var(--transition-speed) ease-in-out;
}

@media (max-width: 768px) {
    .hero__title { font-size: 2.5rem; }
}
