/* ========================================
   Kontaktformular im Footer-Bereich
   Datei: contact.css
   ======================================== */

.contact-footer-section {
    background-color: #e78732;
    padding: 60px 0;
    width: 100%;
    color: #fff;
}

.contact-footer-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-footer-section h2 {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: center;
}

.contact-footer-section .subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 40px;
}

/* Formular Styling */
#contactFormFooter {
    max-width: 900px;
    margin: 0 auto;
}

#contactFormFooter .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

#contactFormFooter .form-group {
    display: flex;
    flex-direction: column;
}

#contactFormFooter label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #fff;
    font-size: 0.95rem;
}

#contactFormFooter input,
#contactFormFooter select,
#contactFormFooter textarea {
    padding: 14px 18px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    background-color: #fff;
    color: #333;
    transition: box-shadow 0.2s ease;
}

#contactFormFooter input:focus,
#contactFormFooter select:focus,
#contactFormFooter textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.4);
}

#contactFormFooter textarea {
    resize: vertical;
    min-height: 120px;
}

/* Volle Breite für Beschreibung */
#contactFormFooter .full-width {
    grid-column: 1 / -1;
}

/* Button */
#contactFormFooter button {
    background-color: #fff;
    color: #e85d04;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 16px 40px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

#contactFormFooter button:hover {
    background-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* Erfolgsmeldung */
#successMessageFooter {
    background-color: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.4);
    color: #fff;
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    font-size: 1.1rem;
    margin-top: 30px;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-footer-section {
        padding: 50px 0;
    }
    
    #contactFormFooter .form-grid {
        grid-template-columns: 1fr;
    }
    
    #contactFormFooter h2 {
        font-size: 1.7rem;
    }
}