/* --- KONTAKTNÍ STRÁNKA --- */

/* Hero a základy dědíme ze styleGlobal.css */

.section-contact {
    padding: 60px 0;
}

.contact-grid-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.section-heading {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 30px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

/* --- LEVÁ STRANA: INFO TABULKA --- */
.contact-info-box h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: #333;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
}

.info-table tr {
    border-bottom: 1px solid #eee;
}

.info-table th {
    text-align: left;
    padding: 12px 0;
    width: 40%;
    color: #333;
    font-weight: 700;
    vertical-align: top;
}

.info-table td {
    text-align: left;
    padding: 12px 0;
    color: #555;
}

.info-table a {
    color: var(--tkc-blue);
    text-decoration: none;
    transition: 0.3s;
}
.info-table a:hover { text-decoration: underline; }

.legal-links {
    margin-top: 20px;
    display: flex;
    gap: 20px;
}
.legal-links a { color: var(--tkc-blue); font-size: 0.9rem; }

.small-legal {
    margin-top: 20px;
    font-size: 0.8rem;
    color: #888;
    font-style: italic;
}

/* --- PRAVÁ STRANA: FORMULÁŘ --- */
.contact-form-box h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: #333;
}

.modern-contact-form .form-group {
    margin-bottom: 15px;
}

.modern-contact-form label {
    display: block;
    margin-bottom: 5px;
    font-size: 0.9rem;
    color: #555;
    font-weight: 500;
}

/* Zde napodobujeme styl inputů z obrázku (šedé pozadí) */
.modern-contact-form input[type="text"],
.modern-contact-form input[type="email"],
.modern-contact-form textarea {
    width: 100%;
    padding: 10px;
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 2px;
    outline: none;
    transition: border-color 0.3s;
}

.modern-contact-form input:focus,
.modern-contact-form textarea:focus {
    border-color: var(--tkc-blue);
    background-color: #fff;
}

.form-check {
    margin-top: 20px;
}

.checkbox-label {
    display: flex;
    gap: 10px;
    font-size: 0.85rem;
    color: #666;
    align-items: flex-start;
    cursor: pointer;
}
.checkbox-label input { margin-top: 3px; }
.checkbox-label a { color: var(--tkc-blue); }

.btn-submit {
    background-color: #ddd; /* Šedá defaultně jako na obrázku */
    color: #333;
    border: none;
    padding: 10px 25px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 20px;
    transition: 0.3s;
    border-radius: 2px;
}

.btn-submit:hover {
    background-color: var(--tkc-blue);
    color: #fff;
}

/* --- MAPA --- */
.section-map {
    padding-bottom: 60px;
}
.map-responsive iframe {
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* --- TÝM --- */
.section-team {
    padding: 60px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 sloupce dle obrázku */
    gap: 40px;
}

.team-card {
    background: #fff;
    padding: 25px;
    border-bottom: 1px solid #eee; /* Jemná linka pod každým */
}

.team-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #333;
}

.team-card .role {
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 15px;
    color: #333;
    min-height: 40px; /* Zarovnání výšky */
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-details a {
    color: var(--tkc-blue);
    text-decoration: none;
    font-size: 0.95rem;
}
.contact-details a:hover { text-decoration: underline; }

/* RESPONSIVITA */
@media (max-width: 991px) {
    .contact-grid-wrapper {
        grid-template-columns: 1fr; /* Na tabletu pod sebe */
        gap: 40px;
    }
    .team-grid {
        grid-template-columns: 1fr;
    }
}