/* Základní styly */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #e6f2ff; /* Světle modrá barva pozadí */
}

/* Hlavička */
header {
    background-color: #003366;
    color: #fff;
    padding: 1rem 0;
    margin-bottom: 2rem;
}

header .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

header h1 {
    margin: 0;
    font-size: 2rem;
    text-align: center;
}

nav {
    position: relative;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
}

.nav-links {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-links li {
    margin: 5px 10px;
}

.nav-links li a {
    color: #fff;
    text-decoration: none;
    font-size: 110%; /* Zvětšení o 10% */
    padding: 5px 10px;
    transition: background-color 0.3s;
}

.nav-links li a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Hlavní obsah */
main {
    background-color: #fff;
    padding: 2rem;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

section {
    margin-bottom: 2rem;
}

h2 {
    color: #003366;
    border-bottom: 2px solid #003366;
    padding-bottom: 0.5rem;
}

/* Seznam */
ul {
    padding-left: 20px;
}

/* Odkazy */
a {
    color: #0066cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Patička */
footer {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    background-color: #003366;
    color: #fff;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Obrázky */
.right-image {
    float: right;
    margin-left: 20px;
    margin-bottom: 20px;
    width: 300px; /* Pevná šířka pro všechny obrázky */
    height: 400px; /* Pevná výška pro všechny obrázky */
    object-fit: cover; /* Zajistí, že obrázek vyplní celý prostor bez deformace */
}

.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

/* Zvýraznění textu */
strong {
    color: #003366;
    font-weight: bold;
}

.responsive-iframe {
    width: 100%;
    height: 500px; /* Nastavte požadovanou výšku */
    border: none;
}

/* Responzivní design */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }
    
    header h1 {
        font-size: 1.5rem;
    }
    
    .nav-toggle {
        display: block;
        position: absolute;
        top: 10px;
        right: 20px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        align-items: center;
        width: 100%;
        background-color: #003366;
    }

    .nav-links.nav-links-visible {
        display: flex;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .right-image {
        float: none;
        margin-left: 0;
        width: 100%;
        height: auto;
    }
    
    .responsive-iframe {
        height: 300px;
    }
}