body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
}

header {
    background-color: #2c3e50;
    color: #ecf0f1;
    text-align: center;
    border-radius: 5px;
    margin-bottom: 20px;
    overflow: hidden;
}

.banner {
    background-image: url('/images/banner_damske-kozacky_cz.png'); 
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.banner h1 {
    color: #fff;
    font-size: 3.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

nav {
    background-color: #34495e;
    padding: 10px 0;
}

nav ul {
    padding: 0;
    list-style-type: none;
    display: flex;
    justify-content: center;
    margin: 0;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: bold;
}

nav ul li a:hover {
    color: #3498db;
}

h1, h2 {
    color: #2c3e50;
}

section {
    background-color: #fff;
    margin: 20px 0;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

ul, ol {
    padding-left: 20px;
}

a {
    color: #3498db;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    margin-top: 20px;
    padding: 20px;
    background-color: #2c3e50;
    color: #ecf0f1;
    border-radius: 5px;
}

footer p {
    margin: 5px 0;
}

footer a {
    color: #3498db;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin-bottom: 10px;
    }
    
    body {
        padding: 10px;
    }

    .banner h1 {
        font-size: 2.5rem;
    }
}

.highlight {
    background-color: #f1c40f;
    padding: 2px 5px;
    border-radius: 3px;
}

#visitCountContainer {
    background-color: #f0f0f0;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 20px;
    margin: 20px 0;
}

#visitCountContainer h2 {
    color: #333;
    margin-top: 0;
}

#visitCountContainer ul {
    list-style-type: none;
    padding: 0;
}

#visitCountContainer li {
    margin-bottom: 10px;
}

#visitCountContainer span {
    font-weight: bold;
    color: #007bff;
}
