/* Reset základního nastavení prohlížeče */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html, body {
    height: 100%;
    font-family: 'Montserrat', sans-serif; 
    background-color: #000;
    color: #fff;
    overflow: hidden;
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; 
    overflow: hidden;
    background-color: #000; /* Černé pozadí, pod video */
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* fullscreen */
}

/* Poloprůhledný černý závoj (0.55 = 55% tmavost) */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55); 
}


/* 3. Textový obsah posuň do vyšší vrstvy (např. 2) */
.content-wrapper {
    position: relative;
    z-index: 2; /* Text bude ve vrstvě 2, takže spolehlivě nad videem */
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

/* JMENO FIRMY */
.brand-name {
    font-size: 3.5rem;
    font-weight: 325; 
    letter-spacing: 0.35em; 
    text-transform: uppercase; 
    margin-bottom: 12px;
    text-indent: 0.35em; /* Vyrovnání optického středu kvůli mezeře za posledním písmenem */
    animation: fadeIn 2.5s ease-in-out;
}

/* UNDER CONSTRUCTION */
.subtitle {
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6); /* Mírně zašedlé pro hierarchii */
    animation: fadeIn 3.5s ease-in-out;
}

/* KONTAKTY */
.contacts {
    position: absolute;
    bottom: 40px;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    animation: fadeIn 4s ease-in-out;
}

.contacts a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

/* hover efekt */
.contacts a:hover {
    color: #fff;
}

.separator {
    margin: 0 15px;
    color: rgba(255, 255, 255, 0.2);
}

/* fade in */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Optimalizace pro mobilní telefony */
@media (max-width: 768px) {
    .brand-name {
        font-size: 2rem;
        letter-spacing: 0.25em;
        text-indent: 0.25em;
    }
    
    .subtitle {
        font-size: 0.8rem;
        letter-spacing: 0.15em;
    }

    .contacts {
        display: flex;
        flex-direction: column;
        gap: 12px;
        bottom: 30px;
    }

    .separator {
        display: none; /* Skryje svislou čáru na mobilu, kontakty budou pod sebou */
    }
}