/* DJ RAFF - Main Stylesheet */
/* Version 2: Vibrant/Festif Style */

/* Global Styles */
* {
    font-family: 'Poppins', sans-serif;
}

body {
    background: #0a0a0a;
}

/* Neon Glow Animations */
@keyframes neon-pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(168, 85, 247, 0.5),
                    0 0 40px rgba(236, 72, 153, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(168, 85, 247, 0.8),
                    0 0 60px rgba(236, 72, 153, 0.5);
    }
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.neon-glow {
    animation: neon-pulse 3s ease-in-out infinite;
}

.gradient-animate {
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #a855f7, #ec4899);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #9333ea, #db2777);
}

/* Loading Animation */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.loading {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Hero Section */
.hero-pattern {
    background-image: radial-gradient(circle at 25px 25px, rgba(168, 85, 247, 0.1) 2%, transparent 0%),
                      radial-gradient(circle at 75px 75px, rgba(236, 72, 153, 0.1) 2%, transparent 0%);
    background-size: 100px 100px;
}

/* Card Hover Effects */
.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.3);
}

/* Button Glow */
.btn-glow {
    position: relative;
    overflow: hidden;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-glow:hover::before {
    width: 300px;
    height: 300px;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

/* Video Background Overlay */
.video-overlay {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.8), rgba(236, 72, 153, 0.8), rgba(249, 115, 22, 0.8));
}

/* Form Styles */
input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: #a855f7;
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
}

/* Responsive Typography */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .text-6xl {
        font-size: 3rem;
    }
}

/* Loading Spinner */
.spinner {
    border: 4px solid rgba(168, 85, 247, 0.1);
    border-left-color: #a855f7;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, #a855f7, #ec4899);
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 9999;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Music Bars Animation */
@keyframes music-bar-1 {
    0%, 100% { height: 10px; }
    50% { height: 30px; }
}

@keyframes music-bar-2 {
    0%, 100% { height: 20px; }
    50% { height: 40px; }
}

@keyframes music-bar-3 {
    0%, 100% { height: 15px; }
    50% { height: 35px; }
}

.music-bar-1 {
    animation: music-bar-1 0.8s ease-in-out infinite;
}

.music-bar-2 {
    animation: music-bar-2 0.6s ease-in-out infinite;
}

.music-bar-3 {
    animation: music-bar-3 0.7s ease-in-out infinite;
}

/* Glowing Text */
.text-glow {
    text-shadow: 0 0 10px rgba(168, 85, 247, 0.5),
                 0 0 20px rgba(236, 72, 153, 0.3),
                 0 0 30px rgba(249, 115, 22, 0.2);
}

/* Floating Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.float {
    animation: float 3s ease-in-out infinite;
}

.floating {
    animation: float 6s ease-in-out infinite;
}

/* Neon Gradient Background - Version 2 Vibrant */
.neon-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #f5576c 75%, #ffd140 100%);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Text Neon Effect */
.text-neon {
    color: #fff;
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #e60073, 0 0 40px #e60073, 0 0 50px #e60073, 0 0 60px #e60073, 0 0 70px #e60073;
}

/* Glow Box Effect */
.glow-box {
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.4),
                0 0 40px rgba(236, 72, 153, 0.3),
                0 0 60px rgba(249, 115, 22, 0.2);
    transition: box-shadow 0.3s ease;
}

.glow-box:hover {
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.6),
                0 0 60px rgba(236, 72, 153, 0.5),
                0 0 90px rgba(249, 115, 22, 0.4);
}

/* Animated Border Glow */
.border-glow {
    position: relative;
    border: 2px solid transparent;
    background: linear-gradient(#0a0a0a, #0a0a0a) padding-box,
                linear-gradient(135deg, #a855f7, #ec4899, #f97316) border-box;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #a855f7, #ec4899, #f97316);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Vibrant Card */
.vibrant-card {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(236, 72, 153, 0.1), rgba(249, 115, 22, 0.1));
    border: 1px solid rgba(168, 85, 247, 0.3);
    backdrop-filter: blur(10px);
}

/* Pulse Glow Animation */
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(168, 85, 247, 0.5);
    }
    50% {
        box-shadow: 0 0 40px rgba(236, 72, 153, 0.8);
    }
}

.pulse-glow {
    animation: pulse-glow 2s ease-in-out infinite;
}
