header {
    background: linear-gradient(135deg, #2c3e50, #3182b8);
    color: white;
    padding: 0.25rem 0.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.site-title {
    font-size: 2rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 20px;
}

.site-title a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.site-title a:hover {
    color: #f39c12;
}

.tagline {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: normal;
}

/* Nový header layout */
.header-container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.header-left {
    width: 250px; /* rovnaká šírka ako menu */
    min-width: 250px;
}

.header-center {
    flex: 1;
    text-align: center;
    padding: 0 2rem;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.site-title {
    font-size: 2rem;
    font-weight: bold;
    margin: 0;
}

.site-title a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.site-title a:hover {
    color: #f39c12;
}

.tagline {
    font-size: 1.3rem;
    opacity: 0.9;
    font-weight: normal;
}

.logo {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

   @media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        text-align: center;
    }
    
    .header-left {
        width: 100%;
        min-width: auto;
        margin-bottom: 1rem;
    }
    
    .header-center {
        padding: 0 1rem;
    }
    
    .logo-container {
        justify-content: center;
    }
    
    .tagline {
        font-size: 1.1rem;
    }
}