:root {
    --crna: #000000;
    --bela: #ffffff;
    --zlatna: rgb(197, 179, 110);
    --tamna: #111111;
    --siva: #f5f5f5;
    --tekst: #333333;
}

::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-track { background-color: #f1f1f1; border-radius: 10px; }
::-webkit-scrollbar-thumb { background-color: black; border-radius: 10px; border: 3px solid #f1f1f1; }
::-webkit-scrollbar-thumb:hover { background-color: #1d1d1d; }

* { margin: 0; padding: 0; box-sizing: border-box; }

body { font-family: "Rubik", sans-serif; color: var(--tekst); }

/* OVERLAY */
.overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1001;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background-color: black;
    position: fixed;
    top: 0; width: 100%;
    z-index: 1002;
}
.logo img { height: 40px; width: auto; margin-left: 43px; }
.nav-links { list-style: none; display: flex; margin-right: 40px; }
.nav-links li { margin-left: 20px; }
.nav-links a { text-decoration: none; color: white; font-size: 18px; }
.menu-toggle { display: none; cursor: pointer; flex-direction: column; }
.bar { width: 25px; height: 3px; background-color: white; margin: 4px 0; }

/* PAGE HEADER */
.page-header {
    background-color: var(--crna);
    padding: 54px 40px 68px;
    margin-top: 74px;
    text-align: center;
    border-bottom: 3px solid var(--zlatna);
}

/* BREADCRUMBS */
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
    font-size: 0.82em;
    padding-bottom: 20px;
    border-bottom: 1px solid #2a2a2a;
}
.breadcrumb a {
    color: var(--zlatna);
    text-decoration: none;
    transition: opacity 0.2s;
    opacity: 0.85;
}
.breadcrumb a:hover { opacity: 1; text-decoration: underline; }
.breadcrumb-sep { color: #555; }
.breadcrumb-current { color: #888; }

/* H1 */
.page-header h1 {
    font-size: 2em;
    color: var(--zlatna);
    letter-spacing: 1px;
    margin-top: 18px;
    margin-bottom: 18px;
    text-transform: uppercase;
    animation: slideIn 0.8s ease-out;
    line-height: 1.35;
}

.page-header .subtitle {
    font-size: 1.05em;
    color: #cccccc;
    font-style: italic;
    font-weight: 300;
    margin-top: 4px;
    padding-bottom: 4px;
}

/* HIGHLIGHTS STRIP */
.highlights-strip {
    background-color: #111;
    padding: 44px 20px;
    border-bottom: 2px solid #222;
}
.highlights-inner {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}
.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    flex: 1 1 260px;
    max-width: 300px;
}
.highlight-icon {
    color: var(--zlatna);
    font-size: 1.3em;
    margin-top: 3px;
    flex-shrink: 0;
}
.highlight-item p {
    color: #ddd;
    font-size: 0.95em;
    line-height: 1.55;
}

/* CONTENT WRAPPER */
.content-wrapper-grad {
    animation: fadeIn 1s ease-out;
}

/* INTRO BADGE */
.intro-badge {
    max-width: 880px;
    margin: 50px auto 0;
    padding: 24px 32px;
    background-color: #fffdf5;
    border-left: 5px solid var(--zlatna);
    border-radius: 0 10px 10px 0;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
    font-size: 1.05em;
    font-style: italic;
    color: #444;
    line-height: 1.65;
}

/* MAIN TEXT SECTION */
.main-content-section {
    max-width: 880px;
    margin: 44px auto;
    padding: 0 20px;
}
.main-content-section p {
    font-size: 1.04em;
    line-height: 1.8;
    color: var(--tekst);
    margin-bottom: 22px;
    text-align: justify;
}

/* CONTACT CTA */
.city-contact-cta {
    background-color: var(--crna);
    color: var(--bela);
    padding: 60px 20px;
    text-align: center;
    border-top: 3px solid var(--zlatna);
    border-bottom: 3px solid var(--zlatna);
}
.city-contact-cta h2 {
    font-size: 1.7em;
    color: var(--zlatna);
    margin-bottom: 36px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.contact-grid {
    max-width: 820px;
    margin: 0 auto 36px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.contact-card {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-top: 3px solid var(--zlatna);
    border-radius: 8px;
    padding: 22px 24px;
    flex: 1 1 210px;
    max-width: 250px;
    text-align: center;
}
.contact-card i {
    font-size: 1.6em;
    color: var(--zlatna);
    margin-bottom: 12px;
    display: block;
}
.contact-card h3 {
    font-size: 0.82em;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}
.contact-card p,
.contact-card a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.88em;
    line-height: 1.6;
    display: block;
}
.contact-card a:hover { color: var(--zlatna); }
.cta-btn {
    display: inline-block;
    background-color: var(--zlatna);
    color: var(--crna);
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 6px;
    font-size: 1.02em;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    margin-top: 8px;
}
.cta-btn:hover {
    background-color: var(--bela);
    color: var(--crna);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

/* EXTENDED CONTENT */
.extended-section {
    background-color: var(--siva);
    padding: 60px 20px;
    border-top: 1px solid #e4e4e4;
}
.extended-inner {
    max-width: 880px;
    margin: 0 auto;
}
.extended-inner h3 {
    font-size: 1.2em;
    color: var(--crna);
    margin-bottom: 24px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--zlatna);
    display: inline-block;
}
.extended-inner p {
    font-size: 1.02em;
    line-height: 1.8;
    color: #444;
    margin-bottom: 22px;
    text-align: justify;
}
.extended-inner a {
    color: var(--zlatna);
    text-decoration: none;
    border-bottom: 1px solid rgba(197, 179, 110, 0.4);
    transition: border-color 0.2s;
}
.extended-inner a:hover {
    border-bottom-color: var(--zlatna);
}

/* BACK TO SERVICE */
.back-to-service {
    background: #f0ece0;
    border-top: 3px solid var(--zlatna);
    padding: 22px 20px;
    text-align: center;
}
.back-to-service a {
    color: var(--crna);
    text-decoration: none;
    font-size: 0.93em;
    font-weight: 600;
    transition: color 0.2s;
}
.back-to-service a:hover { color: rgb(150, 135, 80); }
.back-to-service i { margin-right: 6px; }

/* FOOTER */
.footer {
    background-color: black;
    color: white;
    padding: 20px 0;
    text-align: center;
    font-family: "Rubik", sans-serif;
}
.footer p { font-size: 1em; margin: 0; }
.footer a { color: rgb(197, 179, 110); text-decoration: none; }
.footer a:hover { text-decoration: underline; }

/* ANIMATIONS */
@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}
@keyframes slideIn {
    0% { transform: translateX(-60px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

/* RESPONSIVE */
@media screen and (min-width: 769px) {
    .close-menu { display: none; }
}

@media screen and (max-width: 768px) {
    .navbar { padding: 15px 20px; }
    .logo img { margin-left: 0; }

    .menu-toggle { display: flex; flex-direction: column; cursor: pointer; z-index: 1003; }
    .menu-toggle.hidden { display: none; }

    .nav-links {
        display: flex; flex-direction: column;
        position: fixed; top: 0; right: -100%;
        width: 250px; height: 100vh; margin-right: 0;
        background-color: black; text-align: left;
        padding-top: 60px; transition: right 0.3s ease-in-out; z-index: 1003;
    }
    .nav-links.active { right: 0; }
    .nav-links li { padding: 15px; }
    .nav-links a { color: white; font-size: 20px; display: block; }
    .close-menu {
        display: none; position: absolute; top: 15px; right: 20px;
        font-size: 30px; color: white; cursor: pointer;
    }
    .nav-links.active .close-menu { display: block; }

    .page-header { padding: 36px 20px 52px; }
    .page-header h1 { font-size: 1.3em; margin-top: 14px; margin-bottom: 14px; }
    .page-header .subtitle { font-size: 0.92em; }
    .breadcrumb { margin-bottom: 24px; padding-bottom: 16px; font-size: 0.76em; }

    .highlights-strip { padding: 28px 16px; }
    .highlights-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        max-width: 100%;
    }
    .highlight-item {
        flex: none;
        width: 100%;
        max-width: 100%;
        padding: 16px 0;
        border-bottom: 1px solid #222;
    }
    .highlight-item:last-child { border-bottom: none; }

    .intro-badge { margin: 30px 16px 0; padding: 20px 20px; }

    .main-content-section { padding: 0 16px; }

    .contact-grid { flex-direction: column; align-items: center; }
    .contact-card { max-width: 100%; width: 100%; }

    .footer p { font-size: 0.9em; }
}
