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;
}

.button {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 15px;
    background-color: black;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.obrazok {
    max-width: 350px; /* Menší obrázok, aby balíčky vedľa neho lepšie sedeli */
    border-radius: 10px;
}

.textova-sekcia {
    max-width: 600px;
}

.balicky {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.balicek {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 450px; /* Zmenšenie veľkosti boxov */
}

.balicek h3 {
    font-size: 18px; /* Menší nadpis */
}

.balicek p {
    font-size: 14px; /* Menší text */
}

.button {
    display: inline-block;
    padding: 8px 12px;
    background-color: #d4af37;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
}

.button:hover {
    background-color: #b8922a;
}

.recenzie-box {
    max-width: 600px;
}

.recenzia {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
}

.hlavna-sekcia {
    display: flex;
    align-items: flex-start; /* Obrázok bude vždy hore */
    gap: 30px;
    max-width: 1000px;
    margin: 40px auto;
}

.hlavna-sekcia img {
    width: 300px; /* Môžeš upraviť podľa potreby */
    height: auto;
    flex-shrink: 0; /* Zabezpečí, že obrázok sa nezmenší */
}

.textova-sekcia {
    flex: 1; /* Textová sekcia sa prispôsobí */
    max-width: 600px; /* Obmedzenie šírky textu */
}

label {
    font-weight: bold;
    display: block;
    margin: 10px 0 5px;
}

input, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}
button {
    background: #c9a66b; /* Zlatá */
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
}
button:hover {
    background: #b08952; /* Tmavšia zlatá pri prechode myšou */
}

.balicky {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.balicky-rad {
    display: flex;
    gap: 20px;
}

.balicek {
    display: flex;
    align-items: flex-start;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    background: #f9f9f9;
}

.balicek img {
    width: 150px;
    height: auto;
    border-radius: 10px;
}

.balicek .text {
    padding-left: 20px;
}

.button {
    display: inline-block;
    background-color: #ff9800;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    margin-top: auto;
}

@media screen and (max-width: 768px) {
    .balicky-rad {
        flex-direction: column;
    }

    .balicek {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .balicek img {
        width: 100%;
    }
}

.ponuka-sluzieb {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.sluzba {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #f8f8f8;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    width: 100%;
}

.sluzba img {
    width: 200px; /* Užšie, aby bolo viac na výšku */
    height: 300px; /* Vyššie */
    object-fit: cover;
    border-radius: 8px;
}

.sluzba-text {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sluzba-text h3 {
    margin-bottom: 10px;
}

.sluzba-text p {
    margin-bottom: 5px;
}

.tlacidlo {
    margin-top: 10px;
    display: inline-block;
    padding: 10px 20px;
    background: #c9a66b; /* Zlatá */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    width: 150px;
}

.tlacidlo:hover {
    background: #555;
}

.tlacidlo:hover {
    background: #b08952; /* Tmavšia zlatá pri prechode myšou */
}
.button {
    background: #c9a66b; /* Zlatá */
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
}

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

/* Pre malé obrazovky (mobilné zariadenia) */
@media screen and (max-width: 768px) {
    .hlavna-sekcia {
        flex-direction: column; /* Stĺpcové zobrazenie namiesto riadkového */
        text-align: center;
        padding: 20px;
    }

    .hlavna-sekcia img {
        width: 100%; /* Obrázok bude mať šírku celej stránky */
        max-width: 400px; /* Ale nebude väčší než 400px */
        margin-bottom: 20px;
    }

    .text {
        max-width: 100%; /* Text sa roztiahne na celú šírku */
    }

    nav ul {
        flex-direction: column; /* Navigácia sa zobrazí pod sebou */
        padding: 0;
    }

    nav ul li {
        margin: 10px 0; /* Medzera medzi položkami */
    }

    .button {
        width: 100%; /* Tlačidlo bude na celú šírku */
        padding: 15px; /* Väčšie tlačidlo pre dotykové obrazovky */
    }
}
@media (max-width: 768px) {
    nav ul {
        display: flex;
        flex-direction: column; /* Menu bude pod sebou */
        align-items: center; /* Zarovná na stred */
        text-align: center;
        padding: 0;
    }

    nav ul li {
        width: 100%; /* Aby boli položky pekne pod sebou */
        margin: 5px 0;
    }

    nav ul li a {
        display: block;
        padding: 10px;
    }
}

.hl-baliky {
    width: 90%; /* Nech text nepresahuje okraje */
    max-width: 600px; /* Nastavíme max šírku, aby bol text lepšie čitateľný */
    margin: 0 auto; /* Vycentrovanie na stred */
    text-align: center; /* Ak treba, zarovnáme text */
}


#domov-sekcia .button {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 15px;
    font-size: 14px;
    background: #e6a15d;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}
