﻿/* Vánoční lišta přes celou šířku */

.xmas-bar {
    width: 100%;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.10);
    backdrop-filter: blur(4px);
    padding-top: 5px;
}

.xmas-bar-inner {
    max-width: 1200px; /* stejné „tělo“ jako zbytek stránky */
    margin: 0 auto;
    padding: 6px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.xmas-icon {
    font-size: 1.0rem;
    margin-right: 4px;
}

.xmas-label {
    font-weight: 600;
    color: #0051b3;
    white-space: nowrap;
}

.xmas-closed {
    font-weight: 600;
    color: #b3261e;
    white-space: nowrap;
}

.xmas-open {
    font-weight: 600;
    color: #0b8043;
    white-space: nowrap;
}

.xmas-sep {
    opacity: 0.6;
}

/* mobil – dovolíme zalomení, ale pořád to vypadá hezky */
@media (max-width: 768px) {
    .hero {
        margin-top: 0 !important;
    }

    .xmas-bar {
        width: 100%;
        background: rgba(255, 255, 255, 0.96);
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.10);
        backdrop-filter: blur(4px);
        padding-top: 5px;
        margin-top: 200px;
        margin-bottom: 0px !important;
    }

    .xmas-bar-inner {
        flex-wrap: wrap;
        text-align: center;
        justify-content: center;
    }

    .xmas-label,
    .xmas-closed,
    .xmas-open {
        white-space: normal;
    }
}

@media (max-width: 500px) {
    .xmas-bar {
        margin-top: 210px;
    }
}
