/* Zde ponechejte veškeré CSS */
.animated-menu .fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1.0s; }
.delay-6 { animation-delay: 1.2s; }
.delay-7 { animation-delay: 1.4s; }
.delay-8 { animation-delay: 1.6s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-link {
    font-size: 1.2rem;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: white !important;
}

#lang-dropdown {
    display: none;
    position: absolute;
    background: white;
    border: 1px solid #ccc;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 130px;
    z-index: 1000;
}
#lang-dropdown li {
    padding: 6px 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}
#lang-dropdown li:hover {
    background-color: #f0f0f0;
}
#lang-switcher {
    position: relative;
    display: inline-block;
}
#lang-btn {
    cursor: pointer;
    user-select: none;
}
.animate-slide-down {
    animation: slideDown 0.5s ease forwards;
}
@keyframes slideDown {
    0% {opacity: 0; transform: translateY(-10px);}
    100% {opacity: 1; transform: translateY(0);}
}

        .animate-slide-down {
            animation: slideDown 0.9s ease forwards;
        }
        @keyframes slideDown {
            0% { opacity: 0; transform: translateY(-10px); }
            100% { opacity: 1; transform: translateY(0); }
        }
		
		
