/**
 * Ark Goa - Trance Music Website Styles
 * Purple/Blue Psychedelic Theme mit Dark Mode
 */

/* Base Styles - Light Mode (Purple/Blue Gradient) */
body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    min-height: 100vh;
    transition: background 0.5s ease, color 0.3s ease;
}

header {
    text-align: center;
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s ease;
}

h1 {
    font-size: 3.5rem;
    margin: 0;
    font-weight: 700;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: color 0.3s ease;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

p {
    max-width: 800px;
    font-size: 1.2rem;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: color 0.3s ease;
}

section {
    margin: 2rem 0;
    max-width: 1000px;
    width: 100%;
}

/* Widget Container */
.widget-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease;
}

.widget-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.3);
}

/* Deezer Widget */
.deezer-widget {
    margin-top: 2rem;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.deezer-widget iframe {
    display: block;
    max-width: 100%;
}

footer {
    margin-top: 3rem;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    text-align: center;
}

footer:hover {
    opacity: 1;
}

/* Dark Mode Toggle Button */
#darkModeToggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    padding: 12px;
    font-size: 1.5rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

#darkModeToggle:hover {
    transform: scale(1.1) rotate(10deg);
    background: rgba(255, 255, 255, 0.3);
}

/* Dark Mode Styles */
[data-theme="dark"] {
    background: linear-gradient(135deg, #1E1B4B 0%, #0F172A 100%) !important;
}

[data-theme="dark"] .widget-container {
    background: rgba(30, 27, 75, 0.6) !important;
    backdrop-filter: blur(10px) !important;
}

[data-theme="dark"] #darkModeToggle {
    background: rgba(139, 92, 246, 0.3) !important;
    border-color: rgba(139, 92, 246, 0.5) !important;
    color: #fbbf24 !important;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    p {
        font-size: 1rem;
    }

    .widget-container {
        padding: 1.5rem;
    }

    .deezer-widget iframe {
        height: 500px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 1rem;
    }

    h1 {
        font-size: 2rem;
    }

    .widget-container {
        padding: 1rem;
    }

    .deezer-widget iframe {
        height: 450px;
    }
}
