/* ===================================
   Download Section - Neu gestaltet 2024
   =================================== */

.download {
    padding: 6rem 5%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.download::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255,255,255,0.05) 0%, transparent 50%);
    pointer-events: none;
}

.download-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.download-header {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease;
}

.download-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.download h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.download h2 .highlight {
    background: linear-gradient(to right, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.download-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.download-options {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.store-button {
    position: relative;
    display: flex;
    align-items: center;
    padding: 1.2rem 2rem;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-width: 220px;
    background: white;
    color: #333;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    gap: 1rem;
    overflow: hidden;
    border: none;
    height: auto;
}

.store-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(255,255,255,0.3));
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.store-button:hover::before {
    transform: translateX(100%);
}

.store-button:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.button-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 15px;
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.button-icon i {
    font-size: 1.8rem;
    color: white;
}

.button-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.button-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 400;
}

.button-action {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
}

.button-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #f093fb, #f5576c);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.store-button-primary .button-icon {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.store-button-ios .button-icon {
    background: linear-gradient(135deg, #000, #434343);
}

.store-button-android .button-icon {
    background: linear-gradient(135deg, #3DDC84, #4285F4);
}

.download-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.3s both;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 1rem;
}

.feature-item i {
    color: #ffd700;
    font-size: 1.2rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .download {
        padding: 4rem 5%;
    }

    .download h2 {
        font-size: 2.2rem;
    }

    .download-subtitle {
        font-size: 1rem;
    }

    .download-options {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .store-button {
        width: 100%;
        max-width: 320px;
    }

    .download-features {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .feature-item {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .download h2 {
        font-size: 1.8rem;
    }

    .download-subtitle {
        font-size: 0.95rem;
        padding: 0 1rem;
    }

    .download-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1.2rem;
    }

    .button-icon {
        width: 45px;
        height: 45px;
    }

    .button-icon i {
        font-size: 1.5rem;
    }

    .button-label {
        font-size: 0.85rem;
    }

    .button-action {
        font-size: 1.1rem;
    }

    .feature-item {
        font-size: 0.9rem;
    }
}
