.navbar {
    background-color: #314152;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    position: fixed;
    top: 0;
    width: 100%;
    box-sizing: border-box;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    animation: slideDownNav 0.8s ease-out;
}

.navbar .logo a {
    font-family: 'Cinzel', serif;
    color: #c2a370;
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 2px;
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin-left: 35px;
    opacity: 0;
    animation: fadeInUp 0.5s ease-out forwards;
}

/* Késleltetés a menüpontoknak, hogy egymás után ússzanak be */
.nav-links li:nth-child(1) { animation-delay: 0.2s; }
.nav-links li:nth-child(2) { animation-delay: 0.3s; }
.nav-links li:nth-child(3) { animation-delay: 0.4s; }
.nav-links li:nth-child(4) { animation-delay: 0.5s; }

.nav-links a {
    color: #c2a370;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.nav-links a:hover {
    color: #ffffff; /* Opcionális: fehérre váltás hovernél a jobb láthatóságért */
}