/* ==================================================
   Informační stránky (nedostupnost, příprava atd...)
================================================== */

.center-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 160px);
}

.center-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}

.center-text {
    max-width: 480px;
    color: #5f6b7a;
    line-height: 1.7;
}

.info-box {
    width: 100%;
    max-width: 520px;
    padding: 30px 24px;
    text-align: center;
    background: var(--white);
    border: 1px solid #dbe4f0;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 36, 82, 0.06);
}

.info-icon {
    margin-bottom: 14px;
    font-size: 2.6rem;
}

.info-box h3,
.info-box h4,
.info-box h1 {
    margin-bottom: 12px;
    line-height: 1.25;
    color: var(--text-color);
}

.info-main-text {
    margin-bottom: 10px;
    font-size: 1rem;
    line-height: 1.65;
    color: #444;
}

.info-sub-text {
    margin-bottom: 22px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #6b7280;
}

.info-btn {
    display: inline-block;
    padding: 12px 22px;
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    background: var(--primary-color);
    border-radius: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.info-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(0, 74, 173, 0.2);
    opacity: 0.96;
}

/* ==================================================
   RESPONSIVE
================================================== */
@media (max-width: 850px) {
    .center-page {
        min-height: calc(100vh - 140px);
    }

    .center-content {
        gap: 20px;
    }

    .info-box {
        max-width: 100%;
        padding: 26px 20px;
        border-radius: 14px;
    }

    .info-icon {
        font-size: 2.3rem;
    }
}

@media (max-width: 600px) {
    .center-content {
        gap: 18px;
    }

    .center-text {
        max-width: 100%;
        font-size: 0.95rem;
    }

    .info-box {
        padding: 22px 18px;
    }

    .info-icon {
        font-size: 2.1rem;
    }

    .info-btn {
        width: 100%;
        text-align: center;
    }
}