/*
|--------------------------------------------------------------------------
| Musical Navigation Sounds & Styles
|--------------------------------------------------------------------------
*/

/* Musical Navigation Button Styles */
.musical-nav-btn {
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.musical-nav-btn:hover {
    animation: musicalBounce 0.6s ease-in-out;
}

@keyframes musicalBounce {
    0%, 100% { transform: translateY(-2px) scale(1.05); }
    50% { transform: translateY(-5px) scale(1.1); }
}

/* Language Dropdown Styles - No Flags */
.language-dropdown {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.language-dropdown .dropdown-item {
    font-family: 'Fredoka', sans-serif !important;
    color: #FFFFFF !important;
    padding: 12px 20px;
    transition: all 0.3s ease;
    border-radius: 10px;
    margin: 5px;
    text-align: center;
}

.language-dropdown .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #FFD700 !important;
    transform: scale(1.05);
}

/* Sound Effects Classes */
.sound-effect {
    position: relative;
}

.sound-effect::after {
    content: '♪';
    position: absolute;
    top: -5px;
    right: -10px;
    font-size: 12px;
    color: #FFD700;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sound-effect:hover::after {
    opacity: 1;
    animation: noteFloat 1s ease-in-out infinite;
}

@keyframes noteFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}
