/* ==========================================================================
   1. RESET I OSNOVNE POSTAVKE
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #08080a;
    color: #ffffff;
    overflow-x: hidden;
}

/* ==========================================================================
   2. TOP MINI TRAKA (POTPUNO UKLONJENA IZ LAYOUTA)
   ========================================================================== */
.top-info-bar, .top-container {
    display: none !important;
}

/* ==========================================================================
   3. KONAČNI RESTRUKTURIRANI NAV BAR (POPRAVLJEN DESKTOP PRIKAZ)
   ========================================================================== */
.main-header {
    position: absolute !important; 
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 120px !important;
    padding: 0 8% !important; 
    z-index: 100 !important;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: row !important; 
    justify-content: space-between !important; 
    align-items: center !important; 
    background: linear-gradient(to bottom, 
                rgba(5, 5, 7, 1) 0%, 
                rgba(5, 5, 7, 0.90) 45%,
                rgba(5, 5, 7, 0.50) 75%,
                rgba(5, 5, 7, 0) 100%) !important;
}

.logo-wrapper {
    display: inline-flex !important;
    align-items: center !important;
    gap: 20px !important; 
    text-decoration: none !important;
    flex-shrink: 0 !important;
}

.logo-image {
    height: 85px !important; 
    width: auto !important;
    object-fit: contain !important;
    display: block !important;
}

.logo-title-text {
    font-family: 'Bodoni Moda', serif !important;
    font-size: 1.4rem !important; 
    font-weight: 400 !important;
    color: #ffffff !important;
    letter-spacing: 3px !important;
    text-transform: uppercase !important;
    display: inline-block !important;
    line-height: 1 !important;
}

.logo-gold-text {
    color: #d4af37 !important; 
    font-size: 0.85rem !important; 
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-weight: 600 !important;
    margin-left: 2px !important;
}

.nav-menu {
    display: flex !important;
    flex-direction: row !important; 
    align-items: center !important;
    gap: 40px !important; 
    margin: 0 auto !important;
}
.nav-menu a {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    color: #ffffff !important; 
    text-decoration: none !important;
    font-size: 0.85rem !important; 
    font-weight: 600 !important; 
    text-transform: uppercase !important;
    letter-spacing: 2px !important; 
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9) !important; 
    transition: color 0.4s ease-in-out, text-shadow 0.4s ease-in-out, transform 0.3s ease !important;
    display: inline-block !important;
}

.nav-menu a:hover, 
.nav-menu a.active {
    color: #d4af37 !important; 
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.65), 
                 0 0 22px rgba(212, 175, 55, 0.45) !important;
    transform: translateY(-1px) !important; 
}

.nav-contact-holder {
    display: flex !important;
    flex-direction: row !important; 
    align-items: center !important; 
    gap: 25px !important; 
    flex-shrink: 0 !important;
}
.lang-switcher {
    display: flex !important;
    flex-direction: column !important; 
    align-items: center !important;
    gap: 4px !important;
}

.lang-link {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 0.75rem !important; 
    font-weight: 600 !important;
    color: #666666 !important; 
    text-decoration: none !important;
    letter-spacing: 1px !important;
    line-height: 1.2 !important;
    transition: color 0.4s ease-in-out, text-shadow 0.4s ease-in-out !important;
}

.lang-link.active,
.lang-link:hover {
    color: #d4af37 !important; 
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.6) !important;
}

.nav-btn-luxury {
    box-sizing: border-box !important;
    height: 44px !important; 
    padding: 0 28px !important; 
    background: rgba(255, 255, 255, 0.03) !important; 
    border: 1px solid rgba(255, 255, 255, 0.25) !important; 
    border-radius: 0px 15px 0px 15px !important; 
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    color: #ffffff !important;
    font-size: 0.8rem !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    text-decoration: none !important;
    transition: all 0.4s ease-in-out !important;
}

.nav-btn-luxury:hover {
    background-color: #ffffff !important;
    border-color: #ffffff !important;
    color: #000000 !important;
    border-radius: 15px 0px 15px 0px !important; 
    transform: translateY(-2px) !important;
}

/* ==========================================================================
   4. OPTIMIZACIJA ZA MOBITELE I TABLETE (MEDIA QUERY)
   ========================================================================== */
@media (max-width: 991px) {
    .main-header {
        height: auto !important; /* Skidamo fiksnu visinu da se meni može raširiti */
        flex-direction: column !important; /* Slažemo sve vertikalno */
        padding: 20px 4% !important;
        gap: 20px !important;
        background: rgba(5, 5, 7, 0.98) !important; /* Čvršća pozadina na mobitelu */
    }

    .logo-wrapper {
        flex-direction: column !important; /* Logo i tekst idu jedan ispod drugog */
        gap: 8px !important;
    }

    .logo-image {
        height: 60px !important; /* Smanjen logo za ekran mobitela */
    }

    .logo-title-text {
        font-size: 1.1rem !important; /* Manji font za naziv */
        text-align: center;
    }

    .nav-menu {
        flex-wrap: wrap !important; /* Ako nema mjesta, linkovi idu u novi red */
        justify-content: center !important;
        gap: 15px 25px !important; /* Manji razmak na telefonu */
    }

    .nav-menu a {
        font-size: 0.75rem !important; /* Malo manja slova za bolji prostor */
    }

    .nav-contact-holder {
        width: 100% !important;
        justify-content: center !important; /* Centriramo jezike i gumb na dnu menija */
        gap: 20px !important;
    }
}

/* ==========================================================================
   4. HERO SEKCIJA (POZADINA I AKCIJE)
   ========================================================================== */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0 8%;
    /* KLJUČNO RJEŠENJE: Sprječava da se crna pozadina donje sekcije podvlači i dodatno tamni video pri skrolanju */
    overflow: hidden; 
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Prvi gradijent drži mrak lijevo za slova, a drugi (vertikalni) pravi masivnu crnu maglu na dnu koja potpuno spaja video s pozadinom ispod */
    background: linear-gradient(90deg, rgba(8,8,10,0.85) 0%, rgba(8,8,10,0.55) 45%, rgba(8,8,10,0.1) 100%),
                linear-gradient(to bottom, rgba(8,8,10,0) 50%, rgba(8,8,10,0.5) 75%, rgba(8,8,10,1) 100%);
    z-index: 2;
}
/* ==========================================================================
   5. HERO SADRŽAJ I PREMIUM GUMBI
   ========================================================================== */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    margin-top: 40px;
}

.hero-tagline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: #d4af37;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.gold-dot {
    width: 6px;
    height: 6px;
    background-color: #d4af37;
    border-radius: 50%;
    display: inline-block;
}

.hero-title {
    font-family: 'Bodoni Moda', serif !important; /* POPRAVAK: Osigurana stabilna kohezija s novim fontom iz HTML-a */
    font-size: 4.6rem;
    font-weight: 300;
    line-height: 1.05;
    color: #ffffff;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.hero-subtext {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 300;
    font-size: 0.90rem;
    color: #d0d0d0;
    line-height: 1.8;
    letter-spacing: 0.5px;
    margin-bottom: 40px;
    max-width: 620px;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

/* ZAOŠTRENI PRIMARNI ZLATNI GUMB S PULSIRANJEM */
.btn-orange-stone {
    background: #d4af37; 
    color: #08080a !important; 
    border: 1px solid #d4af37;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    padding: 16px 36px;
    display: inline-flex;
    align-items: center;
    transition: all 0.4s ease-in-out;
    border-radius: 0px 25px 0px 25px; /* Geometrijski klesani potpis */
    margin-right: -5px; 
    animation: goldPulse 3s infinite ease-in-out;
}

.btn-orange-stone:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: #000000 !important;
    border-radius: 25px 0px 25px 0px; /* Kontra rotacija šiljaka */
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.5); 
}

/* PROZIRNI SEKUNDARNI GUMB */
.btn-white-stone {
    background: rgba(255, 255, 255, 0.05); 
    border: 1px solid rgba(255, 255, 255, 0.3); 
    color: #ffffff !important;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    padding: 16px 36px;
    display: inline-flex;
    align-items: center;
    transition: all 0.4s ease-in-out;
    border-radius: 25px 0px 25px 0px; 
    animation: whitePulse 3s infinite ease-in-out;
}

.btn-white-stone:hover {
    border-color: #d4af37;
    color: #d4af37 !important; 
    background: rgba(212, 175, 55, 0.05);
    border-radius: 0px 25px 0px 25px; 
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.25);
}

/* ==========================================================================
   OPTIMIZACIJA HERO SEKCIJE ZA MOBITELE (MEDIA QUERY)
   ========================================================================== */
@media (max-width: 991px) {
    .hero-section {
        height: auto !important; /* Mijenjamo u auto da se prilagodi visini elemenata na mobitelu */
        min-height: 100vh !important; /* Ipak drži minimalno cijeli ekran ako ima malo teksta */
        padding: 160px 5% 60px 5% !important; /* Povećan gornji padding da sadržaj ne upadne pod vertikalni meni */
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .video-overlay {
        /* Na mobitelu mijenjamo gradijent u potpuno vertikalni jer tekst ide preko cijele širine ekrana */
        background: linear-gradient(to bottom, 
                    rgba(8,8,10,0.85) 0%, 
                    rgba(8,8,10,0.70) 50%, 
                    rgba(8,8,10,1) 100%) !important;
    }

    .hero-content {
        margin-top: 0 !important;
        text-align: center !important; /* Centriramo sav tekst na mobitelu za premium izgled */
        width: 100% !important;
    }

    .hero-tagline {
        justify-content: center !important; /* Centriranje zlatne tačke i teksta */
        font-size: 0.75rem !important;
    }

    .hero-title {
        font-size: 2.3rem !important; /* Drastično smanjen font da "STIL KOJI TRAJE!" stane u dva ili tri reda */
        line-height: 1.2 !important;
        margin-bottom: 20px !important;
    }

    .hero-subtext {
        font-size: 0.85rem !important;
        line-height: 1.6 !important;
        margin-bottom: 35px !important;
        margin-left: auto !important;
        margin-right: auto !important; /* Centriranje bloka teksta */
    }

    .hero-actions {
        flex-direction: column !important; /* Gumbi idu jedan ispod drugog */
        gap: 15px !important;
        width: 100% !important;
        max-width: 320px !important; /* Da gumbi ne budu preširoki na mobitelu */
        margin: 0 auto !important; /* Centriranje čitavog bloka s gumbima */
    }

    .btn-orange-stone, .btn-white-stone {
        width: 100% !important; /* Gumbi zauzimaju punu širinu svog kontejnera (320px) */
        justify-content: center !important; /* Tekst unutar gumba ide u sredinu */
        margin-right: 0 !important;
        padding: 14px 28px !important; /* Malo ugodniji padding za mobitel */
        font-size: 0.78rem !important;
    }
}

/* ==========================================================================
   6. LUKSUZNE PULSIRAJUĆE ANIMACIJE GUMBA
   ========================================================================== */
@keyframes goldPulse {
    0% { box-shadow: 0 0 0px rgba(212, 175, 55, 0); }
    50% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.6); }
    100% { box-shadow: 0 0 0px rgba(212, 175, 55, 0); }
}

@keyframes whitePulse {
    0% { box-shadow: 0 0 0px rgba(255, 255, 255, 0); }
    50% { box-shadow: 0 0 15px rgba(255, 255, 255, 0.3); }
    100% { box-shadow: 0 0 0px rgba(255, 255, 255, 0); }
}

/* ==========================================================================
   7. LUKSUZNA STATISTIKA NA DNU VIDEA
   ========================================================================== */
.hero-bottom-stats {
    position: absolute;
    bottom: 40px;
    right: 8%;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 30px;
    background: rgba(0, 0, 0, 0.4);
    padding: 15px 30px;
    border-left: 2px solid #d4af37; /* Zlatni klesarski pečat s lijeve strane */
    backdrop-filter: blur(10px); /* Premium Apple efekt zamućenja videa u pozadini kutije */
}

.stat-box h2 {
    font-family: 'Bodoni Moda', serif !important;
    font-size: 2rem;
    font-weight: 400;
    color: #ffffff;
}

.stat-box p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.7rem;
    color: #a0a0a0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 35px;
    background: rgba(255, 255, 255, 0.15);
}
/* ==========================================================================
   8. RESTRUKTURIRANA SEKCIJA O NAMA (ZASLON 2)
   ========================================================================== */
.about-short-section {
    background-color: #08080a; 
    padding: 140px 8% 80px 8%;
    width: 100%;
    position: relative;
    z-index: 10;
}

.about-container {
    max-width: 950px; 
    margin: 0 auto;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: #d4af37;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.about-title {
    font-family: 'Bodoni Moda', serif !important; /* POPRAVAK: Osiguran novi premium modni font */
    font-size: 3.4rem;
    font-weight: 300;
    text-transform: uppercase;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -0.5px;
    margin-bottom: 30px;
}

.about-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    color: #cccccc;
    line-height: 1.8;
    letter-spacing: 0.5px;
    margin-bottom: 50px;
}

/* MINI BROJAČI UNUTAR O NAMA S PREMIUM FILMSKIM RAZMAKOM */
.about-mini-features {
    display: flex;
    align-items: center;
    gap: 35px;
    margin-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding-bottom: 40px;
}

.feat-box {
    display: flex;
    flex-direction: column;
}

.feat-gold-txt {
    font-family: 'Bodoni Moda', serif !important; /* Usklađeno da i brojevi prate visoki stil */
    font-size: 2.2rem; /* Blago povećano za bolji vizualni iskok */
    font-weight: 400;
    color: #d4af37;
    letter-spacing: 1px;
    line-height: 1;
}

.feat-box p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.8rem;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
}

.feat-divider {
    width: 1px;
    height: 45px;
    background: rgba(255, 255, 255, 0.08);
}

/* ==========================================================================
   OPTIMIZACIJA STATISTIKE I O NAMA ZA MOBITELE (MEDIA QUERY)
   ========================================================================== */
@media (max-width: 991px) {
    /* STATISTIKA NA DNU VIDEA - PRETVARANJE U VERTIKALNI PANEL */
    .hero-bottom-stats {
        position: relative !important; /* Skidamo apsolutno pozicioniranje da ne bježi */
        bottom: 0 !important;
        right: 0 !important;
        margin: 40px auto 0 auto !important; /* Odmičemo od gumba iznad i centriramo */
        width: 100% !important;
        max-width: 320px !important; /* Poravnato sa širinom gumba iz prethodne sekcije */
        flex-direction: column !important; /* Brojevi idu jedan ispod drugog */
        gap: 20px !important;
        padding: 20px !important;
        text-align: center !important;
        border-left: none !important;
        border-top: 2px solid #d4af37 !important; /* Pomjeramo zlatni pečat na vrh kutije za bolji balans */
    }

    .stat-divider {
        width: 40px !important; /* Divider postaje vodoravna linija umjesto okomite */
        height: 1px !important;
        margin: 0 auto !important;
    }

    .stat-box h2 {
        font-size: 1.8rem !important;
    }

    /* SEKCIJA O NAMA */
    .about-short-section {
        padding: 80px 6% 60px 6% !important; /* Smanjen masivni padding da uštedimo prostor */
    }

    .about-container {
        text-align: center !important; /* Otmjeniji izgled kad je sve u sredini na mobitelu */
    }

    .about-badge {
        justify-content: center !important;
    }

    .about-title {
        font-size: 2.0rem !important; /* Smanjen font da naslov izgleda pitomo i stabilno */
        line-height: 1.2 !important;
        margin-bottom: 20px !important;
    }

    .about-text {
        font-size: 0.95rem !important; /* Malo kompaktnija slova za lakše čitanje na mobitelu */
        line-height: 1.7 !important;
        margin-bottom: 40px !important;
    }

    /* MINI BROJAČI UNUTAR O NAMA */
    .about-mini-features {
        flex-direction: column !important; /* Slaganje brojača okomito */
        gap: 25px !important;
        padding-bottom: 30px !important;
    }

    .feat-gold-txt {
        font-size: 1.9rem !important; /* Blago smanjeni brojevi */
    }

    .feat-box p {
        font-size: 0.75rem !important;
    }

    .feat-divider {
        width: 30px !important; /* Okomiti razdjelnici postaju suptilne vodoravne crtice */
        height: 1px !important;
        background: rgba(255, 255, 255, 0.1) !important;
        margin: 0 auto !important;
    }
}

/* ==========================================================================
   9. GUMB "SAZNAJ VIŠE" S PULSIRAJUĆOM ANIMACIJOM
   ========================================================================== */
.about-action-holder {
    display: flex;
    margin-top: 20px;
}

.btn-about-more {
    font-family: 'Plus Jakarta Sans', sans-serif;
    padding: 15px 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.4); 
    color: #ffffff !important;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.4s ease-in-out;
    display: inline-block;
    border-radius: 0px 25px 0px 25px; /* Klesani zašiljeni kutovi */
    animation: aboutGoldPulse 3s infinite ease-in-out;
}

.btn-about-more:hover {
    border-color: #ffffff;
    color: #000000 !important;
    background: #ffffff; 
    border-radius: 25px 0px 25px 0px; /* Kontra rotacija šiljaka na hover */
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.3);
}

/* MATRICA ZA LUKSUZNO PULSIRANJE GUMBA O NAMA */
@keyframes aboutGoldPulse {
    0% { box-shadow: 0 0 0px rgba(212, 175, 55, 0); }
    50% { box-shadow: 0 0 15px rgba(212, 175, 55, 0.35); }
    100% { box-shadow: 0 0 0px rgba(212, 175, 55, 0); }
}

/* ==========================================================================
   POPRAVAK ZA LIVE AUTOMATSKI INSTAGRAM FEED (HORIZONTALNI SLIDER)
   ========================================================================== */
.live-social-section {
    background-color: #08080a; 
    padding: 60px 8% 120px 8%; 
    width: 100%;
    position: relative;
    z-index: 10;
}

.social-header {
    margin-bottom: 50px;
    max-width: 700px;
}

.social-tagline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: #d4af37;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.social-title {
    font-family: 'Bodoni Moda', serif !important; /* Usklađeno s tvojim novim luksuznim fontom */
    font-size: 3.2rem;
    font-weight: 300;
    text-transform: uppercase;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -0.5px;
    margin-bottom: 15px;
}

.social-sub {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    color: #a0a0a0;
}

/* KONTEJNER KOJI RAZVLAČI SLIDER I BRIŠE CRNILO */
.instagram-live-feed-container {
    width: 100%;
    min-height: 400px !important; 
    position: relative;
    z-index: 10;
    margin-top: 40px;
    display: block !important;
}

/* 1. Micanje svih sivih i bijelih tvorničkih pozadina s Juicera */
.juicer-feed {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    min-height: 400px !important;
}

/* 2. NASILNO SKRIVANJE SVIH NATPISA, OPISA I PROFILA DA OSTANE SAMO KAMEN */
.juicer-feed .j-text,
.juicer-feed .j-caption,
.juicer-feed .j-username,
.juicer-feed .j-profile,
.juicer-feed .j-meta,
.juicer-feed .feed-item-footer,
.juicer-feed .j-social-icon,
.juicer-feed .j-dashboard {
    display: none !important; 
}

/* 3. STILIZIRANJE SAMIH SLIKA: Daje im tvoje skupe zaobljene rubove */
.juicer-feed .feed-item {
    background: #0f0f12 !important;
    border: none !important;
    border-radius: 20px !important; 
    overflow: hidden !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4) !important;
}

/* ==========================================================================
   X. PREMIUM MINIMALISTIČKI FOOTER (ZAVRŠETAK STRANICE)
   ========================================================================== */
.luxury-footer {
    background-color: #050507; /* Još dublja, tamnija crna za sam kraj sajta */
    padding: 100px 8% 40px 8%;
    width: 100%;
    position: relative;
    z-index: 10;
    border-top: 1px solid rgba(255, 255, 255, 0.02); 
}

.footer-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-brand-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-brand-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: #888888;
    line-height: 1.6;
    max-width: 250px;
}

.footer-title {
    font-family: 'Bodoni Moda', serif !important;
    font-size: 1.2rem;
    font-weight: 400;
    color: #d4af37; 
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
}

.footer-links-list,
.footer-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links-list a {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    color: #aaaaaa;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links-list a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.footer-info-list li {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    color: #aaaaaa;
}

.gold-text {
    color: #d4af37;
    font-weight: 400;
    margin-right: 5px;
}

.footer-social-sub {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem;
    color: #888888;
    font-weight: 300;
    margin-bottom: 20px;
}

/* POPRAVAK ZA VERTIKALNE LOGOTIPE: TEKST PA LOGO JEDAN ISPOD DRUGOG */
.footer-social-vertical-list {
    display: flex;
    flex-direction: column; 
    gap: 16px; 
    margin-top: 15px;
}

.social-icon-row-new {
    display: flex;
    align-items: center; 
    gap: 10px; 
    text-decoration: none;
    width: fit-content; 
    transition: transform 0.3s ease;
}

.social-text-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #cccccc;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.social-svg-logo-new {
    width: 18px;
    height: 18px;
    color: #aaaaaa; 
    display: block; 
    transition: color 0.3s ease;
}

.social-icon-row-new:hover {
    transform: translateX(4px); 
}

.social-icon-row-new:hover .social-text-label {
    color: #d4af37; 
}

.social-icon-row-new:hover .social-svg-logo-new {
    color: #d4af37; 
}

.footer-bottom-bar {
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-bar p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.8rem;
    color: #555555;
    font-weight: 300;
}

/* ==========================================================================
   OPTIMIZACIJA FOOTERA I SOCIJALNIH MREŽA ZA MOBITELE (MEDIA QUERY)
   ========================================================================== */
@media (max-width: 991px) {
    /* CENTRIRANJE GUMBA SAZNAJ VIŠE */
    .about-action-holder {
        justify-content: center !important;
        margin-top: 15px;
    }

    /* INSTAGRAM FEED SEKCIJA */
    .live-social-section {
        padding: 50px 6% 80px 6% !important;
    }

    .social-header {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        margin-bottom: 35px !important;
    }

    .social-tagline {
        justify-content: center !important;
    }

    .social-title {
        font-size: 2.0rem !important;
        line-height: 1.2 !important;
    }

    .social-sub {
        font-size: 0.9rem !important;
    }

    /* LUKSUZNI FOOTER - PRELAZAK IZ GRID-A U JEDAN STUPAC */
    .luxury-footer {
        padding: 60px 6% 30px 6% !important;
    }

    .footer-container {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        text-align: center !important;
        padding-bottom: 40px !important;
    }

    .footer-brand-block {
        align-items: center !important;
    }

    .footer-brand-text {
        max-width: 100% !important;
        font-size: 0.85rem !important;
    }

    .footer-title {
        margin-bottom: 15px !important;
        font-size: 1.1rem !important;
    }

    .footer-links-list a:hover {
        padding-left: 0 !important;
    }

    .footer-social-vertical-list {
        align-items: center !important;
    }

    .social-icon-row-new {
        margin: 0 auto !important;
    }

    /* DONJA TRAKA FOOTERA (AUTORSKA PRAVA) */
    .footer-bottom-bar {
        flex-direction: column !important;
        gap: 15px !important;
        text-align: center !important;
        padding-top: 25px !important;
    }
}

/* ========================================================== */
/* MOBITEL (MAX 768px) - Hamburger, Meni i Statistika */
/* ========================================================== */
@media (max-width: 768px) {
    /* 1. Sakrivamo tekst loga na mobitelu da ostane samo slika */
    .logo-title-text { 
        display: none !important; 
    }

    /* 2. Header na mobitelu */
    .main-header {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100px !important;
        background: transparent !important;
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 0 22px !important;
        z-index: 99999 !important;
        box-sizing: border-box !important;
    }

    /* 3. Uključujemo hamburger ISKLJUČIVO na mobitelu */
    .mobile-menu-toggle {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 6px !important;
        background: transparent !important;
        border: none !important;
        cursor: pointer !important;
        padding: 5px !important;
        z-index: 100000 !important;
    }

    .hamburger-lines {
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        width: 30px !important;
        height: 20px !important;
    }

    .hamburger-lines span {
        width: 100% !important;
        height: 2px !important;
        background-color: #d4af37 !important;
        border-radius: 2px !important;
        transition: all 0.35s ease !important;
    }

    .menu-text-label {
        font-family: 'Plus Jakarta Sans', sans-serif !important;
        font-size: 9.5px !important;
        letter-spacing: 2px !important;
        color: #d4af37 !important;
        text-transform: uppercase !important;
        font-weight: 700 !important;
        line-height: 1 !important;
    }

    /* Pretvaranje hamburgera u X kada dobije klasu .open */
    .mobile-menu-toggle.open .hamburger-lines span:nth-child(1) {
        transform: translateY(9px) rotate(45deg) !important;
    }
    .mobile-menu-toggle.open .hamburger-lines span:nth-child(2) {
        opacity: 0 !important;
    }
    .mobile-menu-toggle.open .hamburger-lines span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg) !important;
    }

    /* 4. Meni na mobitelu - POČETNO SKRIVEN (max-height: 0) */
    .nav-container-mobile {
        position: absolute !important;
        top: 100px !important;
        left: 0 !important;
        width: 100% !important;
        background: rgba(8, 8, 11, 0.98) !important;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 20px !important;
        max-height: 0 !important;
        overflow: hidden !important;
        padding: 0 20px !important;
        transition: max-height 0.45s cubic-bezier(0.77, 0, 0.175, 1), padding 0.45s ease !important;
        z-index: 99988 !important;
        box-sizing: border-box !important;
        border: none !important;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.85);
    }

    /* Kad se preko JS-a doda klasa .active, meni se otvara */
    .nav-container-mobile.active {
        max-height: 450px !important;
        padding: 30px 20px !important;
    }

    .nav-container-mobile .nav-menu {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 18px !important;
        width: 100%;
    }

    .nav-container-mobile .nav-menu a {
        font-family: 'Plus Jakarta Sans', sans-serif !important;
        font-size: 1rem !important;
        letter-spacing: 2px !important;
        color: #e5e5e5 !important;
        text-decoration: none !important;
        text-transform: uppercase;
        font-weight: 500 !important;
    }

    .nav-container-mobile .nav-contact-holder {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 15px !important;
        width: 100%;
    }

    .lang-switcher {
        display: flex !important;
        flex-direction: row !important;
        gap: 12px !important;
    }

    /* 5. Hero sekcija i statistika (prelazak u vertikalu i spuštanje dole) */
    .hero-section, 
    .hero-container,
    .about-short-section {
        display: flex !important;
        flex-direction: column !important;
        gap: 40px !important;
    }

    .hero-left-box, 
    .about-short-left,
    .hero-content {
        width: 100% !important;
        max-width: 100% !important;
    }

    .hero-stats, 
    .hero-stats-container, 
    .about-short-stats,
    .about-short-right,
    .stats-box-wrapper {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 30px !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-top: 20px !important;
    }
} /* <--- Ovdje se uredno zatvara @media (max-width: 768px) blok */

/* ========================================================== */
/* DESKTOP (RAČUNAR) - Fiksno u jednoj liniji */
/* ========================================================== */
@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none !important;
    }

    .nav-container-mobile {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: flex-end !important;
        position: static !important;
        background: transparent !important;
        width: auto !important;
        height: auto !important;
        max-height: none !important;
        overflow: visible !important;
        box-shadow: none !important;
        border: none !important;
        padding: 0 !important;
        gap: 30px !important;
        margin-left: auto !important;
    }

    .nav-container-mobile .nav-menu {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 30px !important;
        margin: 0 !important;
    }

    .nav-container-mobile .nav-contact-holder {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 15px !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .lang-switcher {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 6px !important;
    }
} 
/* ========================================================== */
/* IDENTIČAN I SAVRŠEN RASPORED ZA O NAMA (Široki Desktop) */
/* ========================================================== */

.detailed-about-section-with-bg {
    position: relative !important;
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('onama.jpg') no-repeat center center !important;
    background-size: cover !important;
    padding: 170px 6% 100px 6% !important;
    min-height: 100vh !important;
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.about-story-content-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    position: relative !important;
    z-index: 2 !important;
}

.page-onama-header {
    text-align: center !important;
    margin-bottom: 50px !important;
}

/* Široki grid s identičnim proporcijama kao prije */
.about-story-grid {
    display: grid !important;
    grid-template-columns: 1.1fr 1.2fr !important;
    gap: 80px !important;
    align-items: center !important;
    width: 100% !important;
}

.story-slogan-box {
    margin-top: 30px !important;
    border-left: 3px solid #d4af37 !important;
    padding-left: 20px !important;
}

/* Mobilna verzija ispod 768px */
@media (max-width: 768px) {
    .detailed-about-section-with-bg {
        padding: 130px 20px 60px 20px !important;
        min-height: auto !important;
    }
    .about-story-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
}
/* ========================================================== */
/*UREĐENJE "O NAMA" STRANICE (Elegancija & Detalji) */
/* ========================================================== */

.detailed-about-section-with-bg {
    position: relative !important;
    background: linear-gradient(rgba(8, 8, 10, 0.85), rgba(8, 8, 10, 0.92)), url('onama.jpg') no-repeat center center !important;
    background-size: cover !important;
    padding: 190px 6% 130px 6% !important;
    min-height: 100vh !important;
    box-sizing: border-box !important;
    display: block !important;
    width: 100% !important;
}

.about-story-content-wrapper {
    max-width: 1600px !important;
    margin: 0 auto !important;
    position: relative !important;
    z-index: 2 !important;
}

/* GORNJI HEADER */
.page-onama-header {
    text-align: center !important;
    margin-bottom: 70px !important;
}

.story-mini-gold {
    color: #d4af37 !important;
    font-size: 0.85rem !important;
    letter-spacing: 4px !important;
    text-transform: uppercase !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    font-weight: 600 !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
}

.gold-dot {
    width: 6px !important;
    height: 6px !important;
    background-color: #d4af37 !important;
    border-radius: 50% !important;
    box-shadow: 0 0 10px #d4af37 !important;
}

.page-onama-main-title {
    font-size: 3.8rem !important;
    color: #ffffff !important;
    margin-top: 15px !important;
    font-family: 'Bodoni Moda', serif !important;
    font-weight: 500 !important;
    letter-spacing: 1px !important;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5) !important;
}

/* GRID SISTEM SA DVIJE KOLONE */
.about-story-grid {
    display: grid !important;
    grid-template-columns: 1fr 1.15fr !important;
    gap: 50px !important;
    align-items: stretch !important;
    width: 100% !important;
}

/* LIJEVI BLOK: Stilizovana kartica sa zlatnim akcentom */
.story-left-block {
    background: linear-gradient(135deg, rgba(20, 20, 25, 0.75), rgba(12, 12, 16, 0.85)) !important;
    border: 1px solid rgba(212, 175, 55, 0.25) !important;
    border-top: 3px solid #d4af37 !important;
    padding: 50px 45px !important;
    border-radius: 6px !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    backdrop-filter: blur(10px) !important;
}

.story-large-heading {
    font-size: 2.1rem !important;
    line-height: 1.45 !important;
    color: #ffffff !important;
    font-family: 'Bodoni Moda', serif !important;
    font-weight: 400 !important;
    margin: 0 !important;
}

/* DESNI BLOK: Kartica za tekstove sa finim unutrašnjim razmakom */
.story-right-block {
    background: linear-gradient(135deg, rgba(18, 18, 22, 0.65), rgba(10, 10, 14, 0.75)) !important;
    border: 1px solid rgba(255, 255, 255, 0.07) !important;
    padding: 45px 45px !important;
    border-radius: 6px !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6) !important;
    backdrop-filter: blur(10px) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
}

.story-paragraph, .story-paragraph-highlight {
    font-size: 1.05rem !important;
    line-height: 1.8 !important;
    color: #d1d1d6 !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    margin-bottom: 22px !important;
    font-weight: 300 !important;
}

.story-paragraph-highlight {
    color: #f0f0f5 !important;
    font-weight: 400 !important;
    border-left: 2px solid rgba(212, 175, 55, 0.4) !important;
    padding-left: 15px !important;
}

/* LUKSUZNI SLOGAN OKVIR */
.story-slogan-box {
    margin-top: 15px !important;
    background: rgba(212, 175, 55, 0.05) !important;
    border: 1px solid rgba(212, 175, 55, 0.3) !important;
    border-left: 4px solid #d4af37 !important;
    padding: 20px 25px !important;
    border-radius: 4px !important;
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
}

.slogan-quote {
    color: #d4af37 !important;
    font-size: 2.5rem !important;
    line-height: 0.5 !important;
    font-family: serif !important;
}

.slogan-text {
    font-size: 1.45rem !important;
    color: #d4af37 !important;
    font-style: italic !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-weight: 500 !important;
    margin: 0 !important;
    letter-spacing: 0.5px !important;
}

/* MOBILNA PRILAGODBA */
@media (max-width: 968px) {
    .about-story-grid
    {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    .detailed-about-section-with-bg {
        padding: 130px 20px 60px 20px !important;
    }
    .page-onama-main-title {
        font-size: 2.5rem !important;
    }
    .story-left-block, .story-right-block {
        padding: 30px 20px !important;
    }
    .story-large-heading {
        font-size: 1.6rem !important;
    }
}
/* Sakrivanje Elfsight branding natpisa na dnu */
[class*="elfsight-app"] a[href*="elfsight.com"] {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    padding: 0 !important;
}
@media (max-width: 992px) {
    .nav-container-mobile {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        width: 80% !important;
        max-width: 350px !important;
        height: 100vh !important;
        background: #0b0b0f !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        transition: right 0.4s ease-in-out !important;
        z-index: 9999 !important;
        box-shadow: -10px 0 30px rgba(0,0,0,0.9) !important;
    }
    .nav-container-mobile.active {
        right: 0 !important;
    }
    .mobile-menu-toggle {
        z-index: 10000 !important;
        position: relative !important;
    }
}
