/* Kontakt page specifics — extracted from webroot/redesign/kontakt.html. */

/* ---------- Hero: sub page variant (Daytona Light H1, final override in prototype) ---------- */
.ghero-eyebrow {
    display: block;
    font-family: var(--g-display-bold);
    text-transform: uppercase; letter-spacing: .1em;
    font-size: .95rem; color: var(--g-yellow);
    margin-bottom: 1rem;
}
.ghero h1 {
    font-family: "Daytona Pro Condensed Light", "DaytonaPro-Cond", sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    line-height: 1.08;
    letter-spacing: .01em;
    color: #fff;
}
.ghero h1 b { font-family: "Daytona Pro Condensed Bold", "DaytonaPro-CondBold", sans-serif; font-weight: 400; color: var(--yellow, #F5B800); }
.ghero-sub { font-size: 1.25rem; color: #e6edf8; margin-top: 1.2rem; max-width: 58ch; }

/* ---------- Contact: two columns ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }

.contact-info h2 { font-size: clamp(1.7rem, 3vw, 2.2rem); line-height: 1.05; margin-bottom: 14px; }
.contact-info .lead { max-width: 46ch; }
.contact-list { list-style: none; margin: 32px 0 0; padding: 0; display: grid; gap: 14px; }
.contact-list li {
    display: flex; align-items: flex-start; gap: 16px;
    background: var(--white); border: 1px solid var(--border);
    border-radius: 20px; padding: 18px 20px;
    box-shadow: var(--sh-sm);
}
.contact-list .ic {
    flex: 0 0 auto;
    width: 46px; height: 46px; border-radius: 14px;
    background: var(--yellow-soft); color: var(--yellow-dark);
    display: flex; align-items: center; justify-content: center; font-size: 1.15rem;
}
.contact-list h3 { font-size: .98rem; letter-spacing: 0; margin-bottom: 2px; }
.contact-list p, .contact-list a { color: var(--text-mid); font-size: .95rem; line-height: 1.5; text-decoration: none; }
.contact-list a { display: block; }
.contact-list a:hover { color: var(--blue-dark); text-decoration: underline; }

/* ---------- Form card ---------- */
.form-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: 32px; padding: 40px 38px;
    box-shadow: var(--sh-lg);
}
.form-card h2 { font-size: 1.4rem; margin-bottom: 6px; }
.form-card .hint { color: var(--muted); font-size: .92rem; margin-bottom: 26px; }
.form-field { margin-bottom: 20px; }
.form-field label {
    display: block;
    font-family: var(--f-body-bold);
    font-size: .85rem; text-transform: uppercase; letter-spacing: .08em;
    color: var(--ink); margin-bottom: 8px;
}
.form-field input, .form-field textarea {
    width: 100%;
    font-family: var(--f-body);
    font-size: 1rem; color: var(--ink);
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 13px 16px;
    transition: border-color .18s, box-shadow .18s;
}
.form-field input:focus, .form-field textarea:focus {
    outline: none;
    border-color: var(--yellow-dark);
    box-shadow: 0 0 0 3px rgba(61, 98, 168, .15);
}
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--muted); }
.form-field textarea { min-height: 150px; resize: vertical; }
.btn-yellow {
    display: inline-block; font-family: var(--f-body-bold); font-size: 1rem;
    background: var(--yellow); color: var(--ink); text-decoration: none;
    border: none; border-radius: 999px; padding: 14px 34px;
    box-shadow: var(--sh-yellow); cursor: pointer;
    transition: transform .18s var(--ease);
}
.btn-yellow:hover { transform: translateY(-2px); }
.form-note { display: block; margin-top: 14px; color: var(--muted); font-size: .84rem; }

/* ---------- Form states (forms.js toggles .submitted on success) ---------- */
.form-card { position: relative; overflow: hidden; }
.form-card .response-message { opacity: 0; position: absolute; top: 0; left: 0; right: 0; padding: 40px 38px; z-index: -1; }
.form-card form.submitted { opacity: 0; }
.form-card form.submitted + .response-message { opacity: 1; position: relative; padding: 0; z-index: 1; }
.form-success { text-align: center; padding: 30px 0; }
.form-success .fa-check { font-size: 2.2rem; color: var(--success); margin-bottom: 14px; }
.form-success-title {
    font-family: var(--f-body-bold);
    font-size: 1.3rem; color: var(--ink);
    margin-bottom: 8px;
}
.form-success .response { color: var(--text-mid); }

/* jquery.validate error labels */
.form-field label.error {
    text-transform: none; letter-spacing: 0;
    color: #c0392b; font-family: var(--f-body);
    font-size: .85rem; margin: 6px 0 0;
}
.form-field input.error, .form-field textarea.error { border-color: #c0392b; }
