/* Styly stránky /kontakt (kontakt.php nastavuje $pageCss = 'kontakt') */
.privacy-policy { max-width: 800px; margin: 0 auto; }
.contact-form { max-width: 600px; margin: 1.5rem 0 2rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: #333;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.65rem 0.85rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 0.95rem;
    font-family: inherit;
    background: #fff;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color, #2563eb);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { cursor: pointer; appearance: auto; }
.contact-submit {
    display: inline-block;
    padding: 0.7rem 2rem;
    background: var(--primary-color, #2563eb);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}
.contact-submit:hover { background: var(--primary-light, #1d4ed8); }
.contact-alert {
    padding: 1rem 1.2rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
}
.contact-alert-success { background: #f0fdf4; border: 1px solid #bbf7d0; color: #166534; }
.contact-alert-error { background: #fef2f2; border: 1px solid #fecaca; color: #991b1b; }
@media (max-width: 768px) { .contact-form { max-width: 100%; } }
