/* Loader – plnohodnotný overlay přes celou stránku */
.loader-overlay {
    position: fixed;
    z-index: 9999; /* překryje vše */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

/* Obsah uvnitř loaderu */
.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Logo i text s jednotnou pulsující animací */
.loader-logo img,
.loader-text {
    animation: pulse 1.5s infinite ease-in-out;
}

.loader-logo img {
    width: 180px;
}

.loader-text {
    margin-top: 20px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

/* Klíčová animace pro logo i text */
@keyframes pulse {
    0%   { transform: scale(1); opacity: 1; }
    50%  { transform: scale(1.07); opacity: 0.9; }
    100% { transform: scale(1); opacity: 1; }
}