:root {
    --primary: #002D51;    /* Ciemny granat */
    --accent: #FF6600;     /* Pomarańcz Szpontów */
    --light: #f8f9fa;
    --text: #333;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Montserrat', sans-serif; background: var(--light); color: var(--text); }

/* NAWIGACJA */
.navbar { background: white; box-shadow: 0 2px 10px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 1000; }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 15px 20px; display: flex; justify-content: space-between; align-items: center; }

.logo { font-weight: 900; font-size: 1.4rem; color: var(--primary); text-decoration: none; }
.logo span { color: var(--accent); }

.nav-links { display: flex; gap: 20px; align-items: center; }
.nav-links a { text-decoration: none; color: var(--primary); font-weight: 700; font-size: 0.9rem; transition: 0.3s; }
.nav-links a:hover { color: var(--accent); }

/* Przycisk wyloguj */
.nav-logout { color: #ff4444 !important; }

/* KONTENER GŁÓWNY */
.content { max-width: 1200px; margin: 30px auto; padding: 0 20px; }

/* RESPONSIVE (TELEFON) */
@media (max-width: 768px) {
    .nav-container { flex-direction: column; gap: 10px; text-align: center; }
    .nav-links { font-size: 0.8rem; gap: 10px; flex-wrap: wrap; justify-content: center; }
}