/* --- HERO SEKCE --- */
.hero {
    background-image:url("../img/hero.webp");
    background-size: auto;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    padding: 200px 0 120px;
    overflow: hidden;
}

/* --- NADPISY --- */
.hero-h1 {
    margin: 0 0 20px;
    font-size: clamp(44px, 8vw, 80px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--white);
    text-align: center;
}

.hero-h1 span.highlight {
    color: #ffae00;
    display: inline-block;
    padding-bottom: 0.1em;
}

.hero-h2 {
    color: #ffffff;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.65;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    letter-spacing: 0.01em;
}

/* --- TLAČÍTKA --- */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 35px;
}

/* --- MOBIL (do 991.98px) --- */
@media (max-width: 991.98px) {
    .hero {
        min-height: auto;
        padding: 120px 0 80px;
    }

    .hero-h1 {
        font-size: clamp(38px, 10vw, 56px);
    }

    .hero-h2 {
        font-size: 17px;
    }

    .hero-buttons {
        gap: 15px;
    }
}