/* Custom Styles for JAVNX DJ Website */

:root {
    --color-gold: #C5A059;
    --color-gold-light: #E6C687;
    --color-gold-dark: #9A7734;
    --color-bg: #070709;
}

/* Typography Customization */
body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--color-bg);
    color: #e5e5e7;
    overflow-x: hidden;
}

h1, h2, h3, .font-serif {
    font-family: 'Playfair Display', serif;
}

/* Custom Gold Utilities */
.text-gold {
    color: var(--color-gold);
}

.bg-gold {
    background-color: var(--color-gold);
}

.border-gold {
    border-color: var(--color-gold);
}

/* Gold Button Glow Effect */
.btn-gold-glow {
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.25);
    transition: all 0.3s ease;
}

.btn-gold-glow:hover {
    box-shadow: 0 0 30px rgba(197, 160, 89, 0.5);
    transform: translateY(-2px);
}

/* Glassmorphism Card Style */
.glass-card {
    background: rgba(18, 18, 22, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

/* Keyframe Animations */
@keyframes spinSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.spin-slow {
    animation: spinSlow 20s linear infinite;
    animation-play-state: paused;
}

.spin-slow.playing {
    animation-play-state: running;
}

@keyframes pulseSlow {
    0%, 100% { transform: scale(1); opacity: 0.25; }
    50% { transform: scale(1.05); opacity: 0.35; }
}

.animate-pulse-slow {
    animation: pulseSlow 8s ease-in-out infinite;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #070709;
}

::-webkit-scrollbar-thumb {
    background: #27272a;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold);
}

/* Cotizador Interactivo Active States */
.active-wizard-btn {
    border-color: var(--color-gold) !important;
    background-color: rgba(197, 160, 89, 0.15) !important;
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.2);
}

/* Audio Player Track Active State */
.active-track {
    border-color: rgba(197, 160, 89, 0.6) !important;
    background-color: rgba(255, 255, 255, 0.08) !important;
}

/* Smooth Focus Effects */
input:focus, select:focus, textarea:focus {
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.2);
}
