/* 1. SYSTEM PRZEJŚĆ */
html { background-color: #162130 !important; }
body { background-color: #162130; opacity: 0; animation: simpleFade 0.3s ease-in forwards; font-family: 'Roboto', sans-serif; overflow-x: hidden; width: 100%; color: #333; line-height: 1.6; margin: 0; padding: 0; }

@keyframes simpleFade { from { opacity: 0; } to { opacity: 1; } }

:root { --dark: #162130; --red: #c00d0d; --steel: #848796; }

* { box-sizing: border-box; }

/* 2. NAWIGACJA - NAPRAWIONO BŁĄD KLAMRY */
.container { max-width: 1400px; margin: 0 auto; padding: 0 20px; width: 100%; }
.navbar { background: #fff; padding: 15px 0; border-bottom: 3px solid var(--red); position: sticky; top: 0; z-index: 1000; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.nav-flex { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: 'Montserrat'; font-weight: 900; font-size: 24px; color: var(--dark); text-decoration: none; text-transform: uppercase; }
.logo span { color: var(--red); }
.nav-links { list-style: none; display: flex; gap: 25px; }
.nav-links a { text-decoration: none; color: var(--dark); font-family: 'Montserrat'; font-weight: 700; font-size: 15px; text-transform: uppercase; }
.nav-links a.active { color: var(--red); }

/* 3. WHATSAPP */
.whatsapp-float { position: fixed; bottom: 70px; right: 70px; width: 100px; height: 100px; display: flex; align-items: center; justify-content: center; z-index: 9999; transition: 0.3s; text-decoration: none; background: none; border: none; }
.whatsapp-float img { width: 100%; height: auto; object-fit: contain; filter: drop-shadow(0 5px 10px rgba(0,0,0,0.3)); }
.whatsapp-float:hover { transform: scale(1.1); }

/* 4. TŁUMACZ - TERAZ BĘDZIE WIDOCZNY */
#google_translate_element { display: block !important; visibility: visible !important; z-index: 2147483647 !important; }
.language-switcher { position: fixed; top: 20px; right: 20px; z-index: 2147483647 !important; }
.lang-current { background: #1a1a1a; color: white; border: 2px solid #e61a1a; padding: 8px 15px; border-radius: 8px; cursor: pointer; display: flex; align-items: center; gap: 10px; font-weight: bold; }
.lang-dropdown { display: none; position: absolute; top: 45px; right: 0; background: white; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.5); min-width: 150px; overflow: hidden; }
.lang-dropdown a { display: flex; align-items: center; gap: 10px; padding: 12px 15px; color: #333; text-decoration: none; font-size: 14px; }
.lang-dropdown a:hover { background: #f1f1f1; }
.lang-dropdown img, .lang-current img { width: 22px; height: auto; }

/* 5. MOBILNE */
@media (max-width: 768px) {
    .nav-flex { flex-direction: column; gap: 15px; padding: 10px 0; }
    .nav-links { flex-wrap: wrap; justify-content: center; gap: 8px; }
    .nav-links a { font-size: 10px; padding: 5px; }
    .whatsapp-float { bottom: 20px; right: 20px; width: 60px; height: 60px; }
    .language-switcher { top: 10px; right: 10px; }
}
