/* components/hero-banner/banner.css */
#hero {
    position: relative;
    color: var(--text-light);
    background: url('../../img/hero-pozadie.webp') no-repeat center center/cover; /* cesta z koreňa webu */
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}
#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 8, 15, 0.6);
    z-index: 1;
}
#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}
#hero .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 20px;
}
#hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}