/* --- Premium Header CSS --- */

/* Top Bar */
.ltn__header-top-area {
    background-color: #071c1f !important;
    color: #e5e5e5;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ltn__top-bar-menu ul li a {
    color: #e5e5e5;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.3s;
}

.ltn__top-bar-menu ul li a:hover {
    color: #9E9270;
}

/* --- LOGO, MENU & ALIGNMENT --- */
.ltn__header-middle-area .container>.row {
    align-items: center !important;
}

/* Main Menu Styles */
.ltn__main-menu ul {
    margin: 0;
    padding: 0;
}

.ltn__main-menu ul li a {
    font-size: 16px;
    font-weight: 600;
    color: #071c1f;
    padding: 25px 15px;
    display: block;
}

/* Active State */
.ltn__main-menu ul li.active>a,
.ltn__main-menu ul li:hover>a {
    color: #9E9270;
}

/* --- REDIZAJNIRAN SUBMENU (Dropdown) --- */
.ltn__main-menu ul li ul {
    background: #fff;
    top: 100%;
    margin-top: 0;
    border-radius: 0 0 4px 4px;
    border-top: 3px solid #9E9270;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    min-width: 220px;
}

.ltn__main-menu ul li ul li a {
    font-size: 14px;
    color: #333;
    /* Tamnija boja za bolji kontrast */
    padding: 12px 25px;
    font-weight: 700 !important;
    /* PODEBLJAN SUBMENU TEKST */
    border-bottom: 1px solid #f5f5f5;
    text-transform: none;
}

.ltn__main-menu ul li ul li:hover>a {
    color: #9E9270;
    background: #fdfdfd;
    padding-left: 30px;
}

/* --- DESKTOP ALIGNMENT --- */
@media (min-width: 1200px) {
    .header-menu-column {
        flex-grow: 1;
    }

    .ltn__main-menu>ul {
        display: flex;
        align-items: center;
        width: 100%;
        justify-content: flex-start;
    }

    .ltn__main-menu>ul>li:last-child {
        margin-left: auto !important;
    }
}

/* Kontakt Dugme Stil */
.menu-cta-btn {
    background-color: #9E9270;
    color: #fff !important;
    padding: 12px 30px !important;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 14px !important;
    font-weight: 700 !important;
    line-height: 1;
    display: inline-block;
    transition: all 0.3s ease;
}

.menu-cta-btn:hover {
    background-color: #071c1f;
    color: #fff !important;
    transform: translateY(-2px);
}

/* --- MOBILE STYLES & BOLD TEXT --- */

/* Podebljan tekst u mobilnom meniju */
.ltn__utilize-menu li a {
    font-weight: 700 !important;
    font-size: 16px;
    color: #071c1f;
}

/* Active State za Mobile Menu (NOVO) */
.ltn__utilize-menu li.active>a {
    color: #9E9270 !important;
}

/* Fix za top bar na mobilnom (Email levo, Zastavice desno) */
.mobile-top-bar-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-right {
    display: flex;
    justify-content: flex-end;
}

@media (max-width: 1199px) {

    /* Logo i Burger Meni u istom redu */
    .mobile-header-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .site-logo img {
        max-width: 120px;
    }

    /* Smanjimo font emaila na telefonu da stane */
    .ltn__top-bar-menu ul li a {
        font-size: 12px;
    }
}