/* Mail-link onderin hero section */
.hero-mail {
    position: absolute;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    color: #fff;
    background: rgba(0,0,0,0.6);
    padding: 0.5em 1em;
    border-radius: 1em;
    text-decoration: none;
    font-size: 1.1em;
    letter-spacing: 0.03em;
    z-index: 2;
    transition: background 0.2s;
}
.hero-mail:hover {
    background: rgba(0,0,0,0.85);
    text-decoration: underline;
}

.hero {
    position: relative;
}
body, html {
    height: 100%;
    margin: 0;
    padding: 0;
}
.hero {
    height: 100vh;
    width: 100vw;
    background: #000 url('../img/iglo.png') no-repeat center center;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    box-sizing: border-box;
    min-height: 100svh;
}
.hero-content {
    color: white;
    text-shadow: 0 2px 8px rgba(0,0,0,0.7);
    text-align: center;
    margin-top: 2rem;
}

.hero img {
    display: none;
}

@media (max-width: 600px) {
    .hero {
        height: 100svh;
        min-height: 100svh;
        padding: 0;
        background-size: cover;
    }
    .hero img {
        display: none;
    }
    .hero-content {
        font-size: 1.1em;
        padding: 0 1em;
    }
}
