/* ========================================
   MAIN CSS - IMPORT DER BEREINIGTEN CSS
   ======================================== */

/* Import der bereinigten CSS-Datei */
@import url('../lejaa-complete-bereinigt.css');

/* ========================================
   ZUSÄTZLICHE STYLES FÜR FUNNEL
   ======================================== */

/* Funnel-spezifische Styles */
.funnel-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.funnel-step {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.funnel-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(63, 179, 142, 0.15);
}

.funnel-step h3 {
    color: #3fb38e;
    margin-bottom: 1rem;
}

.funnel-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.funnel-form input,
.funnel-form textarea,
.funnel-form select {
    padding: 12px 16px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.funnel-form input:focus,
.funnel-form textarea:focus,
.funnel-form select:focus {
    outline: none;
    border-color: #3fb38e;
    box-shadow: 0 0 0 3px rgba(63, 179, 142, 0.1);
}

.funnel-form label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

/* Contact Form 7 Integration */
.wpcf7-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.wpcf7-form input,
.wpcf7-form textarea,
.wpcf7-form select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.wpcf7-form input:focus,
.wpcf7-form textarea:focus,
.wpcf7-form select:focus {
    outline: none;
    border-color: #3fb38e;
    box-shadow: 0 0 0 3px rgba(63, 179, 142, 0.1);
}

.wpcf7-form .wpcf7-submit {
    background: linear-gradient(135deg, #3fb38e 0%, #2d8a6f 100%);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wpcf7-form .wpcf7-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(63, 179, 142, 0.3);
}

.wpcf7-form .wpcf7-submit:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* Success/Error Messages */
.wpcf7-response-output {
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.wpcf7-mail-sent-ok {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.wpcf7-validation-errors {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.wpcf7-spam-blocked {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

/* Loading State */
.wpcf7-form .wpcf7-submit:disabled {
    opacity: 0.7;
    cursor: wait;
}

/* Responsive Design */
@media (max-width: 768px) {
    .funnel-container {
        padding: 1rem;
    }
    
    .funnel-step {
        padding: 1.5rem;
    }
    
    .wpcf7-form {
        padding: 1.5rem;
    }
} 