/* Kontaktseite im Flipbook.
   Koordinatenraum der Seite: Hoehe = 1000 Einheiten, bei 1920x1080 also 1778 breit.
   Am Bildschirm wird die Seite auf rund 263 px verkleinert (Massstab ~0,26) - alle Masse
   hier sind deshalb absichtlich gross, sonst ist nichts zu lesen. */

/* Grundflaeche: deckt die ganze Seite ab, damit das Formular auf Schwarz steht.
   In WebGL liegt das Seitenbild in der Leinwand, die HTML-Schicht darueber ist durchsichtig. */
.fb-k-grund {
    background: #000;
    z-index: 0;
}

.fb-kontakt {
    z-index: 1;
    font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
    color: #fff;
    text-align: center;
    letter-spacing: 0.02em;
}

.fb-kontakt h2 {
    margin: 0 0 26px;
    font-size: 68px;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #fff;
}
.fb-kontakt h2::after {
    content: "";
    display: block;
    width: 120px;
    height: 4px;
    background: #ff0000;
    margin: 18px auto 0;
}

.fb-k-form { margin: 0; }

/* Felder: gross, heller Grund, kraeftiger Rahmen - damit sie auch verkleinert zu sehen sind.
   css/contact.css legt sitewide ein Pergament-Bild auf ALLE input/textarea/select, mit
   !important. Nur deshalb steht hier background-image: none !important. */
.fb-k-form input[type="text"],
.fb-k-form input[type="email"],
.fb-k-form textarea {
    display: block;
    width: 100%;
    margin: 0 0 20px;
    padding: 18px 24px;
    box-sizing: border-box;
    background-image: none !important;
    background-color: rgba(255, 255, 255, 0.16);
    border: 3px solid rgba(255, 255, 255, 0.7);
    border-radius: 0;
    color: #fff;
    font-family: inherit;
    font-size: 58px;
    line-height: 1.3;
    letter-spacing: normal;
    text-transform: none;
    text-align: left;
    outline: none;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}
.fb-k-form textarea { resize: none; line-height: 1.35; }

.fb-k-form input::placeholder,
.fb-k-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.72);
    opacity: 1;
}

.fb-k-form input:focus,
.fb-k-form textarea:focus {
    border-color: #ff0000;
    background-color: rgba(255, 255, 255, 0.26);
}

.fb-k-form button {
    display: block;
    margin: 4px auto 0;
    padding: 20px 64px;
    background-image: none !important;
    background-color: #ff0000;
    border: none;
    color: #fff;
    font-family: inherit;
    font-size: 40px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.2s ease;
}
.fb-k-form button:hover { background-color: #cc0000; }
.fb-k-form button[disabled] { background-color: #555; cursor: default; }

/* Honigtopf - fuer Menschen unsichtbar, Bots fuellen ihn aus */
.fb-k-topf {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
}

.fb-k-meldung {
    margin: 14px 0 0;
    min-height: 46px;
    font-size: 34px;
    line-height: 1.35;
    text-align: center;
    color: #fff;
}
.fb-k-meldung.gut  { color: #86e594; }
.fb-k-meldung.fehl { color: #ff7b7b; }

.fb-k-adresse {
    margin: 18px 0 0;
    font-size: 28px;
    line-height: 1.5;
    color: #cfcfcf;
    letter-spacing: 0.06em;
}
.fb-k-adresse span { opacity: 0.7; }
