.hero {
    position: relative;
    height: 90vh;
    background: url('../assets/images/hero.jpg') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.hero-content {
    position: relative;
    text-align: center;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--gold);
}

.hero p {
    font-size: 1.3rem;
    margin-top: 10px;
}
