/* --- 1. OSNOVNI RESET I VARIJABLE --- */
:root {
    --bg-black: #000000;
    --bg-dark-grey: #0a0a0a;
    --bg-card: #111111;
    --gold-primary: #d4af37; /* Glavna zlatna iz videa */
    --gold-light: #f2d06b;
    --gold-dark: #aa8c2c;
    --text-white: #ffffff;
    --text-off-white: #e0e0e0;
    --text-grey: #a0a0a0;
    --font-cinzel: 'Cinzel', serif;
    --font-montserrat: 'Montserrat', sans-serif;
    --section-spacing: 120px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    background-color: var(--bg-black);
    color: var(--text-white);
    font-family: var(--font-montserrat);
    overflow-x: hidden;
}

/* --- TIPOVI I POMOĆNE KLASE --- */
h1, h2, h3, .logo, .btn-header, .btn-hero-large, .sp-count, .gold-headline-large, .quote-label, .sub-card-label, .white-headline-large, .offer-headline, .offer-subheadline {
    font-family: var(--font-cinzel);
    text-transform: uppercase;
}
/* Kontrola logotipa - REŠAVA PROBLEM IZ SCREENSHOTA 101 */
.nav-logo img {
    height: 40px; /* Ovo drži logo pod kontrolom */
    width: auto;
    display: block;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.hamburger {
    display: none; /* Sakriveno na PC-u */
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #d4af37; /* Zlatna boja tvojih elemenata */
    transition: 0.3s;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.grid-50-50 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.center-text { text-align: center; }
.gold { color: var(--gold-primary); }
.gold-bold { color: var(--gold-primary); font-weight: 700; }
.white-bold { color: var(--text-white); font-weight: 700; }
a { text-decoration: none; transition: 0.3s; }

.section-dark {
    padding: var(--section-spacing) 0;
    background-color: var(--bg-black);
    border-top: 1px solid #1a1a1a;
}

/* --- 2. STICKY HEADER (Identǐcan videu) --- */
.sticky-header {
    position: fixed;
    top: 0; left: 0; width: 100%;
    background: rgba(0, 0, 0, 0.85); /* Polu-providna crna */
    backdrop-filter: blur(10px); /* Zamućenje pozadine */
    border-bottom: 1px solid rgba(212, 175, 55, 0.3); /* Suptilna zlatna linija */
    z-index: 1000;
    padding: 15px 0;
}

.header-content {
    display: flex; justify-content: space-between; align-items: center;
}

.logo { font-size: 1.4rem; color: var(--gold-primary); font-weight: 700; letter-spacing: 1px; }
.logo-sub { color: var(--text-white); font-weight: 400; font-size: 1.2rem; }

.sticky-header nav ul { display: flex; gap: 30px; list-style: none; }
.sticky-header nav a {
    color: var(--text-white); font-size: 0.85rem; font-weight: 600; letter-spacing: 1px;
}
.sticky-header nav a:hover { color: var(--gold-primary); }

.btn-header {
    background: var(--gold-primary); color: #000;
    padding: 10px 25px; font-weight: 700; font-size: 0.85rem;
    border-radius: 2px;
}
.btn-header:hover { background: var(--gold-light); }

/* --- 3. HERO SECTION --- */
.hero {
    height: 110vh;
    background-image: url('hero-bg.jpg');
    background-size: cover; background-position: center;
    position: relative; display: flex;
    align-items: flex-start; /* <-- PROMENJENO: Poravnava sadržaj ka vrhu */
    justify-content: center; /* Dodato: Centrira horizontalno */
    text-align: center;
    padding-top: 90px;
    padding-bottom: 60px; /* <-- NOVA LINIJA: Prostor na dnu */
    overflow: hidden;
}
.hero-content-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    align-items: center; /* <--- OVO JE KLJUČNA LINIJA KOJA SMANJUJE DUGME */
}
.hero-overlay {
    position: absolute; top:0; left:0; width:100%; height:100%;
    /* NOVA LINIJA - SAMO 50% ZATAMNJENJA */
    background: rgba(0, 0, 0, 0.2);
}
.hero-content-wrapper { position: relative; z-index: 2; }

/* Masivni tekst u pozadini */
.giant-bg-text {
    position: absolute;
    top: 30%; /* <-- PROMENJENO: Podignuto sa sredine */
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-cinzel); font-size: 13vw; color: rgba(212, 175, 55, 0.05);
    white-space: nowrap; z-index: -1; pointer-events: none;
}

.main-title {
    font-size: 4.5rem; line-height: 1.1; margin-bottom: 20px; letter-spacing: 2px;
}
.title-line-1 { color: var(--text-white); font-weight: 400; }
.title-line-2 { color: var(--gold-primary); font-weight: 700; }

.hero-subtitle {
    font-size: 1rem;
    color: #FFFFFF; /* <-- OVO JE CRNA BOJA */
    max-width: 700px;
    margin: auto auto 10px auto;
    font-weight: 700; /* Ostavio sam da bude podebljano (bold) da bi se bolje čitalo na slici */
}
.hero-location {
    color: #FFFFFF; /* <-- I OVO JE SADA CRNO */
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* --- NOVI PREMIUM STIL ZA GLAVNO DUGME --- */
.btn-hero-large {
    /* 1. POZADINA: Zlatni gradijent za metalni izgled */
    background: linear-gradient(145deg, #e6c76c 0%, #d4af37 100%);
    color: #1a1a1a; /* Skoro crna boja teksta za oštar kontrast */

    /* 2. TIPOGRAFIJA: Jaka, debela i čitljiva */
    font-family: 'Montserrat', sans-serif;
    font-weight: 800; /* Ekstra podebljano (Extra Bold) */
    text-transform: uppercase;
    letter-spacing: 2px; /* Širok razmak daje luksuzan osećaj */
    font-size: 1rem;

    /* 3. DIMENZIJE I OBLIK */
    padding: 20px 30px; /* Masivnije i šire dugme */
    border: none;
    border-radius: 3px; /* Vrlo blago zaobljene ivice, skoro oštre */
    cursor: pointer;
    display: inline-block;

    /* 4. EFEKTI DUBINE */
    /* Ovo pravi meki zlatni odsjaj ispod dugmeta */
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);

    /* Tranzicija za glatke efekte */
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    top: 0;
}

/* --- HOVER EFEKAT (Kad pređeš mišem) --- */
.btn-hero-large:hover {
    /* Dugme se blago podiže gore */
    transform: translateY(-4px);
    /* Senka postaje jača i veća, kao da dugme jače sija */
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.5);
    /* Pozadina postaje malo svetlija i intenzivnija */
    background: linear-gradient(145deg, #f0d88f 0%, #eac14d 100%);
}

/* --- AKTIVNO STANJE (Dok držiš klik) --- */
.btn-hero-large:active {
    /* Dugme se malo spusti kad ga pritisneš */
    transform: translateY(-2px);
    box-shadow: 0 7px 15px rgba(212, 175, 55, 0.4);
    transition: 0.1s; /* Brža reakcija na klik */
    
}
/* --- KOD ZA STRELICU --- */
.scroll-arrow {
    margin-top: auto;        /* <-- OVO JE KLJUČNO: Gura strelicu i sve ispod nje na dno */
    color: #e6c76c;          /* Crna boja */
    font-size: 3.5rem;       /* Veličina */
    margin-bottom: 1px;     /* Razmak između strelice i dugmeta */
    animation: bounce 2s infinite; 
    font-weight: 700;
    display: block;
    cursor: default;
}
.btn-hero-large:hover { filter: brightness(1.1); transform: scale(1.02); }
.full-width { width: 100%; text-align: center; }

@keyframes bounce { 0%, 20%, 50%, 80%, 100% {transform: translateY(0);} 40% {transform: translateY(-10px);} 60% {transform: translateY(-5px);} }

/* --- 4. SOCIAL PROOF BAR (Lebdeća traka) --- */
.social-proof-bar {
    position: relative;
    margin-top: 60px; /* Podiže ga gore da pređe preko hero slike */
    z-index: 10; padding-bottom: 60px; /* Prostor ispod */
}
.sp-content {
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid #333;
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 40px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.sp-left { display: flex; align-items: center; gap: 20px; }
.sp-icon-group {
    font-size: 2.5rem;
    color: #000; /* Stavljamo crnu bazu da bi filter lepo legao */
    /* color: var(--gold-primary); <-- OVO SMO OBRISALI */
}
.sp-numbers { text-align: left; }
.sp-count { display: block; font-family: var(--font-cinzel); font-size: 2rem; color: var(--gold-primary); line-height: 1; }
.plus { color: var(--gold-light); font-size: 1.5rem; }
.sp-label { font-size: 0.8rem; color: var(--text-grey); letter-spacing: 1px; }

.sp-divider { height: 50px; width: 1px; background: #333; }

.sp-right { display: flex; align-items: center; gap: 20px; }
.avatars { display: flex; }
.avatar { width: 35px; height: 35px; border-radius: 50%; border: 2px solid var(--bg-black); display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 700; color: #000; margin-left: -10px; }
.c1 { background: #a8ba9a; z-index: 3; } .c2 { background: #c4a88a; z-index: 2; } .c3 { background: #d4af37; z-index: 1; }
.avatar-count { margin-left: 10px; color: var(--text-grey); font-size: 0.9rem; }
.sp-join-text { color: var(--gold-primary); font-size: 0.9rem; cursor: pointer; }

/* --- 5. PHILOSOPHY SECTION (Sa gradijentima u tekstu) --- */
.gold-separator-label {
    display: flex; align-items: center; gap: 10px; color: var(--gold-primary); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 20px;
}
.sep-line { height: 2px; width: 30px; background: var(--gold-primary); }
.gold-headline-large {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem; line-height: 1.1; color: var(--gold-primary); margin-bottom: 40px;
}

.philo-text { font-size: 1.2rem; color: var(--text-off-white); margin-bottom: 25px; line-height: 1.6; }
/* Ključni deo: Kopiranje onih suptilnih gradijenata na rečima iz videa */
.highlight-text {
    background: linear-gradient(to right, #d4af37, #a8ba9a, #c4a88a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}
.philo-tagline { font-style: italic; color: var(--gold-primary); margin-top: 30px; font-size: 1.1rem; }

/* Kartica sa citatom */
.quote-card-wrapper { display: flex; flex-direction: column; align-items: flex-end; }
.quote-card { background: var(--bg-card); border: 1px solid #2a2a2a; padding: 30px; width: 100%; max-width: 450px; }
.main-card { border-bottom: none; position: relative; }
.main-card::before { content:''; position: absolute; top: 20px; left: -5px; width: 5px; height: 50px; background: var(--gold-primary); }
.card-header { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.quote-icon { background: var(--gold-primary); color: #000; width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; font-weight: 700; border-radius: 50%; font-family: var(--font-cinzel); }
.quote-label { font-size: 0.8rem; color: var(--gold-primary); letter-spacing: 1px; }
blockquote { font-size: 1.3rem; font-style: italic; color: var(--text-white); margin-bottom: 20px; line-height: 1.4; }
blockquote strong { color: var(--gold-primary); }
cite { display: block; color: var(--gold-primary); font-family: var(--font-cinzel); }
.sub-card { background: #080808; border-top: 1px solid #2a2a2a; padding: 20px 30px; }
.sub-card-label { font-size: 0.7rem; color: var(--text-grey); display: block; margin-bottom: 5px; letter-spacing: 1px; }
.sub-card p { font-size: 0.9rem; color: var(--text-off-white); }

/* --- 6. BADGES SECTION --- */
.gold-sub-center { display: block; text-align: center; color: var(--gold-primary); font-size: 0.9rem; letter-spacing: 3px; margin-bottom: 15px; }
.white-headline-medium { font-size: 2.5rem; color: var(--text-white); margin-bottom: 60px; }
.badge-box {
    background: var(--bg-card); border: 1px solid #222; padding: 40px 20px; transition: 0.3s;
}
.badge-box:hover { border-color: var(--gold-primary); transform: translateY(-5px); }
.badge-icon { font-size: 3rem; margin-bottom: 25px; }
.badge-box h3 { color: var(--gold-primary); font-size: 1.1rem; margin-bottom: 15px; font-family: var(--font-cinzel); }
.badge-box p { color: var(--text-grey); font-size: 0.9rem; }
.cert-button-wrapper { margin-top: 60px; }
.btn-cert {
    display: inline-block; background: var(--bg-dark-grey); border: 1px solid var(--gold-primary); color: var(--gold-primary); padding: 15px 40px; font-weight: 700; letter-spacing: 1px;
}
.btn-cert:hover { background: var(--gold-primary); color: #000; }

/* --- 7. ARSENAL SECTION (CSS Grafike proizvoda) --- */
.white-headline-large { font-size: 3.5rem; color: var(--text-white); margin-bottom: 20px; }
.section-desc { color: var(--text-grey); margin-bottom: 60px; font-size: 1.1rem; }

.product-card { background: var(--bg-card); border: 1px solid #222; padding: 30px; position: relative; transition: 0.3s; }
.product-card:hover { border-color: var(--gold-primary); }
.essential-tag { position: absolute; top: 15px; right: 15px; background: var(--gold-primary); color: #000; padding: 5px 10px; font-size: 0.7rem; font-weight: 700; }

/* CSS KREIRANE GRAFIKE PROIZVODA (Identǐcno videu) */
.Graphic-placeholder {
    height: 220px; background: #1a2e1a; /* Tamno zelena pozadina */
    border-radius: 4px; margin-bottom: 25px;
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden; border: 1px solid #2a3a2a;
}
.inner-shape { position: absolute; background: rgba(255,255,255,0.1); }
.rounded-rect { width: 60%; height: 70%; border-radius: 20px; }
.circle { width: 120px; height: 120px; border-radius: 50%; }
.pill { width: 40%; height: 70%; border-radius: 50px; }
.prod-name-graphic {
    position: relative; z-index: 2; text-align: center; color: var(--gold-primary); font-family: var(--font-cinzel); font-size: 0.8rem; letter-spacing: 1px;
}
.prod-name-graphic span { display: block; font-size: 1.2rem; font-weight: 700; margin-top: 5px; }

.product-card h3 { color: var(--text-white); font-family: var(--font-cinzel); margin-bottom: 10px; }
.product-card p { color: var(--text-grey); font-size: 0.9rem; }
.arsenal-footer-note { margin-top: 40px; color: var(--text-grey); font-size: 0.9rem; }

/* --- 8. OFFER SECTION --- */
.grid-50-50.gap-0 { gap: 0; }
.align-stretch { align-items: stretch; }

.offer-graphic-col { background: #080808; display: flex; align-items: center; justify-content: center; border-right: 1px solid #222; }
/* Ovde će ići tvoja slika grafike */
.offer-graphic-col img { max-width: 90%; max-height: 90%; object-fit: contain; }

.offer-content-col { padding: 80px 60px; background: var(--bg-dark-grey); }
.gold-sub-label { color: var(--gold-primary); font-size: 0.9rem; letter-spacing: 2px; display: block; margin-bottom: 20px; }
.offer-headline { line-height: 1; margin-bottom: 10px; }
.white { color: var(--text-white); font-size: 3rem; }
.gold-massive { color: var(--gold-primary); font-size: 5rem; display: block; }
.offer-subheadline { color: var(--text-off-white); font-size: 1.5rem; margin-bottom: 40px; letter-spacing: 3px; }

.offer-benefits { list-style: none; margin-bottom: 40px; }
.offer-benefits li { margin-bottom: 15px; color: var(--text-off-white); display: flex; align-items: center; }
.offer-benefits li::before { content: '✓'; color: var(--gold-primary); margin-right: 15px; font-weight: bold; }

.offer-form input {
    width: 100%; padding: 15px 20px; background: #1a1a1a; border: 1px solid #333; color: var(--text-white); margin-bottom: 20px; font-family: var(--font-montserrat);
}
.offer-form input:focus { border-color: var(--gold-primary); outline: none; }
.privacy-note { text-align: center; color: var(--text-grey); font-size: 0.75rem; margin-top: 15px; }

/* --- 9. FOOTER --- */
.footer { background: var(--bg-black); padding: 50px 0; text-align: center; border-top: 1px solid #222; }
.footer-logo { margin-bottom: 20px; }
.copyright { color: #555; font-size: 0.8rem; letter-spacing: 1px; }

/* --- MEDIA QUERIES (Za mobilni, da liči na video) --- */
@media (max-width: 992px) {
    .main-title { font-size: 3rem; }
    .grid-50-50, .grid-3 { grid-template-columns: 1fr; gap: 40px; }
    .sticky-header nav { display: none; } /* Sakrivamo navigaciju na manjim ekranima */
    .social-proof-bar { margin-top: 0; padding: 30px 0; }
    .sp-content { flex-direction: column; gap: 20px; }
    .sp-divider { display: none; }
    .quote-card-wrapper { align-items: flex-start; }
    .offer-graphic-col { padding: 40px; border-right: none; border-bottom: 1px solid #222; }
    .offer-content-col { padding: 40px 20px; }
    .gold-massive { font-size: 4rem; }
}
/* --- STILOVI ZA NOVE STRANICE (DASHBOARD & HUB) --- */

/* Dashboard Layout */
.dashboard-body {
    background: url('hero-bg.jpg') no-repeat center center fixed;
    background-size: cover;
}
.dashboard-wrapper {
    min-height: 100vh;
    background: rgba(0,0,0,0.85); /* Jako zatamnjenje */
    padding-top: 120px;
    padding-bottom: 50px;
    display: flex;
    align-items: center;
}

/* Rank Card */
.rank-card {
    background: #0f120f;
    border: 1px solid var(--gold-primary);
    max-width: 600px;
    margin: 40px auto;
    padding: 30px;
    text-align: left;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
}
.rank-header { border-bottom: 1px solid #333; padding-bottom: 20px; margin-bottom: 20px; }
.current-rank-label { color: var(--text-grey); font-size: 0.8rem; letter-spacing: 2px; }
.rank-title { color: var(--gold-primary); font-family: 'Playfair Display', serif; font-size: 2rem; margin-top: 5px; }

/* Progress Bar */
.progress-info { display: flex; justify-content: space-between; font-size: 0.8rem; color: #ccc; margin-bottom: 10px; }
.progress-bar-bg { background: #222; height: 10px; border-radius: 5px; overflow: hidden; }
.progress-bar-fill { background: var(--gold-primary); height: 100%; }
.reward-hint { font-size: 0.8rem; color: #888; margin-top: 15px; font-style: italic; }

/* Referral Link Box */
.referral-area { background: #1a1a1a; padding: 20px; margin-top: 30px; text-align: center; border-radius: 4px; }
.referral-area p { color: #aaa; margin-bottom: 10px; font-size: 0.9rem; }
.link-box { display: flex; gap: 10px; justify-content: center; }
#refLink { background: #000; color: var(--gold-primary); padding: 10px 20px; border: 1px dashed #444; font-family: monospace; font-size: 1.1rem; }
.btn-copy { background: var(--gold-primary); border: none; padding: 0 20px; font-weight: bold; cursor: pointer; transition: 0.3s; }
.btn-copy:hover { background: #fff; }

/* Content Hub Styles */
.hero-hub { padding-top: 150px; padding-bottom: 80px; background: #050505; border-bottom: 1px solid #222; }
.hub-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }

.hub-card { background: #111; border: 1px solid #222; padding: 30px; transition: 0.3s; position: relative; }
.hub-card:hover { border-color: var(--gold-primary); transform: translateY(-5px); }

.card-status { display: inline-block; background: #1a2e1a; color: #4caf50; padding: 5px 10px; font-size: 0.7rem; font-weight: bold; margin-bottom: 15px; }
.card-status-lock { display: inline-block; background: #222; color: #777; padding: 5px 10px; font-size: 0.7rem; font-weight: bold; margin-bottom: 15px; }

.hub-title { color: #fff; font-family: 'Playfair Display', serif; margin-bottom: 10px; font-size: 1.3rem; }
.hub-excerpt { color: #888; font-size: 0.9rem; margin-bottom: 20px; }
.read-more { color: var(--gold-primary); font-size: 0.8rem; font-weight: bold; letter-spacing: 1px; }

.hub-card.locked { opacity: 0.6; pointer-events: none; }
/* --- FAQ PAGE STYLES --- */

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-card {
    background: #111;
    border: 1px solid #222;
    padding: 40px;
    margin-bottom: 30px;
    display: flex;
    gap: 30px;
    align-items: flex-start;
    transition: 0.3s;
}

.faq-card:hover {
    border-color: var(--gold-primary);
    transform: translateX(10px); /* Suptilno pomeranje u desno na hover */
}

.faq-icon {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: var(--gold-primary);
    opacity: 0.5;
    min-width: 50px;
}

.faq-content h3 {
    font-family: 'Playfair Display', serif;
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.3rem;
    letter-spacing: 0.5px;
}

.faq-content p {
    color: #a0a0a0;
    line-height: 1.8;
    font-size: 1rem;
}

.faq-cta {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #222;
}

.faq-cta p {
    color: #888;
    margin-bottom: 30px;
}

/* Prilagođavanje za mobilni */
@media (max-width: 768px) {
    .faq-card {
        flex-direction: column;
        gap: 15px;
        padding: 30px;
    }
    .faq-icon {
        border-bottom: 1px solid #333;
        width: 100%;
        padding-bottom: 10px;
        margin-bottom: 5px;
    }
}
/* --- MEMBER PORTAL GATE (LOGIN) --- */

.login-body {
    background: url('hero-bg.jpg') no-repeat center center fixed;
    background-size: cover;
    height: 100vh;
    overflow: hidden;
}

.login-wrapper {
    height: 100%;
    width: 100%;
    background: rgba(0,0,0,0.85); /* Jako tamna maska */
    backdrop-filter: blur(5px); /* Zamućenje pozadine */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-card {
    background: #0a0f0a;
    border: 1px solid var(--gold-primary);
    padding: 50px 40px;
    width: 100%;
    max-width: 450px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}

.login-title {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.input-group { margin-bottom: 20px; }

.input-group input {
    width: 100%;
    padding: 15px;
    background: #111;
    border: 1px solid #333;
    color: #fff;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    transition: 0.3s;
}

.input-group input:focus {
    border-color: var(--gold-primary);
    outline: none;
    background: #1a1a1a;
}

.login-footer {
    margin-top: 30px;
    font-size: 0.8rem;
    color: #666;
}

.login-footer a { color: var(--gold-primary); text-decoration: none; }
.login-footer a:hover { text-decoration: underline; }
/* --- BOJENJE SRCA U MASLINASTO ZELENU --- */
/* --- ZAJEDNIČKA KLASA ZA MASLINASTO ZELENI FILTER --- */
/* Ovo sada boji i srce i ikonicu grupe u istu nijansu */
.olive-filter {
    filter: grayscale(100%) sepia(100%) hue-rotate(60deg) saturate(250%) brightness(0.7);
    transition: 0.3s;
    display: inline-block; /* Potrebno da bi filter radio korektno na nekim elementima */
}

/* Efekat na hover (samo za bedževe, kao i pre) */
.badge-card:hover .olive-filter {
     filter: grayscale(100%) sepia(100%) hue-rotate(60deg) saturate(350%) brightness(0.9);
}

/* Efekat kad se pređe mišem preko cele kartice */
.badge-card:hover .olive-heart {
     filter: grayscale(100%) sepia(100%) hue-rotate(60deg) saturate(350%) brightness(0.9);
}
/* --- NOVI STILOVI ZA SLIKOVNI LOGO --- */

/* 1. Podešavanje u Headeru */
.logo-image-wrapper {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.main-logo {
    height: 60px; /* Visina logotipa u headeru - prilagodi po želji */
    width: auto;  /* Širina se prilagođava automatski */
    object-fit: contain;
    transition: 0.3s;
}

.main-logo:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

/* 2. Podešavanje u Footeru */
.footer-logo-wrapper {
    margin-bottom: 20px;
    display: inline-block;
}

.footer-logo-img {
    height: 70px; /* Malo veći logo za footer */
    width: auto;
    filter: grayscale(100%); /* Opciono: Da logo u footeru bude sivkast/diskretan */
    opacity: 0.7;
    transition: 0.3s;
}

.footer-logo-img:hover {
    filter: grayscale(0%); /* Vraća zlatnu boju kad pređeš mišem */
    opacity: 1;
}

/* 3. Prilagođavanje za mobilne telefone */
@media (max-width: 768px) {
    .main-logo {
        height: 40px; /* Manji logo na telefonima da ne zauzima previše mesta */
    }
    
    .footer-logo-img {
        height: 60px;
    }
}
/* --- ARSENAL PRODUCT IMAGES --- */

.arsenal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.product-card {
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    padding: 40px 20px;
    border: 1px solid #222;
    transition: 0.4s ease;
}

.product-card:hover {
    border-color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.05);
}

.product-image-container {
    height: 300px; /* Fiksna visina za uniformnost */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.arsenal-img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    /* Suptilna senka da proizvod dobije na dubini */
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
    transition: 0.5s transform ease;
}

.product-card:hover .arsenal-img {
    transform: scale(1.05) translateY(-10px); /* Proizvod se blago podigne na hover */
}

.product-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--gold-primary);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.product-card p {
    color: #888;
    font-size: 0.95rem;
    line-height: 1.6;
}
/* --- STIL ZA TRI KOLONE (SLIKA - TEKST - SLIKA) --- */
.dual-box-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr; /* Srednja kolona sa tekstom je malo šira */
    gap: 30px;
    align-items: center; /* Centriranje po vertikali */
    padding: 60px 0;
}

.side-box {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6));
    transition: 0.5s ease;
}

.side-box:hover {
    transform: scale(1.05);
}

/* PRILAGOĐAVANJE ZA MOBILNI (Da ne budu preuske kolone) */
@media (max-width: 992px) {
    .dual-box-grid {
        grid-template-columns: 1fr; /* Na telefonima idu jedna ispod druge */
        text-align: center;
    }
    
    .offer-image {
        order: 2; /* Slike idu ispod teksta na mobilnom */
    }
    
    .offer-content {
        order: 1;
        margin-bottom: 40px;
    }
}
/* Ovo farba "EKSKLUZIVNA PONUDA" (mali tekst iznad) */
.offer-content .gold-sub {
    color: var(--gold-primary) !important;
}

/* Ovo farba "POSTANI LEGAT" (glavni naslov) */
.offer-content .gold-headline-medium {
    color: var(--gold-primary) !important;
}
/* --- PERFEKTNO CENTRIRANJE SREDNJE KOLONE --- */

.offer-content {
    text-align: center !important; /* Centrira sav tekst */
    display: flex;
    flex-direction: column;
    align-items: center; /* Ključno: Centrira sve blokove (formu, listu) horizontalno */
    justify-content: center;
}

/* LISTA SA POGODNOSTIMA */
/* Trik: Centriramo celu listu kao blok, ali tekst unutar nje ostavljamo levo */
/* Tako kvačice ostaju lepo poravnate jedna ispod druge, a cela lista je na sredini */
.offer-features {
    display: inline-block; 
    text-align: left; 
    margin: 20px 0; /* Malo razmaka gore i dole */
}

/* FORMA (MAIL BLOK I DUGME) */
.offer-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centrira input i dugme */
}

/* INPUT POLJE */
.offer-form input {
    text-align: center; /* I tekst koji korisnik kuca biće centriran */
    margin-bottom: 15px; /* Razmak između polja i dugmeta */
    width: 100%;
    max-width: 350px; /* Da polje ne bude previše široko */
}

/* DUGME */
.btn-hero-large {
    width: 100%;
    max-width: 350px; /* Dugme iste širine kao input polje */
    
}
/* --- STIL ZA NAPOMENU O PRIVATNOSTI --- */
.form-note {
    margin-top: 10px;       /* Ovo pravi razmak od dugmeta (povećaj po želji) */
    font-size: 1,25rem;     /* Malo manja slova da bude diskretno */
    opacity: 0.8;           /* Blaga providnost */
    color: var(--gold-primary); /* Zlatna boja (da se slaže sa ostatkom) */
    display: block;
}
/* --- FILOZOFIJA SEKCIJA --- */

.philosophy-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr; /* Leva strana malo šira */
    gap: 60px;
    align-items: center;
    padding: 100px 0;
}

.philosophy-visual-block {
    display: flex;
    align-items: center;
    position: relative;
}

/* Stil za tvoj postojeći crni box sa citatom */
.quote-box {
    background: #0a0a0a;
    padding: 40px;
    border-left: 3px solid var(--gold-primary);
    position: relative;
    z-index: 2; /* Box ide ispod slike ili u ravan */
    flex: 1;
}

/* Stil za portret Marka Aurelija */
.marcus-portrait {
    width: 250px; /* Podesi po želji */
    margin-left: -50px; /* Efekat preklapanja sa citatom */
    z-index: 3;
}

.marcus-portrait img {
    width: 100%;
    height: auto;
    filter: sepia(0.3) contrast(1.1) brightness(0.9); /* Daje mermeru luksuzan ton */
    drop-shadow: 10px 10px 30px rgba(0,0,0,0.5);
}

/* PRILAGOĐAVANJE ZA MOBILNI */
@media (max-width: 992px) {
    .philosophy-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .philosophy-visual-block {
        flex-direction: column;
    }
    .marcus-portrait {
        margin-left: 0;
        margin-top: -30px;
        order: -1; /* Slika ide iznad citata na mobilnom */
    }
}
/* --- FILOZOFIJA: VIZUELNI BLOK --- */

/* Glavni kontejner na desnoj strani */
/* --- BISTA KAO DEO DESNE CELINE --- */

/* Kontejner koji drži bistu i kartice na desnoj strani */
.quote-card-wrapper {
    display: flex;
    flex-direction: column; /* Ređa elemente jedan ispod drugog */
    align-items: center;    /* Centrita bistu i kartice po horizontali te kolone */
    gap: 20px;              /* Razmak između biste i citata */
    position: relative;
}

/* Resetujemo prethodno centriranje i postavljamo bistu iznad */
.philo-image-container {
    position: relative;     /* Vraćamo u normalan tok */
    left: auto;
    top: auto;
    transform: none;
    width: 100%;            /* Koristi punu širinu desne kolone */
    max-width: 300px;       /* Ograničavamo veličinu da ne "pojede" citat */
    z-index: 2;
    margin-bottom: -40px;   /* Suptilno preklapanje sa karticom ispod za bolji spoj */
}

.marcus-bust-img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(100%) brightness(0.8) contrast(1.1);
    /* Blaga senka koja daje dubinu na podlozi */
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.5));
}

/* Osiguravamo da kartice prate ovaj novi raspored */
.quote-card.main-card {
    width: 100%;
    max-width: 450px;
    margin-right: 0;
    margin-bottom: 100px;
    /* Resetujemo asimetriju ako je bila podešena */
    z-index: 3;             /* Kartica ide blago preko donjeg dela biste */
}

.quote-card.sub-card {
    width: 100%;
    max-width: 380px;
    margin-right: 0;
    align-self: center;     /* Centriramo i manju karticu u okviru celine */
}

/* --- PRILAGOĐAVANJE ZA MOBILNI --- */
@media (max-width: 992px) {
    .quote-card-wrapper {
        padding-left: 0;
        align-items: center;
    }
    
    .philo-image-container {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        width: 250px;
        margin-bottom: 30px;
        order: -1; /* Bista ide iznad kartica na telefonu */
    }
    
    .quote-card.sub-card {
        margin-right: 0;
    }
}
/* --- CENTRALNO PORAVNANJE FILOZOFIJA SEKCIJE --- */

/* 1. Leva strana (Sadržaj) */
.philo-content {
    text-align: center; /* Centrira sav tekst */
    display: flex;
    flex-direction: column;
    align-items: center; /* Centrira separator i ostale elemente */
}

/* Podešavanje zlatnog separatora da bude u sredini */
.gold-separator-label {
    justify-content: center;
    margin-bottom: 20px;
}

/* 2. Desna strana (Bista i Kartice) */
.quote-card-wrapper {
    align-items: center; /* Osigurava da su bista i kartice u centralnoj osi */
    text-align: center;  /* Centrira tekst unutar citata */
}

/* Centrira header kartice (Ikonica i Endorsement) */
.card-header {
    justify-content: center;
}

/* Centrira sam citat i autora */
.quote-card blockquote, 
.quote-card cite {
    text-align: center;
    display: block;
}

/* Ako želiš da bista ostane u liniji sa centriranim citatom */
.philo-image-container {
    margin-left: 0;
    margin-right: 0;
}

/* Podešavanje donje kartice */
.quote-card.sub-card {
    text-align: center;
    align-self: center;
}
.status-message {
    margin-top: 15px;
    font-size: 0.9rem;
    font-weight: bold;
    display: none; /* Sakriveno dok se ne desi akcija */
    transition: all 0.3s ease;
}

.status-success {
    color: var(--gold-primary); /* Zlatna boja za uspeh */
    display: block;
}

.status-error {
    color: #ff4d4d; /* Crvena za grešku (npr. pogrešan mail) */
    display: block;
}
/* --- THANK YOU STRANICA: MOBILE READY --- */
@media (max-width: 600px) {
    
    .full-height-center {
        padding: 20px;
        align-items: flex-start; /* Pomeramo sadržaj malo ka vrhu na malim ekranima */
        padding-top: 60px;
    }

    .marcus-bust-small {
        width: 120px; /* Smanjujemo bistu da ne dominira previše */
        margin-bottom: 15px;
    }

    .thank-you-page .gold-headline-large {
        font-size: 1.8rem; /* Smanjujemo naslov da ne bi pucao u dva reda nepravilno */
        line-height: 1.1;
    }

    .thank-you-card {
        padding: 25px 20px; /* Smanjujemo unutrašnji razmak kartice */
        width: 100%;       /* Kartica sada zauzima punu širinu ekrana */
        margin: 20px 0;
    }

    .benefit-list li {
        font-size: 0.85rem; /* Smanjujemo tekst benefita za bolju čitljivost */
        line-height: 1.4;
    }

    .quote-text-small {
        font-size: 0.95rem;
    }

    /* Dugme na dnu činimo lakšim za klik palcem */
    .thank-you-page .btn-hero-large {
        width: 100%;
        padding: 18px;
        font-size: 1rem;
    }
}
/* ============================================================
   KOMPLETNA MOBILNA RESPONSIVNOST (Mobile Ready)
   ============================================================ */

@media (max-width: 768px) {
    
    /* 1. HERO SEKCIJA: Rešavamo preklapanje teksta i slike */
    .hero-container {
        flex-direction: column-reverse; /* Slika ide gore, tekst dole */
        text-align: center;
        padding: 100px 20px 40px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-headline {
        font-size: 2.2rem; /* Smanjujemo naslov da ne puca ružno */
    }

    .hero-tagline {
        font-size: 1rem;
        margin: 20px auto;
    }

    /* 2. FILOZOFIJA: Slaganje biste i citata */
    .philosophy-grid {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .philo-content {
        order: 2; /* Tekst ide ispod biste */
    }

    .quote-card-wrapper {
        order: 1; /* Bista i citat idu prvi na mobilnom */
    }

    .philo-image-container {
        max-width: 250px; /* Smanjujemo bistu na mobilnom */
        margin-bottom: -20px;
    }

    /* 3. ARSENAL: Proizvodi jedan ispod drugog */
    .product-grid {
        grid-template-columns: 1fr; /* Jedna kolona umesto tri */
        gap: 30px;
    }

    /* 4. PONUDA: Dual Box Grid (Tri elementa u vertikalu) */
    .dual-box-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .offer-image {
        width: 80%; /* Smanjujemo kutije da ne zauzmu ceo ekran */
        max-width: 250px;
    }

    .offer-content {
        width: 100%;
        padding: 0 15px;
    }

    /* 5. THANK YOU STRANICA: Potpuna optimizacija */
    .thank-you-card {
        padding: 25px 15px;
        width: 95%;
    }

    .btn-hero-large {
        width: 100%; /* Dugme preko celog ekrana za lakši klik palcem */
        text-align: center;
    }
    
}
@media (max-width: 768px) {
    .hamburger {
        display: block; /* Prikazuje se samo na mobilnom */
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
        left: -100%; /* Sakriveno van ekrana */
        top: 0;
        flex-direction: column;
        background-color: #0a0a0a;
        width: 100%;
        height: 100vh;
        justify-content: center;
        align-items: center;
        transition: 0.4s;
        z-index: 1000;
    }

    .nav-links.active {
        left: 0; /* Prikazuje se kada kliknemo */
    }

    /* Animacija pretvaranja u X */
    .hamburger.is-active .bar:nth-child(2) { opacity: 0; }
    .hamburger.is-active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger.is-active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}
/* =======================================================
   HIRURŠKA POPRAVKA ZA MOBILNI (Zalepi na kraj fajla)
   ======================================================= */

/* 1. OSNOVNI STILOVI ZA HAMBURGER (Uvek prisutni u CSS-u) */
.hamburger {
    display: none; /* Sakriven na PC-u */
    cursor: pointer;
}
.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--gold-primary);
    transition: 0.3s;
}

/* =======================================================
   FINALNO PODEŠAVANJE ZA MOBILNI (CLEAN VERSION)
   ======================================================= */

@media (max-width: 768px) {

    /* --- 1. HEADER I LOGO --- */
    .sticky-header .header-content { padding: 10px 15px; }
    
    .sticky-header .main-logo {
        height: 35px !important;
        width: auto !important;
    }
    
    .btn-header { display: none; } /* Sakrivamo dugme u headeru */

    /* --- 2. HERO SEKCIJA --- */
    .hero {
        padding-top: 100px;
        padding-bottom: 20px;
        height: auto;
        min-height: 100vh;
        background-position: center top;
    }

    .hero-content-wrapper {
        padding: 0 15px;
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .giant-bg-text { display: none; } 

    /* Tekst */
    .main-title {
        font-size: 2rem !important;
        line-height: 1.1;
        margin-bottom: 10px;
    }
    
    .title-line-1 { font-size: 1.8rem !important; }
    .title-line-2 { font-size: 2rem !important; }

    .hero-subtitle {
        font-size: 0.9rem !important;
        line-height: 1.4;
        margin-bottom: 0;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    /* Spuštanje strelice i dugmeta */
    .scroll-arrow {
        margin-top: 40vh !important; 
        margin-bottom: 15px !important;
        font-size: 2rem !important;
    }

    .btn-hero-large {
        width: 90% !important;
        padding: 15px 20px !important;
        font-size: 0.9rem !important;
        margin-top: 0;
        margin-bottom: 30px !important;
    }

    /* --- 3. OSTALE SEKCIJE --- */
    .grid-50-50, .dual-box-grid, .arsenal-grid {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .philo-image-container, .offer-image {
        order: -1;
        margin: 0 auto 20px auto;
        max-width: 80%;
    }
    
    .offer-content { padding: 20px 10px; }

    /* --- 4. FUNKCIONALNI MOBILNI MENI (ISPRAVLJENO) --- */
    
    .hamburger {
        display: block;
        z-index: 2000; /* Mora biti iznad menija */
        cursor: pointer;
    }
    
    .hamburger.is-active .bar:nth-child(2) { opacity: 0; }
    .hamburger.is-active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger.is-active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    /* Stil za .nav-menu (OVO JE KLJUČNO - MORA SE ZVATI .nav-menu) */
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%; /* Sakriveno levo */
        width: 100%;
        height: 100vh;
        background-color: #050505;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.4s ease-in-out;
        z-index: 1500;
        padding: 0;
        margin: 0;
    }

    .nav-menu.active {
        left: 0; /* Prikazano */
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        padding: 0;
        display: flex;
    }

    .nav-menu li { margin: 0; list-style: none; }

    .nav-menu a {
        font-family: var(--font-cinzel);
        font-size: 1.5rem;
        color: #fff;
        display: block;
        text-decoration: none;
    }

    /* --- 5. HVALA STRANICA STILOVI --- */
    .dashboard-wrapper h1 { font-size: 2rem !important; line-height: 1.2; }
    .dashboard-wrapper { padding-top: 100px; padding-left: 20px; padding-right: 20px; text-align: center; }
    .link-box { flex-direction: column; gap: 10px; }
    #refLink { width: 100%; font-size: 0.9rem; }
}

/* =======================================================
   MASTER CSS: SPASAVANJE PROJEKTA (MOBILNI + PC)
   ======================================================= */

/* --- 1. MOBILNI PRIKAZ (Sve popravke na jednom mestu) --- */
@media (max-width: 768px) {

    /* A) POPRAVKA OGROMNOG TEKSTA I HERO SEKCIJE */
    .giant-bg-text { display: none !important; } /* Sklanja ona ogromna slova u pozadini */
    
    .hero {
        padding-top: 100px;
        padding-bottom: 40px;
        height: auto;
        min-height: 100vh;
        background-position: center top;
        align-items: center; /* Centrira sadržaj */
    }

    .hero-content-wrapper {
        padding: 0 15px;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Smanjivanje glavnog naslova da stane u ekran */
    .main-title {
        font-size: 2rem !important; 
        line-height: 1.1;
        margin-bottom: 15px;
        margin-top: 0;
    }
    
    .title-line-1 { font-size: 1.8rem !important; }
    .title-line-2 { font-size: 2rem !important; }

    .hero-subtitle {
        font-size: 0.9rem !important;
        line-height: 1.4;
        max-width: 90%;
        margin: 0 auto 20px auto;
    }

    /* Spuštanje dugmeta i strelice da ne gaze proizvode */
    .scroll-arrow {
        margin-top: 5vh !important; /* Malo prostora */
        margin-bottom: 15px !important;
        font-size: 2rem !important;
        position: relative;
    }

    .btn-hero-large {
        width: 90% !important;
        padding: 15px 20px !important;
        font-size: 0.9rem !important;
        margin-bottom: 40px !important;
    }

    /* B) POPRAVKA MENIJA (HAMBURGER) */
    .hamburger {
        display: block !important;
        z-index: 2000;
        cursor: pointer;
        margin-left: auto; /* Gura ga desno */
    }

    .bar {
        display: block !important;
        width: 25px;
        height: 3px;
        margin: 5px auto;
        background-color: #d4af37 !important;
        opacity: 1 !important;
    }

    .btn-header { display: none !important; } /* Sklanja dugme iz headera da ne smeta */
    
    .sticky-header .header-content { padding: 10px 15px; }
    .sticky-header .main-logo { height: 35px !important; width: auto !important; }

    /* Izgled otvorenog menija */
    .nav-menu {
        position: fixed !important;
        top: 0 !important;
        left: -100% !important;
        width: 100% !important;
        height: 100vh !important;
        background-color: #050505 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        transition: left 0.4s ease-in-out !important;
        z-index: 1500 !important;
        margin: 0 !important;
    }

    .nav-menu.active {
        left: 0 !important;
    }

    .nav-menu ul {
        flex-direction: column !important;
        gap: 30px !important;
        text-align: center !important;
    }

    .nav-menu a {
        font-family: 'Cinzel', serif !important;
        font-size: 1.5rem !important;
        display: block !important;
        color: #fff !important;
    }

    /* C) POPRAVKA OSTALIH SEKCIJA (Da se ne lepe jedna na drugu) */
    .grid-50-50, .dual-box-grid, .arsenal-grid {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }
    
    .philo-image-container, .offer-image {
        order: -1;
        margin: 0 auto 20px auto;
        max-width: 80%;
    }

    /* D) POPRAVKA 'HVALA' STRANICE */
    .dashboard-wrapper {
        padding-top: 100px !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        text-align: center !important;
    }
    
    .dashboard-wrapper h1 { font-size: 2rem !important; }
    .link-box { flex-direction: column !important; }
    #refLink { width: 100% !important; }
}

/* --- 2. PC PRIKAZ (Vraćanje normale za velike ekrane) --- */
@media (min-width: 769px) {
    
    /* Sakrivamo hamburger */
    .hamburger { display: none !important; }

    /* Normalan meni */
    .nav-menu {
        display: block !important;
        position: static !important;
        width: auto !important;
        height: auto !important;
        background: transparent !important;
        margin-left: auto;
        margin-right: auto;
    }

    .nav-menu ul {
        display: flex !important;
        flex-direction: row !important;
        gap: 30px !important;
        list-style: none !important;
        align-items: center !important;
    }

    .nav-menu a {
        font-family: 'Montserrat', sans-serif !important;
        font-size: 0.85rem !important;
        font-weight: 600 !important;
        text-transform: uppercase !important;
        color: #fff !important;
        text-decoration: none !important;
    }
    
    .nav-menu a:hover { color: #d4af37 !important; }
    
    .btn-header { display: inline-block !important; }
}
/* =======================================================
   POPRAVKA PORAVNANJA ZA HVALA STRANICU
   ======================================================= */

/* 1. Glavni kontejner - centrira naslov i podnaslove */
.dashboard-wrapper {
    text-align: center !important;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 2. Kartica sa činom - centrira unutrašnji sadržaj */
.rank-card {
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
}

/* 3. Zaglavlje kartice (Legionar + ikonica) */
.rank-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    width: 100%;
}

/* 4. Progress bar informacije */
.progress-info {
    justify-content: center !important;
    display: flex;
    gap: 20px;
}

/* 5. Input polje i dugme za kopiranje */
.link-box {
    justify-content: center;
}
/* =======================================================
   POPRAVKA IZGLEDA POČETNE STRANE (MOBILNI)
   ======================================================= */
@media (max-width: 768px) {

    /* 1. Sklanjamo ogromna slova iz pozadine da ne prave gužvu */
    .giant-bg-text { display: none !important; } 

    /* 2. Podešavamo Hero sekciju da tekst ide gore, a dugme dole */
    .hero {
        padding-top: 110px !important; /* Odvaja tekst od vrha ekrana */
        padding-bottom: 20px !important;
        height: auto !important;
        min-height: 100vh !important;
        background-position: center top !important;
        align-items: flex-start !important; /* Gura sadržaj ka vrhu */
    }

    .hero-content-wrapper {
        padding: 0 15px !important;
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    /* 3. Smanjujemo Naslov (Da ne bude preko cele slike) */
    .main-title {
        font-size: 2rem !important; /* Mnogo manja slova */
        line-height: 1.1 !important;
        margin-bottom: 10px !important;
        margin-top: 0 !important;
    }
    
    .title-line-1 { font-size: 1.7rem !important; }
    .title-line-2 { font-size: 2rem !important; color: var(--gold-primary); }

    /* 4. Smanjujemo Podnaslov */
    .hero-subtitle {
        font-size: 0.65rem !important;
        line-height: 1.4 !important;
        max-width: 90% !important;
        margin: 0 auto !important;
    }

    /* 5. KLJUČNO: Pravimo razmak (rupu) za bočice */
    /* Ovo gura strelicu i dugme skroz na dno ekrana */
    .scroll-arrow {
        margin-top: 40vh !important; /* OVO JE RAZMAK (oko 35% ekrana prazno) */
        margin-bottom: 15px !important;
        font-size: 2rem !important;
    }

    /* 6. Dugme na dnu */
    .btn-hero-large {
        width: 90% !important;
        padding: 15px 20px !important;
        font-size: 0.9rem !important;
        margin-bottom: 40px !important;
    }
}
/* =======================================================
   POPRAVKA ZA FAQ I CONTENT HUB STRANICE (MOBILNI)
   ======================================================= */
@media (max-width: 768px) {

    /* 1. Smanjujemo zaglavlje (Hero Hub) */
    .hero-hub {
        padding-top: 110px !important; /* Bilo je 150px */
        padding-bottom: 40px !important;
        text-align: center !important;
    }

    /* 2. Smanjujemo naslov da ne puca */
    .hero-hub h1, 
    .gold-headline-large {
        font-size: 1.8rem !important; /* Bilo je ogromno */
        line-height: 1.2 !important;
        margin-bottom: 15px !important;
        word-wrap: break-word; /* Sprečava da dugačke reči šire ekran */
    }

    /* 3. Sređujemo opis ispod naslova */
    .section-desc {
        font-size: 0.9rem !important;
        padding: 0 10px !important;
        margin-bottom: 30px !important;
    }

    /* 4. Popravka kartica sa pitanjima (FAQ) */
    .faq-container {
        width: 100% !important;
        padding: 0 10px !important;
    }

    .faq-card {
        flex-direction: column !important; /* Ikonica gore, tekst dole */
        padding: 25px 20px !important;
        gap: 15px !important;
    }

    .faq-icon {
        font-size: 1.5rem !important;
        border-bottom: 1px solid #333;
        width: 100%;
        padding-bottom: 10px;
        margin-bottom: 5px;
    }

    .faq-content h3 {
        font-size: 1.1rem !important;
        margin-bottom: 10px !important;
    }
    
    .faq-content p {
        font-size: 0.9rem !important;
    }
}
/* =======================================================
   CENTRIRANJE TEKSTA ZA FAQ I RIZNICU (GLOBALNO)
   ======================================================= */

/* 1. Centrira naslov i opis na vrhu stranice */
.hero-hub .container {
    text-align: center !important;
    display: flex;
    flex-direction: column;
    align-items: center; /* Osigurava da su elementi na sredini */
}

/* 2. Ograničava širinu teksta opisa da lepše izgleda */
.section-desc {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 800px; /* Da redovi ne budu predugački na velikom ekranu */
}

/* 3. Centrira naslove unutar samih pitanja (Opciono, izgleda urednije) */
.faq-content h3 {
    text-align: center !important;
}

/* 4. Centrira ikonicu (Rimski broj) iznad pitanja na mobilnom */
.faq-icon {
    text-align: center !important;
}
/* =======================================================
   TOTALNO CENTRIRANJE FAQ STRANICE (TEKST I IKONICE)
   ======================================================= */

/* 1. Postavljamo karticu u vertikalu (Ikonica gore, tekst dole) */
.faq-card {
    display: flex !important;
    flex-direction: column !important; /* Ređa elemente jedan ispod drugog */
    align-items: center !important;    /* Centrira ih horizontalno */
    text-align: center !important;     /* Centrira sam tekst unutar njih */
    padding: 40px 30px !important;     /* Malo više prostora */
}

/* 2. Uređujemo ikonicu (Rimski broj) */
.faq-icon {
    width: 100% !important;            /* Zauzima punu širinu */
    text-align: center !important;     /* Broj je na sredini */
    margin-bottom: 20px !important;    /* Razmak do naslova */
    border-bottom: 1px solid rgba(212, 175, 55, 0.2) !important; /* Tanka zlatna linija ispod broja */
    padding-bottom: 15px !important;
    opacity: 1 !important;             /* Da se bolje vidi */
    font-size: 2rem !important;        /* Malo veći broj */
}

/* 3. Centrira naslov pitanja */
.faq-content h3 {
    text-align: center !important;
    width: 100% !important;
    margin-bottom: 15px !important;
}

/* 4. KLJUČNO: Centrira sitniji tekst (odgovor) */
.faq-content p {
    text-align: center !important;
    width: 100% !important;
    max-width: 700px;  /* Da redovi ne budu predugački na PC-u (lakše za čitanje) */
    margin-left: auto !important;
    margin-right: auto !important;
    font-size: 0.95rem !important;
}

/* 5. Centrira onaj donji deo "Imaš još pitanja?" */
.faq-cta {
    text-align: center !important;
    border-top: none !important; /* Sklanjamo liniju ako smeta */
}
/* =======================================================
   CENTRIRANJE TEKSTA NA FORUM (RIZNICA) STRANICI
   ======================================================= */

/* 1. Centrira kompletan sadržaj kartice */
.hub-card {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important; /* Centrira elemente po horizontali */
}

/* 2. Centrira naslov lekcije */
.hub-title {
    text-align: center !important;
    width: 100% !important;
}

/* 3. Centrira sitni tekst (opis) */
.hub-excerpt {
    text-align: center !important;
    width: 100% !important;
    max-width: 90%; /* Da tekst ne udara u same ivice kartice */
    margin-left: auto !important;
    margin-right: auto !important;
}

/* 4. Centrira bedževe (Otključano / Zaključano) */
.card-status, 
.card-status-lock {
    display: inline-block !important;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: 15px !important;
}

/* 5. Centrira link "PROČITAJ ODMAH" */
.read-more {
    display: inline-block !important;
    margin-top: 15px !important;
    text-align: center !important;
}
/* =======================================================
   ANIMACIJE POJAVLJIVANJA (SCROLL REVEAL)
   ======================================================= */

/* 1. Početno stanje (Sakriveno i spušteno) */
.reveal {
    opacity: 0;
    transform: translateY(50px); /* Spušteno za 50px */
    transition: all 0.8s ease-out; /* Trajanje animacije 0.8 sekundi */
    will-change: opacity, transform; /* Optimizacija za browser */
}

/* 2. Završno stanje (Vidljivo i na mestu) */
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Opciono: Da animacija kasni malo na mobilnom radi boljih performansi */
@media (max-width: 768px) {
    .reveal {
        transition: all 0.6s ease-out;
        transform: translateY(30px); /* Manji pokret na telefonu */
    }
}
/* =======================================================
   BACK TO TOP DUGME (GLOBALNO)
   ======================================================= */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--gold-primary); /* Zlatna boja */
    color: #000; /* Crna strelica */
    border-radius: 50%; /* Krug */
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
    z-index: 2500; /* Iznad svega */
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    
    /* Početno stanje: Sakriveno */
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

/* Klasa koju JS dodaje kad skroluješ nadole */
.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Hover efekat (Samo za PC) */
.back-to-top:hover {
    background-color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

/* Prilagođavanje za MOBILNI (Manje i bliže ivici) */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}
/* =======================================================
   AKTIVNO STANJE U MENIJU (GDE SAM?)
   ======================================================= */
.nav-menu a.current-page {
    color: var(--gold-primary) !important; /* Zlatna boja slova */
    position: relative;
}

/* Mala zlatna linija ispod aktivnog linka */
.nav-menu a.current-page::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--gold-primary);
    position: absolute;
    bottom: -5px;
    left: 0;
    box-shadow: 0 0 10px var(--gold-primary); /* Blagi sjaj */
}

/* Na mobilnom ne želimo liniju, samo boju */
@media (max-width: 768px) {
    .nav-menu a.current-page::after {
        display: none;
    }
}
/* =======================================================
   FOOTER PRAVNI LINKOVI
   ======================================================= */

.footer-legal-links {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px; /* Razmak između linkova */
    flex-wrap: wrap; /* Da se lepo prelomi na malim ekranima */
}

.footer-legal-links a {
    color: #444; /* Tamno siva (diskretno) */
    font-size: 0.75rem; /* Sitna slova */
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.footer-legal-links a:hover {
    color: var(--gold-primary); /* Zlatna na hover */
}

.sep {
    color: #333; /* Boja uspravne crtice */
    font-size: 0.75rem;
}

/* Prilagođavanje za mobilni */
@media (max-width: 768px) {
    .footer-legal-links {
        gap: 10px;
        flex-direction: column; /* Linkovi jedan ispod drugog na telefonu */
        gap: 15px;
    }
    .sep {
        display: none; /* Sakrivamo crtice na telefonu */
    }
}
/* =======================================================
   INTERAKTIVNA ZONA (FORUM IGRE) - FINALNI KOD
   ======================================================= */

/* 1. SEPARATOR */
.interactive-separator {
    display: flex; align-items: center; justify-content: center;
    margin: 60px 0 40px 0; gap: 15px;
}
.gold-line { flex: 1; height: 1px; background: rgba(212, 175, 55, 0.3); max-width: 200px; }
.gold-icon { font-size: 1.5rem; }

/* 2. MREŽA (3 Kolone PC / 1 Kolona Telefon) */
.interactive-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 60px;
    align-items: start;
}

@media (max-width: 992px) {
    .interactive-grid { grid-template-columns: 1fr !important; }
}

/* 3. KARTICE */
.game-card {
    background: #0f120f;
    border: 1px solid #333;
    padding: 30px;
    text-align: center;
    border-radius: 4px;
    transition: 0.3s;
    height: 100%;
}
.game-card:hover { border-color: var(--gold-primary); box-shadow: 0 5px 15px rgba(0,0,0,0.5); }
.game-card h3 { color: var(--gold-primary); font-family: 'Cinzel', serif; margin-bottom: 10px; }
.game-card p { color: #888; font-size: 0.9rem; margin-bottom: 20px; }

/* 4. DUGMIĆI */
.btn-game {
    background: transparent; border: 1px solid var(--gold-primary);
    color: var(--gold-primary); padding: 10px 20px;
    cursor: pointer; font-weight: bold; margin-top: 15px; transition: 0.3s;
}
.btn-game:hover { background: var(--gold-primary); color: #000; }

/* 5. PROROČIŠTE & KOCKA */
.quote-box-game {
    font-style: italic; color: #fff; min-height: 80px;
    display: flex; align-items: center; justify-content: center;
    padding: 10px; background: #050505; border: 1px dashed #333;
}
.dice-arena { display: flex; justify-content: center; align-items: center; gap: 15px; margin-bottom: 15px; }
.dice { width: 50px; height: 50px; background: #222; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; border: 1px solid #444; }
.vs { color: var(--gold-primary); font-weight: bold; }
.game-result-text { font-weight: bold; color: #fff; min-height: 20px; }

/* 6. ANKETA (FLEXBOX POPRAVKA) */
.poll-option {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 25px !important;
    cursor: pointer;
    position: relative !important;
}
/* Tekst levo */
.poll-option span:not(.percent) { order: 1 !important; font-weight: bold; color: #ccc; font-size: 0.8rem; }
/* Procenat desno */
.percent { order: 2 !important; font-weight: bold; color: #888; margin: 0 !important; position: static !important; }
/* Traka dole */
.progress-bg {
    order: 3 !important;
    flex-basis: 100% !important; width: 100% !important;
    margin-top: 8px !important; height: 8px;
    background: #222; border-radius: 4px; overflow: hidden;
}
.progress-fill { height: 100%; background: var(--gold-primary); width: 0%; transition: width 1s ease; }
/* =======================================================
   HITNA POPRAVKA - PRIKAZI SADRŽAJ ODMAH
   (Rešava problem prazne strane na Info, Login, Pravno)
   ======================================================= */

.login-card, 
.login-card.reveal {
    opacity: 1 !important;           /* Mora biti vidljivo */
    transform: translateY(0) !important; /* Vraća na pravu poziciju */
    visibility: visible !important;  /* Osigurava vidljivost */
    display: block !important;       /* Osigurava da zauzima prostor */
}
/* COMING SOON SECTION */
.perfume-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.perfume-img {
    max-width: 80%;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.2));
    transition: transform 0.5s ease;
}

.perfume-visual:hover .perfume-img {
    transform: scale(1.05);
}

.glow-effect {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    z-index: -1;
}

.status-badge {
    margin-top: 30px;
    padding: 10px 20px;
    border: 1px solid var(--gold-primary);
    display: inline-block;
    color: var(--gold-primary);
    font-family: var(--font-cinzel);
    font-size: 0.8rem;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .perfume-visual { order: -1; margin-bottom: 30px; }
}
/* COUNTDOWN TIMER STYLES */
.countdown-container {
    display: flex;
    gap: 15px;
    margin: 30px 0;
    justify-content: flex-start;
}

.countdown-item {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 15px;
    min-width: 80px;
    text-align: center;
    border-radius: 4px;
}

.countdown-item span {
    display: block;
    font-family: var(--font-cinzel);
    font-size: 1.8rem;
    color: var(--gold-primary);
    font-weight: 700;
}

.countdown-item p {
    font-size: 0.7rem;
    color: #888;
    letter-spacing: 1px;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .countdown-container { justify-content: center; }
    .countdown-item { min-width: 65px; padding: 10px; }
    .countdown-item span { font-size: 1.4rem; }
}
/* --- FORUM SIMETRIJA I DESKTOP RASPODELA --- */

/* Osigurava da su sve kartice u gridu iste visine na desktopu */
@media (min-width: 769px) {
    .hub-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        align-items: stretch; /* Rasteže kartice da budu iste visine */
    }

    .hub-card {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
        min-height: 480px; /* Možeš korigovati ovu brojku prema svom sadržaju */
    }

    /* Centriranje mačeva i linije na desktopu */
    .interactive-separator {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 60px 0;
        width: 100%;
    }
}

/* --- ČUVANJE MOBILNOG PRIKAZA (Zadržava tvoj perfektan izgled) --- */
@media (max-width: 768px) {
    .hub-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .hub-card {
        min-height: auto; /* Na mobilnom se visina prilagođava sadržaju */
    }
    
    .interactive-separator {
        margin: 40px 0;
    }
}
.progress-bar {
    width: 100%;
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    margin: 15px 0;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #d4af37, #f2d472); /* Zlatni sjaj */
    transition: width 0.8s ease-in-out; /* Glatko pomeranje */
}
/* Stil za Imperatorsko obaveštenje */
.aurelius-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #121212;
    border: 1px solid #d4af37;
    padding: 20px;
    border-radius: 8px;
    color: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}
/* --- POPRAVKA SAMO ZA HVALA STRANICU --- */
.dashboard-wrapper {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important; /* Horiznotalno centriranje svega */
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
    min-height: 100vh !important;
    padding: 100px 20px 40px 20px !important;
}

/* Centriranje Rank kartice i dugmeta */
.rank-card, 
.dashboard-wrapper a.btn-hero-large,
.dashboard-wrapper .btn-gold-large,
.dashboard-wrapper a[href="pocetna.html"] {
    margin-left: auto !important;
    margin-right: auto !important;
    display: block !important;
    width: fit-content !important;
    max-width: 90% !important;
}
.dashboard-body {
    background-attachment: fixed !important;
    background-size: cover !important;
    background-position: center !important;
}

@media (max-width: 768px) {
    .dashboard-body {
        /* Na mobilnom attachment fixed nekad pravi bagove, pa koristimo scroll */
        background-attachment: scroll !important;
        background-repeat: no-repeat !important;
        background-color: #000 !important;
    }
}
.header-content {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

/* --- POPRAVKA "PROZOR" EFEKTA NA POZADINI --- */
.button-container-fix {
    width: 100% !important;
    background: transparent !important; /* Mora biti providno */
    background-image: none !important;  /* Briše bilo kakvu sliku koja se tu pojavila */
    display: flex !important;
    justify-content: center !important;
    margin-top: 20px !important;
    padding-bottom: 50px !important;
}

#btn-povratak {
    /* Brišemo pozadinske slike koje kvare mrak */
    background-image: linear-gradient(145deg, #e6c76c 0%, #d4af37 100%) !important; 
    background-color: #d4af37 !important;
    
    display: inline-block !important;
    width: auto !important;
    min-width: 250px !important;
    text-align: center !important;
    color: #1a1a1a !important;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5) !important;
}
/* --- FIX ZA DUGME I POZADINU --- */
.button-container-fix {
    width: 100% !important;
    background: transparent !important; /* KLJUČNO: Providna pozadina */
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin-top: 30px !important;
    padding-bottom: 50px !important;
    position: relative !important;
    z-index: 10 !important;
}

#btn-povratak {
    position: relative !important; /* Poništava 'absolute' ako ga ima */
    display: inline-block !important;
    float: none !important;
    margin: 0 !important;
    /* Osiguravamo da izgleda kao zlatno dugme */
    background: linear-gradient(145deg, #e6c76c 0%, #d4af37 100%) !important;
    color: #000 !important;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5) !important;
}
/* Cookie Banner - Aurelius Style */
.cookie-container {
    display: none; /* Sakriveno po defaultu, JS ga pali */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #0a0a0a; /* Tvoja crna */
    border-top: 1px solid #C5A059; /* Tvoja zlatna */
    padding: 20px;
    z-index: 10000;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.8);
    font-family: inherit;
}

.cookie-container p {
    color: #f0f0f0;
    margin: 0;
    font-size: 14px;
}

.cookie-link {
    color: #C5A059;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-gold {
    background-color: #C5A059;
    color: #000;
    border: none;
    padding: 8px 20px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
}

.btn-outline {
    background-color: transparent;
    color: #fff;
    border: 1px solid #555;
    padding: 8px 20px;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
}

.btn-gold:hover { background-color: #b38f4d; }
.btn-outline:hover { border-color: #fff; }
/* Social Icons - Aurelius Style */
.social-links {
    display: flex;
    justify-content: center; /* Centrirano (ili 'flex-start' za levo) */
    gap: 25px; /* Razmak između ikonica */
    margin-top: 30px; /* Malo odvojeno od teksta iznad */
    margin-bottom: 20px;
}

.social-links a {
    color: #C5A059; /* Tvoja zlatna boja */
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease, color 0.3s ease;
    display: inline-block;
}

.social-links svg {
    width: 100%;
    height: 100%;
}

/* Hover efekat - kad pređeš mišem */
.social-links a:hover {
    color: #ffffff; /* Ili svetlija zlatna (#e6c575) */
    transform: translateY(-3px); /* Malo "skoči" na gore */
}