/* ============================================ */
/* NADPIS SEKCE */
/* ============================================ */

.in-kontakt header h1 {
    display: none;
}

.contact-page h1 {
    font-size: 42px;
    font-weight: 700;
    color: #000;
    margin-bottom: 40px;
}

/* ============================================ */
/* MŘÍŽKA KONTAKTNÍCH KARET */
/* ============================================ */

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

/* ============================================ */
/* KONTAKTNÍ KARTA */
/* ============================================ */

.contact-card {
    background: #fff;
    border-radius: 16px;
    padding: 35px 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.contact-card h2 {
    font-size: 26px;
    font-weight: 700;
    color: #d32027;
    margin-bottom: 25px;
    margin-top: 0px;
}

/* ============================================ */
/* KONTAKTNÍ POLOŽKY */
/* ============================================ */

.contact-item {
    margin-bottom: 22px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-label {
    font-size: 15px;
    color: #666;
    margin-bottom: 4px;
    display: block;
}

.contact-value {
    font-size: 17px;
    color: #000;
    font-weight: 600;
    display: block;
}

.contact-value a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-value a:hover {
    color: #d32027;
}

/* Specifické styly pro různé typy hodnot */
.contact-phone {
    font-size: 19px;
    font-weight: 700;
}

.contact-email {
    color: #d32027;
    text-decoration: underline;
}

.contact-email:hover {
    color: #b01820;
}

/* ============================================ */
/* ADRESA S MAPOVÝM ODKAZEM */
/* ============================================ */

.contact-address {
    margin-bottom: 15px;
}

.contact-address .address-line {
    font-size: 17px;
    color: #000;
    font-weight: 600;
    display: block;
}

.contact-map-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #d32027;
    font-size: 15px;
    font-weight: 600;
    text-decoration: underline;
    margin-top: 8px;
    transition: color 0.3s ease;
}

.contact-map-link:hover {
    color: #b01820;
}

.contact-map-link::before {
    content: url(/user/documents/upload/static/footer/map.svg);
    font-size: 18px;
}

/* ============================================ */
/* OTEVÍRACÍ DOBA */
/* ============================================ */

.opening-hours {
    margin-top: 20px;
}

.opening-hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.opening-hours-item {
    display: flex;
    gap: 10px;
    font-size: 15px;
    margin-bottom: 8px;
    color: #333;
}

.opening-hours-day {
    min-width: 30px;
    color: #666;
}

.opening-hours-time {
    font-weight: 600;
    color: #000;
}

.opening-hours-closed {
    font-weight: 600;
    color: #666;
}

/* ============================================ */
/* ODDĚLOVAČ */
/* ============================================ */

.contact-divider {
    height: 1px;
    background-color: #e0e0e0;
    margin: 25px 0;
}

/* ============================================ */
/* FAKTURAČNÍ ÚDAJE */
/* ============================================ */

.billing-info {
    margin-bottom: 20px;
}

.billing-company {
    font-size: 17px;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
}

.billing-address {
    font-size: 15px;
    color: #333;
    line-height: 1.6;
}

.billing-details {
    margin-top: 20px;
}

.billing-detail-item {
    display: flex;
    gap: 10px;
    font-size: 15px;
    margin-bottom: 8px;
}

.billing-detail-label {
    color: #666;
}

.billing-detail-value {
    font-weight: 600;
    color: #000;
}

/* ============================================ */
/* RESPONZIVNÍ DESIGN */
/* ============================================ */

@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .contact-page {
        padding: 40px 0;
    }

    .contact-page h1 {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .contact-card {
        padding: 30px 25px;
    }

    .contact-card h2 {
        font-size: 24px;
    }
}