/* ==========================================
   WHY PARTICIPATE SECTION
   Gründe zum Mitmachen mit Icon-Cards
   ========================================== */

.why-participate-section {
    padding: 4rem 0;
    background: linear-gradient(to bottom, 
        rgba(212, 165, 116, 0.08) 0%, 
        rgba(255, 255, 255, 0) 100%
    );
    position: relative;
    overflow: hidden;
}

.why-participate-bg {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-size: cover;
    background-position: center;
    pointer-events: none;
}

.why-participate-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 10;
}

.why-participate-title {
    font-family: 'Quicksand', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--wr-color-navy, #0f274d);
    margin: 0 0 1rem;
    line-height: 1.2;
}

.why-participate-subtitle {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: #666;
    max-width: 42rem;
    margin: 0 auto;
    line-height: 1.6;
}

/* Grid Layout */
.why-participate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 10;
}

/* Reason Card */
.reason-card {
    background: white;
    border-radius: 16px;
    border: 2px solid rgba(212, 165, 116, 0.15);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.reason-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(212, 165, 116, 0.25);
    border-color: var(--wr-color-gold, #d4a574);
}

/* Icon Container */
.reason-icon-container {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.reason-icon-bg {
    width: 80px;
    height: 80px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.reason-card:hover .reason-icon-bg {
    transform: scale(1.1);
}

.reason-icon-bg svg {
    width: 40px;
    height: 40px;
    color: white;
}

/* Gradient Backgrounds */
.gradient-blue {
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
}

.gradient-purple {
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
}

.gradient-orange {
    background: linear-gradient(135deg, #f97316 0%, #ef4444 100%);
}

.gradient-emerald {
    background: linear-gradient(135deg, #10b981 0%, #14b8a6 100%);
}

/* Glow Effect */
.reason-icon-glow {
    position: absolute;
    inset: 0;
    width: 80px;
    height: 80px;
    border-radius: 24px;
    opacity: 0.3;
    filter: blur(24px);
    transition: opacity 0.3s ease;
    z-index: 1;
}

.reason-card:hover .reason-icon-glow {
    opacity: 0.5;
}

.glow-blue {
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
}

.glow-purple {
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
}

.glow-orange {
    background: linear-gradient(135deg, #f97316 0%, #ef4444 100%);
}

.glow-emerald {
    background: linear-gradient(135deg, #10b981 0%, #14b8a6 100%);
}

/* Card Content */
.reason-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--wr-color-navy, #0f274d);
    margin: 0 0 0.75rem;
    line-height: 1.3;
}

.reason-description {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Anpassungen */
@media (max-width: 1024px) {
    .why-participate-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-participate-section {
        padding: 3rem 0;
    }

    .why-participate-header {
        margin-bottom: 2rem;
    }

    .why-participate-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .reason-card {
        padding: 1.75rem 1.25rem;
    }
}

@media (max-width: 480px) {
    .reason-icon-container {
        width: 72px;
        height: 72px;
    }

    .reason-icon-bg {
        width: 72px;
        height: 72px;
        border-radius: 20px;
    }

    .reason-icon-bg svg {
        width: 36px;
        height: 36px;
    }

    .reason-icon-glow {
        width: 72px;
        height: 72px;
        border-radius: 20px;
    }

    .reason-title {
        font-size: 1.125rem;
    }

    .reason-description {
        font-size: 0.8125rem;
    }
}
