/* =============================================================
   ODVJETNIK SVEBOR MILKOVIĆ — style.css
   Font: Microgramma (lokalno, fonts/microgrammanormal.ttf)
   ============================================================= */

/* Microgramma Extended: proširena verzija s dodanim hrvatskim dijakriticima.
   Sva slova (uključujući č, ć, š, ž, đ) renderiraju se u Microgramma fontu. */
@font-face {
    font-family: 'Microgramma';
    src: url('fonts/microgramma-extended.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    unicode-range:
        U+0020-0026,   /* space !"#$%& */
        U+0028-0029,   /* () */
        U+002C-002F,   /* ,-./ */
        U+0030-0039,   /* 0–9 */
        U+003A-003B,   /* :; */
        U+003D,        /* = */
        U+003F,        /* ? */
        U+0041-005A,   /* A–Z */
        U+0061-007A,   /* a–z */
        U+0106-0107,   /* Ć ć */
        U+010C-010D,   /* Č č */
        U+0110-0111,   /* Đ đ */
        U+0160-0161,   /* Š š */
        U+017D-017E;   /* Ž ž */
}

/* ---- CSS VARIJABLE ---- */
:root {
    --black:       #000000;
    --dark:        #1a1a1a;
    --card-bg:     #222222;
    --gold:        #b8972a;
    --gold-light:  #d4a832;
    --white:       #ffffff;
    --text-muted:  #aaaaaa;
    --border:      #333333;
    --font-primary: 'Microgramma', 'Chakra Petch', sans-serif;
    --header-height: 72px;
    --transition: 0.28s ease;
    --radius: 6px;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html { scroll-behavior: smooth; }

body {
    background-color: var(--black);
    color: var(--white);
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
a[href^="mailto"] { letter-spacing: 0.06em; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { font-family: var(--font-primary); }

/* =====================================================================
   HEADER
   ===================================================================== */
#header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--header-height);
    /* Transparentan na vrhu */
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid transparent;
    transition: background 0.4s ease, backdrop-filter 0.4s ease,
                -webkit-backdrop-filter 0.4s ease, border-color 0.4s ease;
}

/* Glass efekt kad se stranica skrola */
#header.scrolled {
    background: rgba(18, 18, 18, 0.52);
    backdrop-filter: blur(22px) saturate(160%);
    -webkit-backdrop-filter: blur(22px) saturate(160%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Logo u headeru — skriven dok se ne skrola ispod heroja */
.header-logo-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-8px);
    transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease;
    pointer-events: none;
}

#header.past-hero .header-logo-link {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    pointer-events: auto;
}

.header-logo {
    height: 42px;
    width: auto;
    display: block;
}

.logo { display: flex; align-items: center; flex-shrink: 0; }

.logo-img {
    height: 42px;
    width: auto;
    display: block;
}

/* ---- Navigacija ---- */
nav { display: flex; align-items: center; }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color var(--transition);
    position: relative;
    padding-bottom: 2px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width var(--transition);
}

.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { width: 100%; }

/* ---- Language switcher ---- */
.lang-switcher { display: flex; align-items: center; gap: 0.35rem; }
.lang-sep { color: var(--border); font-size: 0.72rem; user-select: none; }

.lang-btn {
    background: none; border: none;
    font-family: var(--font-primary);
    font-size: 0.72rem; font-weight: 400;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    cursor: pointer; padding: 0.2rem 0;
    transition: color var(--transition);
}
.lang-btn:hover, .lang-btn.active { color: var(--gold); }

/* ---- Hamburger ---- */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px; height: 17px;
    background: none; border: none;
    cursor: pointer; padding: 0; z-index: 1100;
}

.hamburger span {
    display: block; width: 100%; height: 2px;
    background: var(--white); border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
    transform-origin: center;
}

.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-image: url('images/hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.80) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: clamp(2rem, 5vw, 5rem);
    padding: 2rem 3rem;
    animation: heroFadeIn 1.2s ease both;
}

.hero-logo-wrap { flex-shrink: 0; }

.hero-logo {
    height: clamp(108px, 16.8vw, 216px);
    width: auto;
    display: block;
    filter: drop-shadow(0 0 40px rgba(184, 151, 42, 0.25));
}

.hero-name-wrap { text-align: left; }

.hero-label-group {
    display: inline-block;
}

.hero-pretitle {
    font-size: clamp(1.1rem, 2.8vw, 2rem);
    font-weight: 400;
    color: var(--white);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.88;
}

.hero-divider {
    width: 100%;
    margin: 0.65rem 0;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.40);
}

.hero-fullname {
    font-size: clamp(1.65rem, 4.2vw, 3rem);
    font-weight: 400;
    color: var(--white);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    line-height: 1.1;
}

@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* =====================================================================
   SEKCIJE — zajedničko
   ===================================================================== */
.section {
    padding: 6rem 0;
    border-top: 1px solid var(--gold);
    scroll-margin-top: var(--header-height);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section > .container {
    width: 100%;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-size: clamp(0.85rem, 1.8vw, 1.2rem);
    font-weight: 700;
    color: var(--gold);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    margin-bottom: 3rem;
}

/* =====================================================================
   PODRUČJA AKTIVNOSTI — pozadinska slika
   ===================================================================== */
#podrucja {
    position: relative;
    background: url('images/rijecnik.jpg') center / cover fixed;
}

#podrucja::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 0;
}

#podrucja .container {
    position: relative;
    z-index: 1;
}

/* =====================================================================
   PODRUČJA AKTIVNOSTI — accordion rows
   ===================================================================== */
.areas-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 4rem;
    max-width: 960px;
    margin: 0 auto;
    align-items: start;
}

.area-row {
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(0, 0, 0, 0.18);
    padding: 0 0.85rem;
}

.area-row:nth-child(9),
.area-row:nth-child(10) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.area-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.3rem 0;
    min-height: 5.9rem;
    background: none;
    border: none;
    width: 100%;
    cursor: pointer;
    font-family: var(--font-primary);
    color: inherit;
}

.area-title {
    font-size: 1.19rem;
    font-weight: 400;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1.4;
    flex: 1;
    text-align: left;
    transition: color var(--transition);
}

.area-more {
    font-size: 0.6rem;
    color: var(--gold);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    flex-shrink: 0;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.area-chevron {
    display: inline-block;
    transition: transform 0.32s ease;
    line-height: 1;
}

.area-row.open .area-chevron {
    transform: rotate(-90deg);
}

.area-header:hover .area-title { color: var(--gold); }

/* Accordion body */
.area-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.32s ease;
}

.area-row.open .area-body {
    grid-template-rows: 1fr;
}

.area-body-inner {
    overflow: hidden;
    padding-bottom: 0;
    transition: padding-bottom 0.32s ease;
}

.area-row.open .area-body-inner {
    padding-bottom: 1.25rem;
}

.area-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    padding-top: 0.2rem;
}

.area-list li {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.75;
    padding-left: 1.2rem;
    position: relative;
}

.area-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--gold);
    opacity: 0.55;
    font-size: 0.78rem;
    line-height: 1.75;
}

/* =====================================================================
   KONTAKT
   ===================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}

/* ---- Lijevi stupac: podaci ---- */
.contact-left {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact-name {
    font-size: 1rem;
    font-weight: 400;
    color: var(--gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-bottom: 1.75rem;
}

.contact-row {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

.contact-label {
    color: var(--text-muted);
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    flex-shrink: 0;
    min-width: 3.5rem;
}

.contact-value {
    color: var(--white);
    font-family: 'Chakra Petch', sans-serif;
    letter-spacing: 0.06em;
}

.contact-value a {
    color: var(--white);
    font-family: 'Chakra Petch', sans-serif;
    transition: color var(--transition);
}

.contact-value a:hover { color: var(--gold); }

.contact-address {
    color: var(--text-muted) !important;
    font-family: 'Chakra Petch', sans-serif;
    font-size: 0.88rem;
    margin-bottom: 0.25rem;
}

/* ---- Google Maps ---- */
.map-wrap {
    width: 100%;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    flex-shrink: 0;
}

.map-wrap iframe {
    display: block;
    width: 100%;
    height: 280px;
    border: 0;
    filter: grayscale(60%) invert(90%) contrast(85%);
}

/* ---- Desni stupac: forma ---- */
.contact-right {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.contact-right form {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.contact-right .form-group-message textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group {
    margin-bottom: 1.1rem;
}

.form-group label {
    display: block;
    font-size: 0.6rem;
    font-weight: 400;
    color: var(--text-muted);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 0.45rem;
}

.form-group input:not([type="checkbox"]),
.form-group textarea {
    width: 100%;
    background: var(--dark);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 0.7rem 0.9rem;
    font-family: 'Chakra Petch', sans-serif;
    font-size: 0.78rem;
    font-weight: 400;
    color: var(--white);
    text-transform: none;
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
    resize: none;
    -webkit-appearance: none;
}

.form-group input:not([type="checkbox"])::placeholder,
.form-group textarea::placeholder {
    color: #4a4a4a;
    font-family: 'Chakra Petch', sans-serif;
}

.form-group input:not([type="checkbox"]):focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(184, 151, 42, 0.10);
}

/* GDPR checkbox */
.form-gdpr { margin-top: 0.5rem; margin-bottom: 1rem; }

.gdpr-label {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    cursor: pointer;
    font-size: 0.7rem !important;
    font-weight: 400 !important;
    color: var(--text-muted) !important;
    letter-spacing: 0.05em !important;
    text-transform: none !important;
}

.gdpr-label input[type="checkbox"] {
    width: 14px;
    height: 14px;
    min-width: 14px;
    accent-color: var(--gold);
    cursor: pointer;
    margin-top: 0.15rem;
    background: var(--dark);
    border: 1px solid var(--border);
    border-radius: 2px;
    padding: 0;
}

.gdpr-link {
    color: var(--gold);
    text-decoration: underline;
    transition: color var(--transition);
}

.gdpr-link:hover { color: var(--gold-light); }

/* ---- Poruka forme ---- */
.form-message {
    margin-top: 0.75rem;
    min-height: 3.6rem;
    font-size: 0.68rem;
    letter-spacing: 0.03em;
    line-height: 1.6;
    padding: 0.75rem 1rem;
    border-radius: 4px;
    border: 1px solid transparent;
    visibility: hidden;
}

.form-message.success {
    visibility: visible;
    background: rgba(184, 151, 42, 0.08);
    border-color: var(--gold);
    color: var(--gold);
}

.form-message.error {
    visibility: visible;
    background: rgba(192, 57, 43, 0.08);
    border-color: #c0392b;
    color: #e55039;
}

/* ---- Gumbi ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.7rem 1.6rem;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
}

.btn-outline:hover { background: var(--gold); color: var(--black); }

.btn-primary {
    background: var(--gold);
    color: var(--black);
    border: 1px solid var(--gold);
    width: 100%;
    text-align: center;
    margin-top: 0.25rem;
}

.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn-primary:disabled { opacity: 0.55; cursor: not-allowed; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.footer {
    border-top: 1px solid var(--gold);
    padding: 2rem;
    text-align: center;
}

.footer-copy {
    font-size: 0.6rem;
    font-weight: 400;
    color: var(--text-muted);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.footer-copy a {
    color: var(--gold);
    transition: color var(--transition);
    text-decoration: none;
}

.footer-copy a:hover { color: var(--gold-light); }

/* =====================================================================
   ANIMACIJE — scroll fade-in
   ===================================================================== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in.visible { opacity: 1; transform: translateY(0); }

/* Staggered ulaz kartica */
.areas-list .area-row:nth-child(2)  { transition-delay: 0.04s; }
.areas-list .area-row:nth-child(3)  { transition-delay: 0.08s; }
.areas-list .area-row:nth-child(4)  { transition-delay: 0.12s; }
.areas-list .area-row:nth-child(5)  { transition-delay: 0.16s; }
.areas-list .area-row:nth-child(6)  { transition-delay: 0.20s; }
.areas-list .area-row:nth-child(7)  { transition-delay: 0.24s; }
.areas-list .area-row:nth-child(8)  { transition-delay: 0.28s; }
.areas-list .area-row:nth-child(9)  { transition-delay: 0.32s; }
.areas-list .area-row:nth-child(10) { transition-delay: 0.36s; }

/* =====================================================================
   PRIVATNOST.HTML — specifični stilovi
   ===================================================================== */
.privacy-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.privacy-header-left {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.privacy-header-title {
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--text-muted);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.privacy-page {
    padding-top: calc(var(--header-height) + 4rem);
    padding-bottom: 5rem;
    min-height: 100vh;
}

.privacy-container {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 2rem;
}

.privacy-block {
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--border);
}

.privacy-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.privacy-block-title {
    font-size: 1rem;
    font-weight: 400;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(184, 151, 42, 0.25);
}

.privacy-section-title {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin: 1.75rem 0 0.75rem;
}

.privacy-text {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.85;
    margin-bottom: 0.75rem;
}

.privacy-text strong {
    color: var(--white);
    font-weight: 600;
}

.privacy-list {
    list-style: none;
    margin: 0.5rem 0 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.privacy-list li {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
    padding-left: 1.2rem;
    position: relative;
}

.privacy-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--gold);
    opacity: 0.6;
}

.impressum-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 3rem;
    margin-top: 1rem;
}

.impressum-row {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.impressum-label {
    font-size: 0.6rem;
    color: var(--text-muted);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.impressum-value {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 0.88rem;
    color: var(--white);
    line-height: 1.5;
    letter-spacing: 0.06em;
}

.impressum-value a {
    color: var(--gold);
    transition: color var(--transition);
}

.impressum-value a:hover { color: var(--gold-light); }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 960px) {
    .areas-list { column-gap: 2.5rem; }
    .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .impressum-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .hamburger { display: flex; }

    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: #111111;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 0;
        padding: 1.5rem 0 2rem;
        opacity: 0;
        pointer-events: none;
        transition: opacity var(--transition);
        z-index: 999;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
        padding: 0.9rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu .lang-switcher {
        justify-content: center;
    }

    .nav-menu.open { opacity: 1; pointer-events: all; }
    .nav-link { font-size: 1rem; letter-spacing: 0.25em; }
    .lang-btn, .lang-sep { font-size: 1rem; }

    /* Na mobilnom backdrop-filter na headeru zarobljuje position:fixed nav-menu —
       skidamo ga i koristimo solid boju na oba stanja */
    #header.scrolled {
        background: #1a1a1a;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    #header.menu-open {
        background: #111111;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    #header.menu-open .header-logo-link {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
        pointer-events: auto;
    }

    .hero { background-attachment: scroll; }
    #podrucja { background-attachment: scroll; }
    .section { padding: 4rem 0; min-height: unset; }
    .header-inner { padding: 0 1.25rem; }
    .privacy-header-inner { padding: 0 1.25rem; }
    .privacy-header-title { display: none; }

    .map-wrap iframe { height: 220px; }

    /* Hero na tabletu: logo manji, layout ostaje row */
    .hero-content { gap: 2rem; padding: 2rem; }
}

@media (max-width: 560px) {
    .areas-list { grid-template-columns: 1fr; }
    .area-row:nth-child(9)  { border-bottom: none; }
    .area-row:nth-child(10) { border-bottom: none; }
    .area-row:last-child    { border-bottom: 1px solid rgba(255, 255, 255, 0.10); }
    .privacy-container { padding: 0 1.25rem; }

    /* Hero na mobu: složi logo iznad teksta */
    .hero-content {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    .hero-name-wrap { text-align: left; }
    .hero-divider { max-width: 200px; margin: 1rem 0; }
    .hero-logo { height: 80px; }
}
