/* Údržba stránka */
.udrzba {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    padding: 40px 20px;
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.udrzba__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 4px 32px rgba(234, 88, 12, 0.12);
    border: 3px solid #ea580c;
    max-width: 700px;
    width: 100%;
    padding: 40px 40px;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.udrzba__content {
    flex: 1;
    text-align: center;
    z-index: 1;
}

.udrzba__title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.25;
    margin: 0 0 12px 0;
}

.udrzba__text {
    font-size: 1.1rem;
    color: #555;
    margin: 0 0 28px 0;
}

.udrzba__action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.udrzba__button {
    background: linear-gradient(135deg, #ff8c00, #ea580c);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
    font-family: inherit;
    box-shadow: 0 4px 16px rgba(234, 88, 12, 0.3);
}

.udrzba__button:hover {
    background: linear-gradient(135deg, #ea580c, #c2410c);
    box-shadow: 0 6px 20px rgba(234, 88, 12, 0.4);
}

.udrzba__countdown {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff7ed;
    color: #ea580c;
    border: 2px solid #ea580c;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.95rem;
    font-weight: 700;
    min-width: 48px;
}

.udrzba__image {
    flex-shrink: 0;
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
    z-index: 1;
}

.udrzba__illustration {
    width: 100%;
    height: auto;
    max-height: 280px;
    object-fit: contain;
}

/* Responzivní design */
@media (max-width: 640px) {
    .udrzba__card {
        flex-direction: column;
        padding: 32px 24px;
        text-align: center;
    }

    .udrzba__title {
        font-size: 1.5rem;
    }

    .udrzba__action {
        justify-content: center;
    }

    .udrzba__image {
        width: 150px;
        margin-top: 24px;
    }
}
