/* Global Typography */
body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Scrollbar Hiding */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Glassmorphism Utilities */
.glass-panel {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.glass-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.glass-dark {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Parallax Background */
.parallax-bg {
    background-image: url('https://res.cloudinary.com/dwgattbka/image/upload/v1756981070/IMG-20250828-WA0005_mnsd9x.jpg');
    background-attachment: fixed;
    background-position: center 120px; 
    background-repeat: no-repeat;
    background-size: 80%; 
    background-color: #FFFFFF; 
}

@media (min-width: 768px) {
    .parallax-bg {
        background-size: 400px;
        background-position: center center;
    }
}

/* Audio Visualizer Animation */
.bar {
    width: 4px;
    background: #0ea5e9;
    margin: 0 2px;
    animation: equalize 1s infinite;
    animation-play-state: paused;
}
.playing .bar {
    animation-play-state: running;
}
@keyframes equalize {
    0% { height: 10%; }
    50% { height: 100%; }
    100% { height: 10%; }
}

/* Bar Animation Delays */
.bar:nth-child(1) { animation-delay: -0.4s; }
.bar:nth-child(2) { animation-delay: -0.2s; }
.bar:nth-child(3) { animation-delay: -0.6s; }
.bar:nth-child(4) { animation-delay: -0.8s; }
.bar:nth-child(5) { animation-delay: -0.1s; }

/* Transitions */
.fade-enter {
    opacity: 0;
    transform: translateY(10px);
}
.fade-enter-active {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 300ms ease-out, transform 300ms ease-out;
}