/*
Theme Name: KCB Klon Original
Author: KCB Dev
Description: Finalna verzija teme - 1:1 Replika
Version: 5.0
*/


/* ==========================================================================
   1. UCITAVANJE CUSTOM FONTA (GT Walsheim Pro)
   ========================================================================== */
@font-face {
    font-family: 'GT Walsheim Pro';
    src: url('fonts/GTWalsheimPro-Regular.woff2') format('woff2'),
         url('fonts/GTWalsheimPro-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Ako imas i Bold verziju, otkomentarisi ovo i ubaci fajl: */
/*
@font-face {
    font-family: 'GT Walsheim Pro';
    src: url('fonts/GTWalsheimPro-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}
*/

/* ==========================================================================
   2. PRIMENA NA CEO SAJT (Globalna Tipografija)
   ========================================================================== */
html, body {
    font-family: "GT Walsheim Pro", "Arial", sans-serif !important; /* Tvoj font + fallback */
    font-weight: 300 !important;
    font-size: 1.02rem !important;
    line-height: 1.48 !important;
    color: #000;
    -webkit-font-smoothing: antialiased;
}

/* Resetovanje naslova da naslede font, ali budu boldovani */
h1, h2, h3, h4, h5, h6 {
    font-family: "GT Walsheim Pro", sans-serif !important;
    font-weight: 700; /* Pretpostavljamo da želiš bold naslove */
}





/* ==========================================================================
   1. BASE STYLES (RESET)
   ========================================================================== */
* { box-sizing: border-box; }

html, body {
    margin: 0; padding: 0;
    font-family: 'Space Grotesk', Helvetica, Arial, sans-serif;
    font-weight: normal;
    font-size: 16px;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden; /* Sprečava horizontalni skrol */
}

/* Linkovi */
a { text-decoration: none; color: inherit; transition: color 0.2s; }
a:hover { color: #0000aa !important; fill: #0000aa !important; }

/* Slike i SVG */
img { width: 100%; height: auto; display: block; }
svg { width: 100%; height: auto; fill: #000; }
ul, li { list-style: none; margin: 0; padding: 0; }

/* Kontejner */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* ==========================================================================
   2. HEADER (VERZIJA SA SLIKAMA)
   ========================================================================== */
#header {
    position: relative;
    z-index: 110;
    width: 100%;
    height: 110px;
    margin-bottom: 50px;
}
.container.full-width {
    max-width: none;
}
header > .container .left {
    position: relative;
    z-index: 1;
    float: left;
    margin-left: -62px;
    margin-top: 24px;
}

header > .container .middle {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

header > .container .logo {
    font-size: 0;
}

header > .container > div > div {
    display: table-cell;
    height: 100%;
    vertical-align: middle;
}

#main-menu {
    margin-left: -526px;
    margin-top: 49px;
}


header > .container .right {
    position: relative;
    z-index: 1;
    float: right;
}

header > .container .language-switcher {
    display: inline-block;
    margin-top: 1px;
    margin-right: 30px;
}

header > .container .search-toggle {
    margin-right: 30px;
    font-size: 0;
    cursor: pointer;
}


header > .container .menu-toggle {
    display: none;
}



















#header .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 40px;
    max-width: 100%;
}

/* --- LEVO: LOGO --- */
#header .left {
    width: 180px; /* Dovoljno mesta za logo */
    flex-shrink: 0;
}

/* Stil za sliku logoa */
.custom-logo-img {
    max-width: 160px; /* Maksimalna širina */
    height: auto; /* Visina se prilagođava */
    display: block;
}

/* --- SREDINA: MENI --- */
#header .middle {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

#header .menu {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0; padding: 0;
}

#header .menu li a {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 13px;
    letter-spacing: 1px;
    color: #000;
    padding-bottom: 5px;
    border-bottom: 3px solid transparent;
}

#header .menu li a:hover {
    color: #0000aa;
    border-color: #1a1a1a;
}

/* --- DESNO: ALATI --- */
#header .right {
    width: 180px;
    flex-shrink: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

/* Jezik */
.language-switcher ul {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0; margin: 0;
}
.language-switcher a {
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    color: #999;
}
.language-switcher .active a, 
.language-switcher a:hover {
    color: #000;
    text-decoration: none;
}

/* Ikonica Pretrage (Slika) */
.icon-img {
    width: 20px;
    height: auto;
    display: block;
    cursor: pointer;
}

/* Hamburger (Ostao CSS jer je lakši za animaciju) */
.menu-toggle {
    width: 32px;
    height: 20px;
    position: relative;
    cursor: pointer;
    margin-left: 10px;
}
.menu-toggle .line {
    position: absolute;
    top: 50%; left: 0;
    width: 100%; height: 2px;
    background: #000;
    transform: translateY(-50%);
}
.menu-toggle:before, .menu-toggle:after {
    content: '';
    position: absolute; left: 0;
    width: 100%; height: 2px;
    background: #000;
    transition: 0.3s;
}
.menu-toggle:before { top: 0; }
.menu-toggle:after { bottom: 0; }
.menu-toggle:hover .line, 
.menu-toggle:hover:before, 
.menu-toggle:hover:after {
    background: #0000aa;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    #header .middle { display: none; }
}





/* ==========================================================================
   HEADER BACKGROUND (ŽUTA POZADINA)
   ========================================================================== */

.single .header-background {
    height: 540px;
}

.header-background {
    position: absolute;
    z-index: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 450px;
    background-color: #ffff4d;
	/* Učitavanje slike */
    background-image: url('img/sirmiumart-poz.png');
    
    /* Podešavanja da slika izgleda dobro */
    background-position: center; /* Centriraj sliku */
    background-repeat: repeat; /* Nemoj da ponavljaš sliku */
}




/* ==========================================================================
   3. LISTA PROGRAMA (SIVA TABELA)
   ========================================================================== */
.program-title {
    font-size: 1.8rem !important;
    line-height: 1.1 !important;
    margin-top: 10px !important;
    text-transform: uppercase !important;
}

.article-header {
    margin-bottom: 3px !important;
    padding-bottom: 3px !important;
}





.program-section { padding: 20px 0; }
.block-title h3 { font-size: 2rem; text-transform: uppercase; font-weight: bold; margin-bottom: 30px; }

.event-table ul {
    display: flex; flex-wrap: wrap;
    background-color: #fff;
    border-top: 2px solid #000;
}
.event-table ul li {
    width: 50%;
    display: flex;
    padding: 30px;
    border-bottom: 1px solid #b3b3b3;
    border-right: 1px solid #b3b3b3;
    position: relative;
    box-sizing: border-box;
    transition: background-color 0.2s;
}
.event-table ul li:nth-child(2n) { border-right: none; }
.event-table ul li:hover { background-color: #f5f5f5 !important; }

/* Link preko celog elementa */
.event-table a.overlay-link {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 10;
}

/* Sadržaj unutar liste */
.event-table .left { width: 140px; flex-shrink: 0; font-weight: bold; color: #666; padding-right: 15px; }
.event-table .date { font-size: 14px; color: #000; }
.event-table .time { font-size: 2rem; font-weight: 300; line-height: 1; margin-top: 10px; color: #000; }
.event-table .right { flex-grow: 1; }
.event-table h4 { font-size: 1.2rem; font-weight: bold; margin: 0 0 10px 0; text-transform: uppercase; color: #000; }
.event-table .excerpt { font-size: 14px; color: #444; margin-bottom: 15px; line-height: 1.5; }
.loc-tag { background: #000; color: #fff; padding: 3px 6px; font-size: 11px; text-transform: uppercase; font-weight: bold; }

/* ==========================================================================
   4. SINGLE PAGE (DETALJNA STRANA)
   ========================================================================== */
/* Žuti Header */
.single-yellow-header {
    background-color: #ffff4d;
    padding: 50px 20px;
    text-align: center;
    margin-bottom: 0;
    width: 100%;
}
.super-cat { text-transform: uppercase; letter-spacing: 2px; font-size: 12px; margin-bottom: 15px; display: block; }
.main-title { font-size: 3rem; text-transform: uppercase; margin: 0 0 15px 0; line-height: 1.1; font-weight: bold; }
.header-meta { font-family: 'Times New Roman', serif; font-style: italic; font-size: 1.1rem; }

/* Glavni Layout (Sticky Sidebar) */
.single-content-wrapper { padding: 60px 0; background: #fff; }
.flex-container { display: flex; position: relative; max-width: 1500px; margin: 0 auto; padding: 0 20px; }

/* Social Icons (Levo) */

.social-side {
    position: absolute !important;
    left: -33px !important;
    top: 0px !important;
    width: 40px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
}





.social-side a { display: block; width: 35px; height: 35px; border: 1px solid #000; text-align: center; line-height: 33px; font-size: 12px; font-weight: bold; }
.social-side a:hover { background: #ffff4d; }

/* Grid sa sadržajem */
.program-layout { display: flex; width: 100%; justify-content: space-between; gap: 50px; align-items: stretch; }
.program-text { width: 60%; }
.program-sidebar { width: 35%; position: relative; }

/* Sticky Sidebar */
.sticky-box { position: sticky; top: 50px; }
.poster-image img { width: 100%; border: none; display: block; }
.info-box { background: #f2f2f2; padding: 25px; border-top: 4px solid #000; margin-top: 20px; }
.info-box h3 { text-transform: uppercase; border-bottom: 1px solid #ccc; padding-bottom: 10px; margin-top: 0; font-size: 1.1rem; }
.info-box .row { display: flex; justify-content: space-between; border-bottom: 1px dotted #ccc; padding: 8px 0; font-size: 14px; }
.info-box .row:last-child { border: none; }
.info-box .label { font-weight: bold; color: #666; text-transform: uppercase; font-size: 0.85rem; }
.info-box .value { font-weight: bold; text-align: right; }

/* Tekst Sadržaja */
.content-h2 { text-transform: uppercase; font-size: 2rem; margin-top: 0; line-height: 1.1; border-bottom: 1px solid #000; padding-bottom: 20px; margin-bottom: 30px; }
.content-sub { font-weight: normal; color: #666; margin-bottom: 3px; font-size: 1.1rem; margin-top: -5px; }
.back-link { display: inline-block; margin-top: 40px; font-weight: bold; text-decoration: underline; }

/* Galerija Slider */
.gallery-section { background: #000; padding: 0; border-top: 10px solid #fff; border-bottom: 10px solid #fff; }
.gallery-scroll { display: flex; overflow-x: auto; height: 400px; scrollbar-width: none; }
.gallery-scroll::-webkit-scrollbar { display: none; }
.gallery-item { flex: 0 0 auto; height: 100%; border-right: 2px solid #fff; }
.gallery-item img { height: 100%; width: auto; object-fit: cover; }

/* Newsletter */
.newsletter-area { background: #f2f2f2; padding: 50px 0; text-align: center; margin-top: 0; }
.newsletter-area h3 { text-transform: uppercase; margin-bottom: 20px; font-weight: bold; }
.newsletter-area form { max-width: 500px; margin: 0 auto; display: flex; border: 2px solid #000; background: #fff; }
.newsletter-area input { flex: 1; padding: 15px; border: none; background: #fff; font-size: 1rem; outline: none; }
.newsletter-area button { background: transparent; border: none; border-left: 1px solid #000; padding: 0 20px; font-size: 1.5rem; cursor: pointer; }
.newsletter-area button:hover { background: #ffff4d; }

/* ==========================================================================
   5. RESPONSIVE
   ========================================================================== */
@media (max-width: 900px) {
    /* Header */
    #header .middle { display: none; }
    
    /* Liste */
    .event-table ul li { width: 100%; border-right: none; flex-direction: column; }
    .event-table .left { margin-bottom: 10px; }
    
    /* Single Page */
    .program-layout { flex-direction: column; }
    .program-text, .program-sidebar { width: 100%; }
    .program-sidebar { order: -1; margin-bottom: 30px; }
    .social-side { display: none; }
    .gallery-scroll { height: 250px; }
    .single-yellow-header .main-title { font-size: 2rem; }
}


/* === KCB SLIDER REPLIKA === */

/* Glavni kontejner - Da ide od ivice do ivice */
.single-post #main-block {
    width: 100%;
    overflow: hidden;
    background: #fff;
}

/* Podešavanje visine slika (Ključno za KCB izgled) */
.single-post #main-block .slick-gallery .slick-item {
    margin: 0 1vw; /* Razmak između slika */
    opacity: 0.6; /* Prozirnost za slike koje nisu u fokusu */
    transition: opacity 0.3s ease;
    outline: none; /* Sklanja plavi okvir na klik */
    height: 500px; /* FIKSNA VISINA SLIDERA */
}

.single-post #main-block .slick-gallery .slick-item img {
    height: 100%; /* Slika popunjava visinu */
    width: auto;  /* Širina se prilagođava da ne bude razvučena */
    display: block;
}

/* Aktivna slika (Srednja) */
.single-post #main-block .slick-gallery .slick-center {
    opacity: 1; /* Potpuno vidljiva */
    transform: scale(1.05); /* Blagi zum (opciono, KCB nema, ali lepo izgleda) */
}

/* Strelice (Arrows) */
.slick-prev, .slick-next {
    z-index: 100;
    width: 40px;
    height: 40px;
}
.slick-prev { left: 50px; }
.slick-next { right: 50px; }

.slick-prev:before, .slick-next:before {
    font-size: 40px;
    color: #000; /* Crne strelice */
    opacity: 1;
}

/* Tačkice (Dots) dole */
.slick-dots {
    bottom: -30px;
}
.slick-dots li button:before {
    font-size: 12px;
    color: #000;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .single-post #main-block .slick-gallery .slick-item {
        height: 300px; /* Manja visina na tabletu */
    }
}

@media (max-width: 600px) {
    .single-post #main-block .slick-gallery .slick-item {
        height: 200px; /* Još manja na telefonu */
    }
    .slick-prev { left: 10px; }
    .slick-next { right: 10px; }
}

.slick-slide img {
    width: auto;
    height: 30vw;
    max-height: 326px;
}


/* === ARHIVA PRETRAGA === */
.archive-search-wrapper {
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.archive-form {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: flex-end;
}

.form-group {
    flex: 1;
    min-width: 200px;
}

.form-group.submit-group {
    flex: 0 0 auto; /* Dugme ne raste */
}

/* Paginacija Stilovi */
.kcb-pagination ul {
    display: inline-flex;
    gap: 10px;
    list-style: none;
}

.kcb-pagination a, .kcb-pagination span {
    display: block;
    padding: 10px 15px;
    border: 1px solid #000;
    color: #000;
    text-decoration: none;
    font-weight: bold;
}

.kcb-pagination .current {
    background: #000;
    color: #fff;
}

.kcb-pagination a:hover {
    background: #ffff4d;
}

/* Mobilni Arhiva */
@media (max-width: 768px) {
    .archive-form { flex-direction: column; align-items: stretch; }
    .form-group.submit-group { margin-top: 10px; }
    .form-group button { width: 100%; }
}


/* ==========================================================================
   FOOTER STYLE (KCB REPLIKA)
   ========================================================================== */

#footer {
    background-color: #1a1a1a; /* Crna pozadina */
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   NEWSLETTER (TVOJ DIZAJN + KCB POZICIJA)
   ========================================================================== */

#footer {
    position: relative;
    background-color: #1a1a1a;
    margin-top: 150px; /* Prostor da newsletter "zajaše" footer */
    z-index: 1;
}

/* Kontejner - Pozicioniranje kao na KCB */
.newsletter {
    background-color: #f2f2f2;
    padding: 80px 60px;
    text-align: center;
    
    /* Centriranje i širina */
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    
    /* Podizanje iznad footera */
    position: relative; 
    top: -80px; 
    margin-bottom: -80px;
    z-index: 10;
}

.newsletter .block-title h3 {
    font-size: 24px;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 30px;
    color: #000;
}

/* Forma */
.newsletter-form {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
    width: 100%;
}

/* Input Polja - TVOJ STIL (deblji okvir) */
.newsletter input[type="text"],
.newsletter input[type="email"] {
    flex: 1;
    width: 100%;
    padding: 18px 20px; /* Tvoj padding */
    border: 3px solid #000; /* Tvoj deblji okvir */
    background: transparent;
    font-size: 16px;
    font-style: normal; /* Bez italika */
    color: #000;
    box-sizing: border-box;
    outline: none;
}

.newsletter input::placeholder {
    color: #666;
    font-style: normal;
}

/* Red za Email i Dugme */
.form-row.full {
    position: relative;
    display: flex;
    align-items: stretch;
}


/* Dugme - Popravljena linija i centriranje */
.newsletter button {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 70px; /* Malo šire da strelica ima mesta */
    background: transparent;
    border: none; /* Sklanjamo standardni border */
    padding: 0;
    cursor: pointer;
    
    /* Centriranje strelice */
    display: flex;
    align-items: center;
    justify-content: center;
    
    /* Stil fonta za strelicu */
    font-size: 24px;
    font-weight: bold;
    color: #000;
}

/* Nova vertikalna linija (sa razmakom) */
.newsletter button::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1px;    /* Razmak od gornje ivice */
    bottom: 1px; /* Razmak od donje ivice */
    width: 1px;  /* Debljina linije */
    background-color: #000;
}

.newsletter button:hover {
    background-color: rgba(0,0,0,0.05); /* Blagi hover efekat */
}

/* Mobilni */
@media (max-width: 768px) {
    .newsletter {
        width: 100%;
        padding: 40px 20px;
        top: 0;
        margin-bottom: 0;
        margin-top: 0;
    }
    #footer { margin-top: 0; }
    
    .form-row { flex-direction: column; gap: 20px; }
    
    /* Na mobilnom dugme ide ispod */
    .newsletter button {
        position: relative;
        width: 100%;
        height: 60px;
        border-left: 3px solid #000;
        border-top: none; 
    }
}

/* DONJI DEO FOOTERA (CRNI) */
.bottom-footer {
    padding: 100px 0 50px 0; /* Puno paddinga gore jer je newsletter preko */
    color: #999;
    font-size: 14px;
}

.grid-footer {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.col-footer {
    flex: 1;
    min-width: 250px;
}

.col-footer h3 {
    color: #fff;
    text-transform: uppercase;
    font-size: 18px;
    margin-bottom: 20px;
}

/* Footer Meni */
.footer-menu-list {
    list-style: none;
    margin: 0; padding: 0;
}
.footer-menu-list li a {
    display: block;
    color: #999;
    text-transform: uppercase;
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: bold;
}
.footer-menu-list li a:hover { color: #ffff4d; }

/* Copyright Traka */
.bottom {
    border-top: 1px solid #666;
    padding: 30px 0;
    background: #1a1a1a;
    color: #999;
}

.bottom-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links ul {
    display: flex;
    list-style: none;
    gap: 0;
    margin: 0;
    padding: 0;
}

.social-links li {
    border-right: 1px solid #666;
    padding: 0 20px;
}
.social-links li:first-child { border-left: 1px solid #666; }

.social-links a:hover svg { fill: #ffff4d !important; }

/* RESPONSIVE */
@media (max-width: 900px) {
    .grid-footer { flex-direction: column; text-align: center; }
    .newsletter { margin-top: 0; padding: 40px 20px; }
    .form-row { flex-direction: column; }
    .newsletter button { border-left: none; border-top: 3px solid #000; width: 100%; padding: 15px; }
    .bottom-grid { flex-direction: column; gap: 20px; }
}


.program-layout-grid, .program-layout-page {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: stretch !important;
    max-width: 1100px !important;
    margin: 0 auto !important;
    padding: 4% 4% !important;
    gap: 40px !important;
    position: relative !important;
    background-color: #ffffff;
}

.program-text-page {
    width: 100% !important;
}



/* BARBA CSS */
body {
    overflow-x: hidden; /* Sprečava skrol bar tokom animacije */
}

/* Opciono: loader preko celog ekrana ako želiš MSUB efekat zavese */
.transition-curtain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffff4d; /* KCB Žuta */
    z-index: 9999;
    transform: translateY(100%); /* Sakriveno dole */
    pointer-events: none;
}

/* === BARBA TRANSITION CURTAIN === */
.transition-curtain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh; /* Preko celog ekrana */
    background-color: #0000aa; /* MSUB PLAVA BOJA */
    z-index: 99999; /* Iznad svega */
    transform: translateY(100%); /* Inicijalno sakrivena DOLE */
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none; /* Da ne smeta dok je sakrivena */
}

.transition-logo {
    width: 150px;
    height: auto;
    opacity: 0; /* Logo je nevidljiv dok zavesa ne pokrije ekran */
}

.transition-logo svg {
    fill: #fff; /* Logo je beo na plavoj pozadini */
    width: 100%;
    height: auto;
}



/* ==========================================================================
   NOVI HEADER DIZAJN (LOGO U SREDINI)
   ========================================================================== */

#header {
    width: 100%;
    height: 120px; /* Malo viši header za logo */
    position: absolute;
    top: 0; left: 0;
    z-index: 100;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: center; /* Centriramo ceo sadržaj */
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    max-width: 1600px; /* Ograničenje širine */
}

/* 1. MENIJI (LEVO I DESNO) */
.nav-left, .nav-right {
    flex: 1; /* Zauzimaju jednako mesta */
}

.nav-left { text-align: right; padding-right: 40px; }
.nav-right { text-align: left; padding-left: 40px; }

/* Stil linkova */
.split-menu {
    display: inline-flex;
    list-style: none;
    gap: 30px;
    margin: 0; padding: 0;
}

.split-menu li a {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    color: #fff; /* Bela boja jer je na tamnoj pozadini (slajderu) */
    text-decoration: none;
    position: relative;
    padding-bottom: 5px;
}

/* Hover efekat (žuta linija) */
.split-menu li a:after {
    content: '';
    position: absolute; bottom: 0; left: 0;
    width: 0%; height: 2px;
    background: #ffff4d;
    transition: 0.3s;
}
.split-menu li a:hover:after { width: 100%; }
.split-menu li a:hover { color: #ffff4d !important; }

/* 2. LOGO (CENTAR) */
.logo-center {
    flex: 0 0 auto; /* Ne skupljaj se, ne širi se */
    position: relative;
    z-index: 10;
}

.main-logo {
    height: 80px; /* Visina logoa */
    width: auto;
    display: block;
    transition: transform 0.3s;
}
.main-logo:hover { transform: scale(1.05); }

/* 3. ALATI (JEZIK I HAMBURGER) - APSOLUTNO DESNO */
.header-tools {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Prilagođavanje boje za jezik */
.language-switcher ul li a { color: #fff; font-weight: bold; font-size: 12px; text-transform: uppercase; margin-left: 10px;}
.language-switcher ul li a:hover, .language-switcher ul li.active a { color: #ffff4d; }

/* Hamburger (beli) */
.menu-toggle .line, .menu-toggle:before, .menu-toggle:after { background: #fff; }
.menu-toggle:hover .line, .menu-toggle:hover:before, .menu-toggle:hover:after { background: #ffff4d; }

/* --- RESPONSIVE (MOBILNI) --- */
@media (max-width: 1024px) {
    /* Na tabletu i mobilnom sakrivamo split menije i prikazujemo samo logo i hamburger */
    .nav-left, .nav-right { display: none; }
    
    .header-inner { justify-content: space-between; } /* Razmakni logo i alate */
    
    .logo-center { margin-left: 0; }
    
    /* Ovde bi trebalo dodati logiku za otvaranje mobilnog menija na klik */
}