.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: url('../images/hero/hero-odel.png') center/cover no-repeat;
    background-size:cover;

    background-position:left center;

    background-repeat:no-repeat;
    color: white;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.6);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.hero-tag {
    color: var(--primary-color);
    letter-spacing: 3px;
    font-weight: 600;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1.1;
    margin: 20px 0;
}

.hero p {
    font-size: 1.15rem;
    max-width: 560px;
}

.hero-btn {
    margin-top: 32px;
}

