/**
 * Unified Sections Layout
 * Date: 2025-11-08
 * Einheitliche Paddings für alle Sections + Lead Magnet Optimierung
 */

/* ================================================================
   EINHEITLICHE SECTION PADDINGS - Fließende Übergänge
   ================================================================ */

/* Alle Sections bekommen einheitliches Padding */
.services,
.portfolio,
.about#seminare,
.lead-magnet,
.testimonials,
.services#ueber-uns {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
}

/* Ausnahme: Services direkt nach Hero - kein top padding */
.services {
    padding-top: 0 !important;
    padding-bottom: 1.5rem !important;
}

/* Portfolio direkt nach Services - reduziertes top padding */
.portfolio {
    padding-top: 1rem !important;
    padding-bottom: 1.5rem !important;
}

/* Testimonials - minimales top padding */
.testimonials {
    padding-top: 0.5rem !important;
    padding-bottom: 1.5rem !important;
}

/* ================================================================
   LEAD MAGNET SECTION - DEAKTIVIERT (2025-11-13)
   Styles verschoben nach lead-magnet-optimized.css
   ================================================================ */

/* ALLE LEAD-MAGNET STYLES DEAKTIVIERT - Werden in lead-magnet-optimized.css geladen */

/*
.lead-magnet {
    position: relative;
    background: rgba(255, 255, 255, 0.5) !important;
}

.lead-magnet::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.lead-magnet > .container {
    position: relative;
    z-index: 1;
}

.lead-magnet-box {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 2rem !important;
    align-items: center !important;
    background: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 24px !important;
    padding: 2rem !important;
    box-shadow:
        0 8px 32px rgba(31, 38, 135, 0.15),
        0 2px 8px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.4) !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

.lead-magnet-content h3 {
    font-size: 1.75rem !important;
    font-weight: 700 !important;
    color: #1f2937 !important;
    margin-bottom: 0.75rem !important;
    line-height: 1.3 !important;
    background: linear-gradient(135deg, #8000ff, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lead-magnet-content p {
    font-size: 1rem !important;
    color: #4b5563 !important;
    line-height: 1.6 !important;
    margin-bottom: 1rem !important;
}

.lead-magnet-benefits {
    list-style: none !important;
    padding: 0 !important;
    margin: 1rem 0 0 0 !important;
}

.lead-magnet-benefits li {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    margin-bottom: 0.5rem !important;
    font-size: 0.95rem !important;
    color: #374151 !important;
    font-weight: 500 !important;
}

.lead-magnet-benefits li::before {
    content: none !important;
}

.lead-magnet-form {
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem !important;
}

.lead-magnet-form input[type="email"] {
    width: 100% !important;
    padding: 0.875rem 1.25rem !important;
    font-size: 1rem !important;
    border: 1px solid rgba(128, 0, 255, 0.2) !important;
    border-radius: 12px !important;
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(10px) !important;
    transition: all 0.3s ease !important;
}

.lead-magnet-form input[type="email"]:focus {
    outline: none !important;
    border-color: rgba(128, 0, 255, 0.5) !important;
    box-shadow: 0 0 0 3px rgba(128, 0, 255, 0.1) !important;
}

.lead-magnet-form .checkbox-label {
    display: flex !important;
    align-items: flex-start !important;
    gap: 0.5rem !important;
    font-size: 0.85rem !important;
    color: #6b7280 !important;
    cursor: pointer !important;
}

.lead-magnet-form .checkbox-label input[type="checkbox"] {
    margin-top: 0.25rem !important;
    flex-shrink: 0 !important;
    cursor: pointer !important;
}

.lead-magnet-form .checkbox-label a {
    color: #8000ff !important;
    text-decoration: underline !important;
}

.lead-magnet-form .checkbox-label a:hover {
    color: #6000cc !important;
}

.lead-magnet-form button[type="submit"] {
    width: 100% !important;
    padding: 1rem !important;
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    border: none !important;
    border-radius: 12px !important;
    background: linear-gradient(135deg, #8000ff 0%, #6366f1 100%) !important;
    color: white !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 16px rgba(128, 0, 255, 0.3) !important;
}

.lead-magnet-form button[type="submit"]:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(128, 0, 255, 0.4) !important;
}

.lead-magnet-form .form-note {
    font-size: 0.8rem !important;
    color: #9ca3af !important;
    text-align: center !important;
    margin: 0 !important;
}
*/

/* ================================================================
   RESPONSIVE - Mobile Layout - DEAKTIVIERT
   ================================================================ */

/*
@media (max-width: 968px) {
    .lead-magnet-box {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        padding: 1.5rem !important;
    }

    .lead-magnet-content h3 {
        font-size: 1.5rem !important;
    }

    .lead-magnet-content p {
        font-size: 0.95rem !important;
    }
}
*/

@media (max-width: 768px) {
    /* Mobile: Alle Sections gleich */
    .services,
    .portfolio,
    .about#seminare,
    .lead-magnet,
    .testimonials,
    .services#ueber-uns {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    /* Services bleibt ohne top padding */
    .services {
        padding-top: 0 !important;
    }

    .lead-magnet-box {
        padding: 1.25rem !important;
    }

    .lead-magnet-content h3 {
        font-size: 1.35rem !important;
    }
}

/* ================================================================
   SECTION HEADERS - Einheitliches Styling
   ================================================================ */

.section-header {
    text-align: center !important;
    margin-bottom: 1rem !important;
}

.section-header h2 {
    margin-bottom: 0.5rem !important;
    line-height: 1.2 !important;
}

.section-subtitle {
    line-height: 1.5 !important;
    margin-bottom: 0 !important;
}

/* ================================================================
   ANIMATIONS DEAKTIVIEREN - Sofortige Sichtbarkeit
   ================================================================ */

.scale-in,
.fade-in-scroll,
.scroll-reveal-stagger,
.card-floating {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    animation: none !important;
}
