/**
 * Sections Glassmorphism Fix
 * Problem 10, 11, 12: Portfolio Cards, About Section, Lead Magnet
 * Fügt Glassmorphism-Styles und runde Rahmen hinzu
 * Datum: 2025-11-06
 */

/* ==========================================================================
   PROBLEM 10: PORTFOLIO CARDS - GLASSMORPHISM
   ========================================================================== */

.portfolio-card-white {
    background: rgba(255, 255, 255, 0.95) !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; /* Runde Ecken */
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.5) !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
}

.portfolio-card-white:hover {
    transform: translateY(-8px) !important;
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.6) !important;
}

/* Portfolio Card Header - Transparentes Lila (0.25 Opacity) */
.portfolio-card-header {
    padding: 2rem !important;
    border-radius: 24px 24px 0 0 !important;
    background: linear-gradient(135deg, rgba(128, 0, 255, 0.25) 0%, rgba(99, 102, 241, 0.25) 100%) !important;
    text-align: center !important;
    backdrop-filter: blur(10px) !important;
}

.portfolio-card-header.gradient-primary {
    background: linear-gradient(135deg, rgba(128, 0, 255, 0.25) 0%, rgba(99, 102, 241, 0.25) 100%) !important;
}

.portfolio-card-header.gradient-reverse {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.25) 0%, rgba(128, 0, 255, 0.25) 100%) !important;
}

.portfolio-card-header.gradient-success {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.25) 0%, rgba(168, 85, 247, 0.25) 100%) !important;
}

/* Portfolio Card Content */
.portfolio-card-content {
    padding: 2rem !important;
    background: transparent !important;
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)) !important;
    gap: 2rem !important;
    max-width: 1200px !important;
    margin: 3rem auto !important;
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ==========================================================================
   PROBLEM 11: ABOUT SECTION - GLASSMORPHISM & BUTTONS
   ========================================================================== */

/* About Section Container */
.about.scroll-section {
    background: transparent !important;
    padding: 5rem 2rem !important;
}

/* Stats Row - Glassmorphism */
.stats-row {
    display: flex !important;
    gap: 2rem !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    margin: 3rem auto !important;
}

.stat-item {
    background: rgba(255, 255, 255, 0.95) !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: 20px !important;
    padding: 2rem 3rem !important;
    text-align: center !important;
    min-width: 150px !important;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.5) !important;
    transition: all 0.3s ease !important;
}

.stat-item:hover {
    transform: translateY(-5px) !important;
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.6) !important;
}

.stat-number {
    font-size: 3rem !important;
    font-weight: 800 !important;
    background: linear-gradient(135deg, rgba(128, 0, 255, 0.8) 0%, rgba(99, 102, 241, 0.8) 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    margin-bottom: 0.5rem !important;
}

.stat-label {
    font-size: 1rem !important;
    color: #4b5563 !important;
    font-weight: 500 !important;
}

/* Buttons in About Section */
.about .btn-gradient,
.about .btn-glass {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 1rem 2rem !important;
    min-height: 48px !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    border-radius: 12px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    border: none !important;
}

.about .btn-gradient {
    background: linear-gradient(135deg, rgba(128, 0, 255, 0.85) 0%, rgba(99, 102, 241, 0.85) 100%) !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(128, 0, 255, 0.3) !important;
}

.about .btn-gradient:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(128, 0, 255, 0.4) !important;
}

.about .btn-glass {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    color: rgba(128, 0, 255, 0.9) !important;
    border: 1px solid rgba(128, 0, 255, 0.2) !important;
}

.about .btn-glass:hover {
    background: rgba(128, 0, 255, 0.1) !important;
    transform: translateY(-2px) !important;
}

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

/* ALLE LEAD-MAGNET STYLES DEAKTIVIERT */
