/* === HERO === */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 50px;
    gap: 16px;
    color: #fff;
}

.heroLogo {
    width: 500px;
    max-width: 90vw;
    object-fit: contain;
}

.heroTittel {
    font-family: 'Outfit', sans-serif;
    font-size: 64px;
    font-weight: 700;
    margin: 0;
}

.heroDato {
    font-family: 'Outfit', sans-serif;
    font-size: 40px;
    font-weight: 600;
    margin: 0;
}

/* === TIMER === */
.timerWrapper {
    display: flex;
    gap: 20px;
    margin-top: 48px;
    margin-bottom: 100px;
}

.timerBoks {
    width: 160px;
    height: 190px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 24px;
    box-sizing: border-box;
}

.timerTall {
    font-family: 'Outfit', sans-serif;
    font-size: 64px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.timerLabel {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: #fff;
    margin-top: 15px;
}

/* === MOBIL === */
@media (max-width: 800px) {
    .heroTittel {
        font-size: 40px;
    }

    .heroDato {
        font-size: 28px;
    }

    .timerWrapper {
        flex-wrap: wrap;
        justify-content: center;
    }

    .timerBoks {
        width: 130px;
        height: 170px;
    }

    .timerTall {
        font-size: 48px;
    }

    .timerLabel {
        font-size: 24px;
    }
}