:root { 
    --primary-gold: #d4af37; 
    --secondary-red: #8a1c1c; 
    --bg-dark: #121212; 
    --bg-card: #1e1e1e; 
    --text-light: #e0e0e0; 
    --text-muted: #aaa; 
}

/* Fejléc (Header & Nav) Stílusok */
header nav { 
    background-color: rgba(0, 0, 0, 0.95); 
    padding: 15px 0; 
    position: fixed; 
    width: 100%; 
    top: 0; 
    left: 0;
    z-index: 1000; 
    border-bottom: 2px solid var(--primary-gold); 
    box-shadow: 0 2px 10px rgba(0,0,0,0.5); 
}
.container { 
    width: 90%; 
    margin: auto; 
    max-width: 1200px; 
}
.nav-content { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}
.logo { 
    font-size: 26px; 
    font-weight: bold; 
    color: var(--primary-gold); 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    text-decoration: none;
}
.logo img {
    height: 65px;
    width: auto;
    display: block;
}
.nav-links { 
    display: flex; 
    align-items: center; 
}
.nav-links a { 
    color: #fff; 
    text-decoration: none; 
    margin-left: 20px; 
    font-weight: 500; 
    cursor: pointer; 
    transition: color 0.3s; 
    font-size: 0.95rem; 
}
.nav-links a:hover { 
    color: var(--primary-gold); 
}

/* Lábléc (Footer) Stílusok */
footer { 
    text-align: center; 
    padding: 40px 20px; 
    color: #777; 
    background: #080808; 
    border-top: 1px solid #222; 
    margin-top: 50px;
}
.footer-links a { 
    color: #aaa; 
    text-decoration: none; 
    margin: 0 10px; 
    font-size: 0.9rem; 
    transition: 0.3s; 
}
.footer-links a:hover { 
    color: var(--primary-gold); 
}

/* Reszponzív beállítások */
@media (max-width: 768px) {
    .nav-content { 
        flex-direction: column; 
    }
    .nav-links { 
        margin-top: 15px; 
        flex-wrap: wrap; 
        justify-content: center; 
    }
    .nav-links a { 
        margin: 5px 10px; 
    }
}