body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background: url('/assets/images/background.jpg') no-repeat center center fixed;
    background-size: cover;
}

header {
    background-color: rgba(0, 0, 255, 0.65);  /* Stejná modrá barva s průhledností 0.65 */
    color: white;
    height: 40px;  /* Zmenšená výška na 40px */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;  /* Zmenšené písmo pro celý header */
    font-weight: bold;
}

/* Konkrétní úprava pro h1 */
header h1 {
    font-size: 18px;  /* Zmenšené písmo pro nadpis na 18px */
    font-family: 'Oswald', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.4);
}

footer {
    background-color: rgba(0, 0, 255, 0.65);  /* Stejná modrá barva s průhledností 0.65 */
    color: white;
    height: 40px;  /* Zmenšená výška na 40px */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;  /* Menší písmo pro footer */
    font-weight: bold;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline-block;
    margin: 0 25px;
}

nav ul li a {
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-size: 22px;
    font-weight: bold;
    color: black;
    padding: 12px;
    transition: color 0.3s, transform 0.2s;
}

nav ul li a:hover {
    color: white;
    transform: scale(1.1);
}

section {
    background: rgba(255, 255, 255, 0.85);
    padding: 20px;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 800px;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

ul li {
    display: block;
    padding: 5px 0;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    justify-content: center;
}

.gallery img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    transition: transform 0.3s;
}

.gallery img:hover {
    transform: scale(1.05);
}
