@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background: #1C2526; /* Black base */
}

/* Glassmorphism effect */
.glass {
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
    backdrop-filter: blur(20px);
    border: 1px solid rgba(232, 212, 164, 0.2); /* White gold border */
}

/* Glow effect */
.glow {
    box-shadow: 0 0 20px rgba(184, 115, 51, 0.3); /* Copper glow */
}

/* Pulse animation */
.pulse-glow {
    animation: pulseGlow 2s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
    from { box-shadow: 0 0 20px rgba(184, 115, 51, 0.3); }
    to { box-shadow: 0 0 30px rgba(184, 115, 51, 0.6); }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(28, 37, 38, 0.1); /* Black track */
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #B87333, #E8D4A4); /* Copper to white gold */
    border-radius: 4px;
}

/* Hover effects */
.nav-item {
    position: relative;
    overflow: hidden;
}

.nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(232, 212, 164, 0.2), transparent); /* White gold shine */
    transition: left 0.5s;
}

.nav-item:hover::before {
    left: 100%;
}

/* Mobile icon animations */
.mobile-icon {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-icon:hover {
    transform: scale(1.1) rotate(5deg);
}

/* Dropdown animations */
.dropdown-enter {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
}

.dropdown-enter-active {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}