.hero {
    width: 100%;
    height: 80vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.2);
    z-index: 0;
}
.hero h1 {
    font-size: clamp(30px, 12vw, 60px);
    letter-spacing: 2px;
}
.hero span {
    font-size: clamp(15px, 4vw, 20px);
    font-weight: 500;
    line-height: 0.8;
    opacity: 0.8;
}
.hero .background-image {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero .content {
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
}
