/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/

/* --- KOSMO PREMIUM CF7 STYLING --- */

/* Container Abstände */
.kosmo-form {
    width: 100%;
    box-sizing: border-box;
}

.form-row {
    margin-bottom: 20px; /* Luft zwischen den Feldern */
}

/* Labels (Die Beschriftung) */
.kosmo-form label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #0F3034; /* Dein Petrol */
    margin-bottom: 0.5rem;
}

/* Die Eingabefelder (Input & Textarea) */
.kosmo-form input[type="text"],
.kosmo-form input[type="email"],
.kosmo-form input[type="tel"],
.kosmo-form textarea {
    width: 100%;
    background-color: #F9F9F9; /* Ganz leichtes Grau, wirkt weicher als hartes Weiß */
    border: 2px solid #E0E0E0; /* Dezenter Rahmen */
    border-radius: 8px; /* Leicht abgerundet */
    padding: 1rem;
    font-size: 1rem;
    color: #333;
    transition: all 0.3s ease;
}

/* Fokus-Effekt (Wenn man reinklickt) */
.kosmo-form input:focus,
.kosmo-form textarea:focus {
    background-color: #ffffff;
    border-color: #0F3034; /* Dein Petrol als Fokus-Farbe */
    outline: none;
    box-shadow: 0 4px 10px rgba(15, 48, 52, 0.1);
}

/* Der Button (Gold & Stark) */
.kosmo-form input[type="submit"] {
    width: 100%;
    background-color: #C5A065; /* Dein Gold */
    color: #0F3034; /* Dunkles Petrol für Kontrast */
    border: none;
    padding: 18px 30px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.3s ease, transform 0.2s ease;
    margin-top: 10px;
}

/* Button Hover Effekt */
.kosmo-form input[type="submit"]:hover {
    background-color: #B08D55; /* Etwas dunkleres Gold */
    transform: translateY(-2px); /* Leichtes Schweben */
}

/* Erfolgsmeldung (Das grüne Kästchen unten) */
div.wpcf7-response-output {
    border: none !important;
    background-color: #0F3034;
    color: #fff;
    padding: 1rem !important;
    border-radius: 12px;
    text-align: center;
    font-size: 0.875rem;
    margin-top: 1rem;
}

/* --- DATENSCHUTZ CHECKBOX STYLING --- */

/* Container Ausrichtung */
.privacy-row span.wpcf7-list-item {
    display: flex;
    align-items: flex-start; /* Oben bündig, falls Text zweizeilig wird */
    margin: 0;
}

/* Die Checkbox selbst */
.privacy-row input[type="checkbox"] {
    width: 20px !important; /* Feste Größe */
    height: 20px !important;
    min-width: 20px; /* Verhindert Quetschen */
    margin-right: 12px;
    margin-top: 3px; /* Optische Korrektur zur Text-Höhe */
    cursor: pointer;
    accent-color: #0F3034; /* Färbt den Haken modern in PETROL! */
    border: 2px solid #E0E0E0;
    border-radius: 4px;
    background-color: #fff;
}

/* Der Text daneben */
.privacy-row .wpcf7-list-item-label {
    font-size: 0.85rem; /* Kleiner als die Input-Felder (Elegant) */
    line-height: 1.5;
    color: #666; /* Dezentes Grau */
}

/* Der Link zur Datenschutzerklärung */
.privacy-row .wpcf7-list-item-label a {
    color: #0F3034;
    text-decoration: underline;
    font-weight: 600;
}

.privacy-row .wpcf7-list-item-label a:hover {
}