body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: white;
    color: black;
}

h1 {
    font-family: 'Satisfy', cursive;
    text-align: center;
    font-size: 36px;
}

.hlavna-sekcia {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.hlavna-sekcia img {
    margin-right: 20px;
}

.text {
    max-width: 400px;
}

#uvod .hlavna-sekcia {
    position: relative;
    width: 100%;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

#uvod .hlavna-sekcia img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

#uvod .text {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
    max-width: 600px;
}

@media screen and (max-width: 768px) {
    .hlavna-sekcia {
        flex-direction: column;
        text-align: center;
        padding: 10px;
    }
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: white;
    color: black;
}

h1 {
    font-family: 'Satisfy', cursive;
    text-align: center;
    font-size: 36px;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    background: white;
    padding: 10px 0;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: black;
    font-weight: bold;
}

.text {
    max-width: 500px;
}

@media screen and (max-width: 768px) {
    .hlavna-sekcia {
        flex-direction: column;
        text-align: center;
        padding: 10px;
    }

    /* Navigácia: Zobrazenie pod sebou a na stred */
    nav ul {
        flex-direction: column; /* Zobraziť položky pod sebou */
        align-items: center; /* Zarovná na stred (flex vlastnosť) */
        padding: 0;
    }

    nav ul li {
        margin: 10px 0; /* Medzery medzi položkami */
        text-align: center; /* Zarovnanie textu na stred */
    }
}

.button {
    display: inline-block;
    padding: 10px 20px;
    background: #c9a66b; /* Zlatá */
    color: white; /* Biela farba textu */
    text-decoration: none; /* Odstránenie podčiarknutia */
    font-weight: bold;
    border-radius: 5px; /* Zaoblené rohy */
    transition: background-color 0.3s ease; /* Plynulý prechod pri hover */
}

.button:hover {
    background: #b08952; /* Tmavšia zlatá pri prechode myšou */
}