/* ============================================================
   kontakt.css — Kontakt page (self-contained)
   Part of the Praxis Dr. Kretzschmar theme. Rules moved verbatim
   from the original single style.css (see CLAUDE.md).
   Contact-form and legacy-band rules removed per MP-01 (the page
   is intentionally form-free; FR-15 / LR-06).
   ============================================================ */

/* ===== Kontakt page — self-contained layout =====
		   Colours reference the shared design tokens but include
		   fallbacks so the page never collapses if those are absent. */

.kontakt-intro {
    background: var(--color-green-100, #DDEED5);
    padding: 64px 24px;
}
.kontakt-intro-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}
.kontakt-intro-text {
    font-size: 17px;
    line-height: 1.75;
    padding-top: 64px;
    color: var(--color-ink-900, #0F2842);
    opacity: 0.9;
}

.kontakt-info {
    background: var(--color-green-50, #F1F8EE);
    padding: 80px 24px;
}
.kontakt-info-inner {
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.kontakt-info-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 32px;
    font-weight: 400;
    color: var(--color-ink-900, #0F2842);
    margin-bottom: 14px;
}
.kontakt-info-divider {
    width: 56px;
    height: 2px;
    background: var(--color-accent-600, #AB2815);
    margin-bottom: 32px;
}
.kontakt-address {
    font-style: normal;
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-ink-900, #0F2842);
    margin-bottom: 24px;
}
.kontakt-contact-line {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-ink-900, #0F2842);
    margin-bottom: 6px;
    word-break: break-word;
}
.kontakt-contact-line a {
    color: var(--color-accent-600, #AB2815);
    text-decoration: none;
    transition: opacity 0.2s ease;
}
.kontakt-contact-line a:hover { opacity: 0.7; }

.kontakt-info-side {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

@media (max-width: 1024px) {
    .kontakt-info-inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 640px) {
    .kontakt-intro { padding: 48px 20px; }
    .kontakt-info  { padding: 56px 20px; }
}
