/* =========================================================
   ОСНОВНА ПОДЕШАВАЊА
   ========================================================= */

:root {

    /* ОСНОВНА ПАЛЕТА */

    --zelena: #235347;
    --zelena-hover: #2FA98C;
    --tekst: #c3e8cf;

    /* GLOW */

    --zelena-glow: rgba(47, 169, 140, 0.8);
    --zelena-glow-srednja: rgba(47, 169, 140, 0.6);
    --zelena-glow-blaga: rgba(47, 169, 140, 0.3);
    --zelena-shadow: rgba(35, 83, 71, 0.25);

    /* ТАМНЕ БОЈЕ */

    --tamno: #0b0b0f;
    --kartica: #1a1a1a;

    /* GLASS */

    --glass: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(195, 232, 207, 0.15);
    --glass-shadow: rgba(0, 0, 0, 0.35);

    /* ОСТАЛО */

    --siva: #a9c5b2;
    --mozaik: rgba(232, 216, 192, 0.05);
}


/* =========================================================
   BODY
   ========================================================= */

body {
    font-family: 'Montserrat', sans-serif;

    background-color: var(--tamno);

    color: var(--tekst);

    margin: 0;
}


a {
    text-decoration: none;
}


/* =========================================================
   HEADBAR
   ========================================================= */

.site-headbar {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    min-height: 75px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 8px 35px;

    background: rgba(11, 11, 15, 0.25);

    border-bottom: 1px solid rgba(47, 169, 140, 0.45);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    box-shadow:
        0 2px 8px rgba(47, 169, 140, 0.30),
        0 4px 20px rgba(47, 169, 140, 0.15);

    z-index: 1000;
}


.headbar-left {
    display: flex;
    align-items: center;
}


.headbar-brand {
    display: flex;
    align-items: center;

    gap: 12px;

    color: var(--tekst);

    font-size: 1.25rem;
    font-weight: bold;

    transition: color 0.25s ease;
}


.headbar-brand:hover {
    color: var(--zelena-hover);
}


.headbar-icon {
    width: 48px;
    height: 48px;

    object-fit: contain;
}


.headbar-right {
    /* .headbar-right је НАМЕРНО ван <header>-а у HTML-у (види коментар у
       indexHeader.php), па га овде "лепимо" назад уз десну ивицу хедера
       помоћу истог position:fixed/top/right/min-height које хедер користи
       (padding-right:35px и min-height:75px из .site-headbar) — на ширим
       екранима ово изгледа идентично као да је унутра. На ≤860px испод
       ово се у потпуности преклапа новим top/right/bottom вредностима за
       мобилни преклопни панел. */
    position: fixed;

    top: 0;
    right: 35px;

    min-height: 75px;

    display: flex;
    align-items: center;

    gap: 30px;

    z-index: 1000;
}


.headbar-link {
    position: relative;

    color: var(--tekst);

    font-size: 1rem;
    font-weight: 500;

    padding: 8px 0;

    transition: color 0.25s ease;
}


.headbar-link::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 0;
    height: 2px;

    background-color: var(--zelena-hover);

    transition: width 0.25s ease;
}


.headbar-link:hover,
.headbar-link.active {
    color: var(--zelena-hover);
}


.headbar-link:hover::after,
.headbar-link.active::after {
    width: 100%;
}


/* =========================================================
   HEADBAR — МОБИЛНИ ТОГЛЕ (хамбургер) + ПРЕКЛОПНИ МЕНИ
   ========================================================= */

.headbar-toggle {
    display: none;

    flex-direction: column;
    justify-content: center;

    gap: 5px;

    width: 44px;
    height: 44px;

    padding: 0;

    background: transparent;

    border: 1px solid rgba(195, 232, 207, 0.35);
    border-radius: 10px;

    cursor: pointer;

    flex-shrink: 0;
}

.headbar-toggle span {
    display: block;

    width: 20px;
    height: 2px;

    margin: 0 auto;

    background-color: var(--tekst);
}

.headbar-overlay {
    display: none;
}

@media (max-width: 860px) {

    .site-headbar {
        padding: 8px 16px;
    }

    .headbar-brand span {
        font-size: 0.92rem;
        line-height: 1.2;
        white-space: normal;
    }

    .headbar-icon {
        width: 40px;
        height: 40px;
    }

    .headbar-toggle {
        display: flex;
    }

    .headbar-right {
        position: fixed;

        top: 0;
        right: 0;
        bottom: 0;

        width: min(78vw, 320px);

        display: flex;
        flex-direction: column;
        align-items: flex-start;

        gap: 4px;

        padding: 96px 28px 28px;

        background: rgba(11, 11, 15, 0.97);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);

        border-left: 1px solid rgba(47, 169, 140, 0.35);

        transform: translateX(100%);
        transition: transform 0.3s ease;

        z-index: 1001;

        overflow-y: auto;
    }

    .headbar-right.is-open {
        transform: translateX(0);
    }

    .headbar-link {
        width: 100%;
        padding: 14px 0;
        font-size: 1.05rem;
    }

    .headbar-overlay {
        display: block;

        position: fixed;
        inset: 0;

        background: rgba(0, 0, 0, 0.55);

        opacity: 0;
        pointer-events: none;

        transition: opacity 0.3s ease;

        z-index: 1000;
    }

    .headbar-overlay.is-open {
        opacity: 1;
        pointer-events: auto;
    }
}

@media (max-width: 420px) {

    .headbar-brand span {
        max-width: 150px;
        font-size: 0.82rem;
    }
}


/* =========================================================
   SUBHEADER (galerija.php) — ЗАКЉУЧАН НА ВРХУ
   ========================================================= */

.encyclopedia-header {
    position: sticky;
    top: 0;
    z-index: 1000;
}


/* =========================================================
   HERO — ПАРАЛАКС
   ========================================================= */

.hero {
    position: relative;

    height: 100vh;

    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    color: var(--tekst);
}


.parallax-layer {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    background-position: center;
    background-size: cover;

    transform: translateZ(0);
}


.layer-back {
    background-image: url('../img/pozadine/space_back.jpg');
    z-index: 1;
}


.layer-mid {
    background-image: url('../img/pozadine/space_mid.png');
    z-index: 3;
}


.layer-front {
    background-image: url('../img/pozadine/space_front.png');
    z-index: 4;
}


.hero-content {
    position: relative;
    z-index: 5;
}


.hero h1 {
    font-size: clamp(1.9rem, 10vw, 4rem);
    font-weight: bold;

    text-shadow:
        2px 2px 8px rgba(0, 0, 0, 0.7);
}


.hero p {
    font-size: clamp(1.05rem, 4.2vw, 1.5rem);

    margin-top: 1rem;

    color: var(--zelena-hover);

    text-shadow:
        1px 1px 5px rgba(0, 0, 0, 0.7);
}


.btn-hero {
    margin-top: 2rem;

    background-color: var(--zelena);

    color: var(--tekst);

    border: none;

    transition:
        background-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


.btn-hero:hover {
    background-color: var(--zelena-hover);

    color: var(--tekst);

    transform: translateY(-2px);

    box-shadow:
        0 0 15px var(--zelena-glow),
        0 0 30px var(--zelena-glow-blaga);
}


/* =========================================================
   HERO — VIDEO
   ========================================================= */

#heroVideo {
    filter:
        blur(1px)
        brightness(75%);
}


#heroVideo1 {
    filter: brightness(75%);
}


/* =========================================================
   HERO — VIGNETTE
   ========================================================= */

.hero-vignette {
    position: absolute;

    inset: 0;

    background: radial-gradient(
        ellipse at center,
        rgba(0, 0, 0, 0) 20%,
        rgba(0, 0, 0, 0.50) 45%,
        rgba(0, 0, 0, 0.85) 100%
    );

    z-index: 2;

    pointer-events: none;
}


/* =========================================================
   КАРТИЦЕ
   ========================================================= */

.card {
    background-color: var(--kartica);

    border: none;

    box-shadow:
        0 3px 10px var(--zelena-shadow);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.card-body {
    text-align: center;
}


.card:hover {
    transform: translateY(-10px);

    box-shadow:
        0 10px 30px var(--zelena-glow),
        0 0 20px var(--zelena-glow-srednja),
        0 0 40px var(--zelena-glow-blaga);
}


.card-title {
    color: var(--zelena-hover);

    font-weight: bold;
}


.card img {
    width: 100%;
    padding: 20px;
}


/* =========================================================
   GLASS КАРТИЦЕ
   ========================================================= */

.glass-card {
    background: var(--glass);

    border: 1px solid var(--glass-border);

    border-radius: 16px;

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    box-shadow:
        0 8px 30px var(--glass-shadow),
        0 0 10px var(--zelena-shadow);

    overflow: hidden;
}


.glass-card:hover {
    background: rgba(255, 255, 255, 0.11);

    box-shadow:
        0 15px 40px var(--glass-shadow),
        0 0 20px var(--zelena-glow-blaga),
        0 0 40px var(--zelena-shadow);
}


/* =========================================================
   CAROUSEL
   ========================================================= */

.carousel-item img {
    width: 100%;

    max-height: 500px;

    object-fit: cover;

    filter: brightness(0.85);
}


/* =========================================================
   FOOTER
   ========================================================= */

footer {
    background-color: var(--tamno);

    padding: 2rem 0;

    text-align: center;

    color: var(--siva);
}


/* =========================================================
   ADMIN (интерна страница, admin.html)
   ========================================================= */

.admin-page {
    padding: 130px 24px 60px;

    max-width: 900px;

    margin: 0 auto;
}

.admin-badge {
    display: inline-block;

    padding: 6px 14px;

    border-radius: 99px;

    background: var(--glass);

    border: 1px solid var(--glass-border);

    color: var(--zelena-hover);

    font-size: 0.78rem;

    font-weight: 600;

    letter-spacing: 0.06em;

    text-transform: uppercase;

    margin-bottom: 18px;
}

.admin-page h1 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);

    font-weight: 700;

    color: var(--tekst);

    margin: 0 0 14px;
}

.admin-lede {
    color: var(--siva);

    font-size: 1rem;

    line-height: 1.7;

    max-width: 62ch;

    margin-bottom: 40px;
}

.version-panel {
    display: flex;
    flex-wrap: wrap;

    align-items: center;
    justify-content: space-between;

    gap: 18px 28px;

    padding: 30px 28px;

    margin-bottom: 34px;

    border-radius: 18px;

    background: var(--glass);

    border: 1px solid var(--glass-border);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}

.version-panel-label {
    font-size: 0.75rem;

    text-transform: uppercase;

    letter-spacing: 0.08em;

    color: var(--siva);

    margin-bottom: 6px;
}

.version-number {
    font-size: clamp(1.9rem, 6vw, 2.6rem);

    font-weight: 700;

    color: var(--zelena-hover);

    text-shadow: 0 0 18px rgba(47, 169, 140, 0.45);
}

.version-updated {
    color: var(--siva);

    font-size: 0.9rem;
}

.admin-section-title {
    color: var(--tekst);

    font-size: 1.3rem;

    font-weight: 700;

    margin-bottom: 8px;
}

.admin-note {
    color: var(--siva);

    font-size: 0.88rem;

    margin-bottom: 22px;
}

.changelog {
    display: flex;
    flex-direction: column;

    gap: 14px;
}

.changelog-entry {
    padding: 18px 20px;

    border-radius: 14px;

    background: var(--kartica);

    border: 1px solid var(--glass-border);
}

.changelog-entry-head {
    display: flex;
    flex-wrap: wrap;

    align-items: baseline;

    gap: 10px;
}

.changelog-entry .cl-version {
    font-weight: 700;

    color: var(--zelena-hover);

    font-size: 0.95rem;
}

.changelog-entry .cl-date {
    font-size: 0.78rem;

    color: var(--siva);
}

.changelog-entry p {
    margin: 8px 0 0;

    color: var(--siva);

    font-size: 0.9rem;

    line-height: 1.6;
}

@media (max-width: 600px) {

    .admin-page {
        padding: 108px 16px 50px;
    }

    .version-panel {
        padding: 24px 20px;
    }
}


/* =========================================================
   INDEX — ИЗДВОЈЕНИ (GLOW) ДЕЛОВИ

   Тамна трака преко целе ширине сајта, glow само на
   горњој и доњој ивици (не са страна). Текст (кад га
   има) живи у обичној .container секцији УНУТАР ове
   траке, потпуно нетакнут овим стилом.
   ========================================================= */

.index-glow-bar {
    position: relative;

    z-index: 2;

    width: 100%;

    background-color: var(--tamno);

    box-shadow:
        0 -10px 22px rgba(47, 169, 140, 0.45),
        0 10px 22px rgba(47, 169, 140, 0.45);
}


.index-glow-bar-tanka {
    min-height: 70px;
}


/* =========================================================
   INDEX — СЕКЦИЈЕ СА СЛИКОМ + ВЕРТИКАЛНА ТРАКА
   ========================================================= */

.index-image-section {
    position: relative;

    width: 100%;
    height: 85vh;
}


.index-image-clip {
    position: absolute;

    top: 0;
    bottom: 0;

    left: 0;
    right: 0;

    overflow: hidden;
}


/*
 * Секција 1 — делилац на 25%: лево (мало, 0-25%),
 * десно (велико, 25-100%).
 */

.index-clip-1-malo {
    left: 0;
    width: 25%;
}


.index-clip-1-veliko {
    left: 25%;
    width: 75%;
}


/*
 * Секција 2 — делилац на 75%: лево (велико, 0-75%),
 * десно (мало, 75-100%).
 */

.index-clip-2-veliko {
    left: 0;
    width: 75%;
}


.index-clip-2-malo {
    left: 75%;
    width: 25%;
}


/* =========================================================
   INDEX — КАРТИЦЕ ПРЕКО СЛИКА (glass, као у Енциклопедији)
   ========================================================= */

.index-feature-card {
    position: absolute;

    z-index: 4;

    top: 40px;
    left: 40px;
    right: 40px;

    max-width: 480px;

    padding: 28px 30px;

    border-radius: 16px;

    background: var(--glass);

    border: 1px solid var(--glass-border);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    color: var(--tekst);

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}


.index-feature-card-2 {
    position: absolute;

    z-index: 4;

    bottom: 40px;
    right: 40px;

    top: 220px;

    left: 40px;

    padding: 28px 30px;

    border-radius: 16px;

    background: var(--glass);

    border: 1px solid var(--glass-border);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    color: var(--tekst);

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}


.index-feature-card h3 {
    font-size: 1.4rem;

    font-weight: 700;

    margin-bottom: 10px;
}


.index-feature-card p {
    font-size: 0.95rem;

    opacity: 0.85;

    margin: 0;
}


.index-mini-cards {
    position: absolute;

    z-index: 4;

    top: 30px;
    bottom: 30px;
    left: 30px;
    right: 30px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    gap: 14px;
}


.index-mini-card {
    padding: 22px 10px;

    border-radius: 12px;

    background: var(--glass);

    border: 1px solid var(--glass-border);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    color: var(--tekst);

    font-weight: 600;

    font-size: 0.9rem;

    text-align: center;

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);

    transition:
        transform 0.2s ease,
        border-color 0.2s ease;
}


.index-mini-card:hover {
    transform: translateY(-3px);

    border-color: var(--zelena-hover);
}




/* =========================================================
   INDEX — БРЗИ НАВ (транспарентни "хедер" преко слике,
   иконица + натпис, glow пилула на hover-у)
   ========================================================= */

.index-links-content {
    position: absolute;

    inset: 0;

    z-index: 4;

    display: flex;

    flex-direction: column;
}


.index-quick-nav {
    flex: 0 0 auto;

    margin-top: 34px;

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 50px;

    background: transparent;
}


.index-quick-nav-item {
    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 8px;

    width: 150px;

    padding: 16px 12px;

    border-radius: 18px;

    text-decoration: none;

    color: var(--tekst);

    font-weight: 600;

    font-size: 0.82rem;

    text-align: center;

    background: transparent;

    border: 1px solid transparent;

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}


.index-quick-nav-icon {
    font-size: 1.6rem;

    line-height: 1;

    filter:
        drop-shadow(0 1px 3px rgba(0, 0, 0, 0.7));

    text-shadow: 0 0 0 transparent;

    transition: text-shadow 0.3s ease;
}


.index-quick-nav-item:hover,
.index-quick-nav-item.active {
    background:
        radial-gradient(
            circle at center,
            rgba(47, 169, 140, 0.35) 0%,
            rgba(47, 169, 140, 0.12) 70%,
            transparent 100%
        );

    border-color: rgba(47, 169, 140, 0.6);

    box-shadow:
        inset 0 0 6px 1px rgba(47, 169, 140, 0.75),
        inset 0 0 14px rgba(47, 169, 140, 0.45),
        inset 0 0 26px rgba(47, 169, 140, 0.25),
        0 0 10px 1px rgba(47, 169, 140, 0.6),
        0 0 26px rgba(47, 169, 140, 0.65),
        0 0 10px rgba(47, 169, 140, 0.5);

    transform: translateY(-3px);
}


.index-quick-nav-item:hover .index-quick-nav-icon,
.index-quick-nav-item.active .index-quick-nav-icon {
    text-shadow:
        0 0 10px rgba(47, 169, 140, 0.95),
        0 0 22px rgba(47, 169, 140, 0.75),
        0 0 38px rgba(47, 169, 140, 0.5);
}


.index-quick-nav-item:hover .index-quick-nav-label,
.index-quick-nav-item.active .index-quick-nav-label {
    color: var(--zelena-hover);

    text-shadow:
        0 0 8px rgba(47, 169, 140, 0.85),
        0 0 18px rgba(47, 169, 140, 0.55);
}


.index-quick-nav-label {
    transition: color 0.3s ease;
}


@media (max-width: 700px) {

    .index-quick-nav {
        gap: 16px;
    }

    .index-quick-nav-item {
        width: 110px;

        font-size: 0.72rem;

        padding: 10px 8px;
    }

    .index-quick-nav-icon {
        font-size: 1.3rem;
    }

}


/* =========================================================
   INDEX — ПАНЕЛ ИСПОД БРЗОГ НАВА (glass картица, фиксна
   висина без скрола, приказује опис + дугме за одабрани
   таб)
   ========================================================= */

.index-links-panel {
    flex: 0 0 auto;

    align-self: center;

    width: min(90%, 720px);

    height: 340px;

    margin: auto 0;

    padding: 30px;

    border-radius: 20px;

    background: var(--glass);

    border: 1px solid var(--glass-border);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    box-shadow:
        0 15px 45px rgba(0, 0, 0, 0.4),
        0 0 25px var(--zelena-shadow);

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;
}


.index-links-placeholder {
    color: var(--siva);

    font-size: 1.05rem;

    text-align: center;
}


.index-links-placeholder[hidden] {
    display: none;
}


.index-links-panel-content {
    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 26px;

    max-width: 640px;

    text-align: center;
}


.index-links-panel-content[hidden] {
    display: none;
}


.index-links-panel-text {
    margin: 0;

    color: var(--tekst);

    font-size: 1.1rem;

    line-height: 1.75;
}


.index-links-panel-btn {
    display: inline-block;

    padding: 14px 36px;

    border-radius: 18px;

    text-decoration: none;

    color: var(--tekst);

    font-weight: 600;

    font-size: 0.95rem;

    background:
        radial-gradient(
            circle at center,
            rgba(255, 255, 255, 0.18) 0%,
            rgba(255, 255, 255, 0.06) 70%,
            transparent 100%
        );

    border: 1px solid rgba(255, 255, 255, 0.35);

    box-shadow:
        inset 0 0 6px 1px rgba(255, 255, 255, 0.4),
        inset 0 0 14px rgba(255, 255, 255, 0.22),
        inset 0 0 26px rgba(255, 255, 255, 0.12),
        0 0 10px 1px rgba(255, 255, 255, 0.25),
        0 0 26px rgba(255, 255, 255, 0.18),
        0 0 10px rgba(255, 255, 255, 0.15);

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}


.index-links-panel-btn:hover {
    background:
        radial-gradient(
            circle at center,
            rgba(47, 169, 140, 0.35) 0%,
            rgba(47, 169, 140, 0.12) 70%,
            transparent 100%
        );

    border-color: rgba(47, 169, 140, 0.6);

    box-shadow:
        inset 0 0 6px 1px rgba(47, 169, 140, 0.75),
        inset 0 0 14px rgba(47, 169, 140, 0.45),
        inset 0 0 26px rgba(47, 169, 140, 0.25),
        0 0 10px 1px rgba(47, 169, 140, 0.6),
        0 0 26px rgba(47, 169, 140, 0.65),
        0 0 10px rgba(47, 169, 140, 0.5);

    transform: translateY(-3px);
}


@media (max-width: 700px) {

    .index-links-panel {
        width: 92%;

        height: 280px;

        margin: auto 0;

        padding: 18px;
    }

    .index-links-panel-text {
        font-size: 1rem;
    }

}




/* =========================================================
   INDEX — КАРУСЕЛ МЕСТА
   ========================================================= */

.index-mesta-carousel-wrap {
    position: absolute;

    z-index: 4;

    top: 50%;

    left: 0;
    right: 0;

    transform: translateY(-50%);

    height: 380px;

    display: flex;

    align-items: center;

    gap: 14px;

    padding: 0 30px;
}


.index-mesta-swiper {
    flex: 1;

    height: 100%;

    overflow: hidden;
}


.index-mesta-slide {
    width: 260px !important;

    height: 340px !important;

    flex-shrink: 0;

    border-radius: 16px;

    overflow: hidden;

    position: relative;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}


.index-mesta-slide a {
    display: block;

    width: 100%;
    height: 100%;

    position: relative;
}


.index-mesta-slide img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
}


.index-mesta-naziv {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    padding: 12px 10px;

    background:
        linear-gradient(
            to top,
            rgba(11, 11, 15, 0.9),
            transparent
        );

    color: var(--tekst);

    font-weight: 700;

    font-size: 0.85rem;

    text-align: center;
}


.index-mesta-nav {
    flex-shrink: 0;

    width: 44px;
    height: 44px;

    border-radius: 50%;

    background: var(--glass);

    border: 1px solid var(--glass-border);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    color: var(--tekst);

    font-size: 1.4rem;

    cursor: pointer;

    transition:
        background 0.2s ease,
        border-color 0.2s ease;
}


.index-mesta-nav:hover {
    background: rgba(35, 83, 71, 0.78);

    border-color: var(--zelena-hover);
}


.index-section-image {
    position: absolute;

    top: 50%;

    left: 0;

    width: 100%;
    height: 150%;

    transform: translateY(-50%);

    object-fit: cover;

    display: block;

    will-change: transform;
}


/*
 * Исти принцип као .index-glow-bar (тамна боја,
 * glow на ивицама), само вертикална и позиционирана
 * на месту делиоца — glow иде на ЛЕВУ и ДЕСНУ ивицу
 * (не горе/доле).
 */

.index-divider-bar {
    position: absolute;

    top: 0;
    bottom: 0;

    z-index: 3;

    width: 35px;

    transform: translateX(-50%);

    background-color: var(--tamno);
}


/*
 * Glow СТРОГО лево/десно — pseudo-елементи су
 * висине идентичне самом div-у (top:0;bottom:0;),
 * па нема "цурења" изнад/испод (за разлику од
 * box-shadow-а, који увек заокружује цео обод).
 */

.index-divider-bar::before,
.index-divider-bar::after {
    content: "";

    position: absolute;

    top: 0;
    bottom: 0;

    width: 24px;

    pointer-events: none;
}


.index-divider-bar::before {
    right: 100%;

    background:
        linear-gradient(
            to left,
            rgba(47, 169, 140, 0.45),
            transparent
        );
}


.index-divider-bar::after {
    left: 100%;

    background:
        linear-gradient(
            to right,
            rgba(47, 169, 140, 0.45),
            transparent
        );
}


.index-divider-1 {
    left: 25%;
}


.index-divider-2 {
    left: 75%;
}


/* =========================================================
   INDEX — МОБИЛНИ/ТАБЛЕТ РАСПОРЕД

   На малим екранима нема простора за две колоне (25%/75%)
   са картицама апсолутно позиционираним преко слике — све
   се "одмотава" у нормалан вертикални ток: слика, па картице
   испод ње, редом, тако да ништа не буде исечено нити
   прекривено.
   ========================================================= */

@media (max-width: 900px) {

    .index-image-section {
        height: auto;

        display: flex;
        flex-direction: column;
    }

    .index-image-clip {
        position: relative;

        top: auto;
        bottom: auto;
        left: auto !important;
        right: auto !important;

        width: 100% !important;
        height: auto;

        min-height: 300px;
    }

    .index-section-image {
        position: relative;

        top: auto;
        left: auto;

        /* mainJavaScript.js исписује инлајн transform за паралакс
           док странica скролује (важи за desktop распоред) — на
           мобилном распореду слика је у нормалном току, па
           !important гаси тај инлајн transform да се слика не
           помера ван свог оквира и не прави празнине. */
        transform: none !important;

        width: 100%;
        height: 260px;
    }

    .index-feature-card,
    .index-feature-card-2 {
        position: relative;

        top: auto;
        left: auto;
        right: auto;
        bottom: auto;

        max-width: none;
        width: calc(100% - 32px);

        margin: -40px auto 18px;
    }

    .index-mini-cards {
        position: relative;

        top: auto;
        left: auto;
        right: auto;
        bottom: auto;

        width: calc(100% - 32px);

        margin: -30px auto 20px;
    }

    .index-divider-bar {
        display: none;
    }

    .index-links-content {
        position: relative;

        inset: auto;

        padding: 24px 16px 30px;
    }

    .index-quick-nav {
        margin-top: 6px;
    }

    .index-mesta-carousel-wrap {
        position: relative;

        top: auto;
        left: auto;
        right: auto;
        transform: none;

        height: auto;

        padding: 18px 10px 28px;
    }
}

@media (max-width: 560px) {

    .index-feature-card,
    .index-feature-card-2,
    .index-mini-cards {
        margin-top: -24px;
        padding: 22px 20px;
    }

    .index-mesta-slide {
        width: 200px !important;
        height: 260px !important;
    }
}


/* =========================================================
   МОЗАИК
   ========================================================= */

.mozaik {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background-image: url('../img/pozadine/mozaik.png');

    background-repeat: repeat;

    opacity: 0.05;

    z-index: 0;
}


.row {
    padding-bottom: 30px;
}


/* =========================================================
   ЛИНИЈА НА КАРТИЦАМА МЕСТА
   ========================================================= */

.hr_80 {
    width: 60%;

    align-self: center;

    margin: 20px auto;

    border: 0;

    border-top: 2px solid var(--zelena-glow-srednja);

    opacity: 1;

    transition:
        width 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


.place-card:hover .hr_80 {
    width: 80%;

    border-top-color: var(--zelena-hover);

    box-shadow:
        0 0 8px var(--zelena-hover);
}


/* =========================================================
   TIMELINE
   ========================================================= */

.main-timeline-2 {
    position: relative;
}


.main-timeline-2::after {
    content: "";

    position: absolute;

    width: 3px;

    background-color: var(--zelena);

    top: 0;
    bottom: 0;

    left: 50%;

    margin-left: -3px;
}


.timeline-2 {
    position: relative;

    background-color: inherit;

    width: 50%;
}


.timeline-2::after {
    content: "";

    position: absolute;

    width: 25px;
    height: 25px;

    right: -11px;
    top: 15px;

    background-color: var(--zelena);

    border-radius: 50%;

    z-index: 1;
}


.left-2 {
    padding: 0 40px 20px 0;
    left: 0;
}


.right-2 {
    padding: 0 0 20px 40px;
    left: 50%;
}


.left-2::before {
    content: " ";

    position: absolute;

    top: 18px;
    right: 30px;

    z-index: 1;

    border: medium solid var(--zelena);

    border-width: 10px 0 10px 10px;

    border-color:
        transparent
        transparent
        transparent
        var(--zelena);
}


.right-2::before {
    content: " ";

    position: absolute;

    top: 18px;
    left: 30px;

    z-index: 1;

    border: medium solid var(--zelena);

    border-width: 10px 10px 10px 0;

    border-color:
        transparent
        var(--zelena)
        transparent
        transparent;
}


.right-2::after {
    left: -14px;
}


.timeline .card {
    border: 2px solid var(--zelena);
    color: var(--tekst);
}


/* =========================================================
   FLIP СЛИКА НА КАРТИЦИ
   ========================================================= */

.card-image-flip {
    width: 100%;
    height: 400px;

    perspective: 1000px;

    overflow: hidden;
}


.card-image-inner {
    position: relative;

    width: 100%;
    height: 100%;

    transition: transform 0.6s ease;

    transform-style: preserve-3d;
}


.card-image-front,
.card-image-back {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}


.card-image-front img,
.card-image-back img {
    display: block;

    width: 100%;
    height: 100%;

    padding: 20px;

    object-fit: cover;
}


.card-image-back {
    transform: rotateY(180deg);
}


/* =========================================================
   FLIP — ОСНОВНИ
   ========================================================= */

.place-card:not(.show-back):hover .card-image-inner {
    transform: rotateY(180deg);
}


.place-card.show-back .card-image-inner {
    transform: rotateY(180deg);
}


.place-card.show-back:hover .card-image-inner {
    transform: rotateY(0deg);
}


/* =========================================================
   TOGGLE (КАРТЕ / СЛИКЕ) — исти "pill" стил као
   Регистар/Листе у Енциклопедији, центрирано.
   ========================================================= */

.mesta-tabs-wrap {
    display: flex;

    justify-content: center;

    margin: 40px auto;
}


.mesta-tabs {
    display: inline-flex;

    gap: 6px;

    padding: 4px;

    border-radius: 12px;

    background: rgba(255, 255, 255, 0.03);

    border: 1px solid rgba(255, 255, 255, 0.06);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.45),
        0 0 30px var(--zelena-glow-blaga),
        0 0 14px var(--zelena-glow);
}


.mesta-tab {
    padding: 10px 28px;

    border: none;

    border-radius: 9px;

    background: transparent;

    color: var(--tekst);

    font-family: 'Montserrat', sans-serif;

    font-size: 14px;

    font-weight: 600;

    opacity: 0.6;

    cursor: pointer;

    transition:
        background 0.2s ease,
        opacity 0.2s ease;
}


.mesta-tab:hover {
    opacity: 0.85;
}


.mesta-tab.active {
    background:
        color-mix(
            in srgb,
            var(--zelena) 55%,
            transparent
        );

    opacity: 1;

    box-shadow:
        0 0 10px var(--zelena-glow);
}


/* =========================================================
   СЕКЦИЈА СА КАРТИЦАМА — ПРЕКО СЛИКЕ
   ========================================================= */

.mesta-kartice-section {
    position: relative;

    overflow: hidden;
}


.mesta-kartice-bg {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: 0;
}


.mesta-kartice-overlay {
    position: absolute;

    inset: 0;

    background: rgba(11, 11, 15, 0.60);

    z-index: 1;
}


.mesta-kartice-content {
    position: relative;

    z-index: 2;
}


/* =========================================================
   КАРТИЦЕ МЕСТА — GLASS ЕФЕКАТ
   ========================================================= */

.place-card {
    background:
        rgba(255, 255, 255, 0.06) !important;

    border:
        1px solid rgba(47, 169, 140, 0.35) !important;

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.35);
}


.place-card:hover {
    border-color:
        rgba(47, 169, 140, 0.65) !important;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.45),
        0 0 30px var(--zelena-glow-blaga),
        0 0 14px var(--zelena-glow);
}


/* =========================================================
   FLIP — ЛЕВА КОЛОНА
   ========================================================= */

.row > div:nth-child(3n + 1)
.place-card:not(.show-back):hover
.card-image-inner {
    transform: rotateY(180deg);
}


.row > div:nth-child(3n + 1)
.place-card.show-back
.card-image-inner {
    transform: rotateY(180deg);
}


.row > div:nth-child(3n + 1)
.place-card.show-back:hover
.card-image-inner {
    transform: rotateY(0deg);
}


/* =========================================================
   FLIP — СРЕДЊА КОЛОНА
   ========================================================= */

.row > div:nth-child(3n + 2)
.card-image-back {
    transform: rotateX(180deg);
}


.row > div:nth-child(3n + 2)
.place-card:not(.show-back):hover
.card-image-inner {
    transform: rotateX(180deg);
}


.row > div:nth-child(3n + 2)
.place-card.show-back
.card-image-inner {
    transform: rotateX(180deg);
}


.row > div:nth-child(3n + 2)
.place-card.show-back:hover
.card-image-inner {
    transform: rotateX(0deg);
}


/* =========================================================
   FLIP — ДЕСНА КОЛОНА
   ========================================================= */

.row > div:nth-child(3n)
.place-card:not(.show-back):hover
.card-image-inner {
    transform: rotateY(-180deg);
}


.row > div:nth-child(3n)
.place-card.show-back
.card-image-inner {
    transform: rotateY(-180deg);
}


.row > div:nth-child(3n)
.place-card.show-back:hover
.card-image-inner {
    transform: rotateY(0deg);
}


/* =========================================================
   HERO — Z-INDEX
   ========================================================= */

.layer-back {
    z-index: 1;
}


.hero-vignette {
    z-index: 2;
}


.layer-mid {
    z-index: 3;
}


.layer-front {
    z-index: 4;
}


.hero-content {
    z-index: 5;
}


/* =========================================================
   MZ — HERO VIDEO
   ========================================================= */

.hero-section {
    position: relative;

    min-height: calc(100vh - 75px);

    overflow: hidden;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--tekst);
}


.hero-video {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    filter: brightness(75%);

    z-index: 1;
}


.hero-overlay {
    position: absolute;

    inset: 0;

    background: radial-gradient(
        ellipse at center,
        rgba(0, 0, 0, 0.05) 20%,
        rgba(0, 0, 0, 0.50) 55%,
        rgba(0, 0, 0, 0.85) 100%
    );

    z-index: 2;

    pointer-events: none;
}


.hero-section .hero-content {
    position: relative;

    z-index: 3;

    padding-top: 80px;
    padding-bottom: 80px;
}


/* =========================================================
   MZ — НАЗИВ + ГРБ
   ========================================================= */

.mz-title {
    display: flex;
    align-items: center;

    width: 100%;

    gap: 15px;

    text-align: left;
}


.mz-title-icon {
    display: block;

    width: 8rem;
    height: 8rem;

    object-fit: contain;

    flex-shrink: 0;
}


.mz-title .hero-title {
    margin: 0;
}


.hero-title {
    text-shadow:
        2px 2px 8px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(0, 0, 0, 0.5);
}


/* =========================================================
   MZ — СЛИКА
   ========================================================= */

.hero-image {
    display: block;

    width: fit-content;

    margin: 0 auto 1.5rem auto;

    padding: 20px;

    background-color: rgba(45, 45, 45, 0.75);

    border-radius: 4px;

    box-shadow:
        0 0 35px var(--zelena-shadow),
        0 0 15px var(--zelena-shadow);
}


.hero-image img {
    display: block;

    width: auto;

    max-width: 600px;
    max-height: 500px;

    object-fit: contain;
}


/* =========================================================
   MZ — ТЕКСТ
   ========================================================= */

.hero-text {
    max-width: 900px;

    margin-left: auto;
    margin-right: auto;

    font-size: 1.15rem;

    line-height: 1.7;

    text-shadow:
        1px 1px 5px rgba(0, 0, 0, 0.8);
}


/* =========================================================
   MZ — КРАТКА ЛИНИЈА
   ========================================================= */

.kratka-linija {
    width: 120px;

    margin: 20px auto 30px;

    border: 0;

    border-top: 2px solid var(--tekst);

    opacity: 1;
}


/* =========================================================
   MZ — MODAL / GLASS
   ========================================================= */

.modal-glass {
    background: rgba(26, 26, 26, 0.82);

    color: var(--tekst);

    border: 1px solid var(--glass-border);

    border-radius: 16px;

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 25px var(--zelena-shadow);
}


.modal-glass .modal-title {
    color: var(--tekst);
}


.modal-glass .modal-body {
    color: var(--tekst);

    line-height: 1.7;
}


.modal-glass .btn-secondary {
    background-color: var(--zelena);

    border-color: var(--zelena);

    color: var(--tekst);
}


.modal-glass .btn-secondary:hover {
    background-color: var(--zelena-hover);

    border-color: var(--zelena-hover);
}


.hero-section .btn-hero {
    color: var(--tekst);
}


/* =========================================================
   ИНФОКАРТИЦА
   ========================================================= */

.infokartica-tabs {
    display: flex;

    gap: 4px;

    padding: 8px 8px 0;

    border-bottom: 1px solid rgba(47, 169, 140, 0.25);

    background: rgba(0, 0, 0, 0.10);
}


.infokartica-tabs .nav-link {
    position: relative;

    color: var(--siva);

    background: transparent;

    border: 1px solid transparent;
    border-bottom: none;

    border-radius: 10px 10px 0 0;

    padding: 10px 18px;

    font-family: 'Montserrat', sans-serif;
    font-weight: 500;

    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease;
}


.infokartica-tabs .nav-link:hover {
    color: var(--zelena-hover);

    background: rgba(47, 169, 140, 0.10);
}


.infokartica-tabs .nav-link.active {
    color: var(--tekst);

    background: rgba(35, 83, 71, 0.55);

    border-color: rgba(47, 169, 140, 0.35);

    border-bottom-color: rgba(35, 83, 71, 0.55);
}


.infokartica-tabs .nav-link.active::after {
    content: "";

    position: absolute;

    left: 10px;
    right: 10px;

    bottom: -1px;

    height: 2px;

    background-color: var(--zelena-hover);

    box-shadow:
        0 0 8px var(--zelena-glow);
}


.infokartica-content {
    min-height: 180px;

    padding: 24px;

    color: var(--tekst);

    font-size: 1rem;

    line-height: 1.75;
}


.infokartica-content .tab-pane {
    animation: infokarticaFade 0.2s ease;
}


@keyframes infokarticaFade {

    from {
        opacity: 0;
        transform: translateY(4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================================
   MESTA — PARALLAX HERO
   ========================================================= */

.mesta-hero {
    position: relative;

    width: 100%;

    height: 100vh;

    min-height: 600px;

    overflow: hidden;

    display: flex;

    align-items: center;
    justify-content: center;

    text-align: center;

    margin: 0;

    isolation: isolate;
}


.mesta-hero-video {
    position: absolute;

    top: -20%;
    left: 0;

    width: 100%;
    height: 140%;

    object-fit: cover;

    z-index: 1;

    filter:
        brightness(72%)
        saturate(90%);

    will-change: transform;

    transform:
        translate3d(0, 0, 0)
        scale(1.18);
}


.mesta-hero-overlay {
    position: absolute;

    inset: 0;

    z-index: 2;

    background:
        linear-gradient(
            to bottom,
            rgba(11, 11, 15, 0.45),
            rgba(11, 11, 15, 0.15) 45%,
            rgba(11, 11, 15, 0.75) 100%
        );

    pointer-events: none;
}


.mesta-hero-content {
    position: relative;

    z-index: 3;

    color: var(--tekst);

    padding: 20px;
}


.mesta-hero-content h1 {
    font-family: 'Montserrat', sans-serif;

    font-size: clamp(3rem, 7vw, 6rem);

    font-weight: 700;

    margin: 0;

    text-shadow:
        0 3px 15px rgba(0, 0, 0, 0.8),
        0 0 30px rgba(0, 0, 0, 0.5);
}


.mesta-hero-content p {
    margin-top: 15px;

    font-size: 1.3rem;

    color: var(--siva);

    text-shadow:
        0 2px 10px rgba(0, 0, 0, 0.8);
}


.mesta-hero + section {
    padding-top: 60px !important;
}


/* =========================================================
   О МЕСТУ — ЦЕЛИНА
   ========================================================= */

.o-mestu-section {
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: var(--tamno);
}


/* =========================================================
   О МЕСТУ — ПРЕГРАДНИ ДИВ
   ========================================================= */

.o-mestu-header {
    position: relative;

    width: 100%;

    padding: 25px 20px;

    background-color: var(--zelena);

    text-align: center;

    box-shadow:
        0 -2px 8px var(--zelena-glow-srednja),
        0 -4px 20px var(--zelena-glow-blaga);

    z-index: 3;
}


.o-mestu-header h2 {
    margin: 0;

    color: var(--tekst);

    font-size: clamp(2.2rem, 5vw, 4rem);

    font-weight: 700;

    text-shadow:
        0 2px 8px rgba(0, 0, 0, 0.35);
}


/* =========================================================
   О МЕСТУ — NAVBAR STYLE ДИВ
   ========================================================= */

.o-mestu-subheader {
    position: relative;

    width: 100%;

    height: 55px;

    margin-bottom: -55px;

    background: rgba(11, 11, 15, 0.25);

    border-top: 1px solid rgba(47, 169, 140, 0.45);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    box-shadow:
        0 2px 8px rgba(47, 169, 140, 0.30),
        0 4px 20px rgba(47, 169, 140, 0.15);

    z-index: 4;
}

.o-mestu-subheader-content {
    width: 100%;
    height: 70px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding-bottom: 8px;
}


.o-mestu-subheader-content .btn {
    margin: 0;

    padding: 6px 18px;

    font-size: 0.95rem;

    line-height: 1.2;
}

/* =========================================================
   О МЕСТУ — СЛИКА + GLASS
   ========================================================= */

.o-mestu-image {
    position: relative;

    width: 100%;

    min-height: 750px;

    overflow: hidden;

    display: flex;

    align-items: center;
    justify-content: center;
}


/* =========================================================
   ПОЗАДИНСКА СЛИКА
   ========================================================= */

.o-mestu-image > img {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    filter:
        blur(6px)
        brightness(60%);

    transform: scale(1.06);

    z-index: 1;
}


/* =========================================================
   О МЕСТУ — GLASS КАРТИЦА
   ========================================================= */

.o-mestu-glass {
    position: relative;

    width: 80%;

    max-width: 1400px;

    margin: 70px auto;

    padding: 45px;

    background: rgba(255, 255, 255, 0.08);

    border: 1px solid rgba(195, 232, 207, 0.15);

    border-radius: 20px;

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.35),
        0 0 25px var(--zelena-shadow);

    z-index: 2;
}


.o-mestu-text {
    color: var(--tekst);

    font-size: 1.15rem;

    line-height: 1.8;

    text-align: left;

    text-shadow:
        1px 1px 5px rgba(0, 0, 0, 0.7);
}


/* =========================================================
   MOBILE
   ========================================================= */

@media screen and (max-width: 600px) {

    .o-mestu-header {
        padding: 20px 15px;
    }


    .o-mestu-subheader {
        height: 45px;

        margin-bottom: -45px;
    }


    .o-mestu-image {
        min-height: 600px;
    }


    .o-mestu-glass {
        width: 90%;

        margin: 50px auto;

        padding: 25px;
    }


    .o-mestu-text {
        font-size: 1rem;

        line-height: 1.7;
    }

}

/* =========================================================
   ГАЛЕРИЈА
   ========================================================= */

.galerija-glass {
    padding: 35px;
}


/* =========================================================
   ГАЛЕРИЈА — GRID
   ========================================================= */

.galerija-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;

    width: 100%;
}


/* =========================================================
   ГАЛЕРИЈА — ITEM
   ========================================================= */

.galerija-item {
    display: block;

    position: relative;

    overflow: hidden;

    border-radius: 12px;

    text-decoration: none;

    aspect-ratio: 16 / 10;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.35);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


.galerija-item:hover {
    transform: translateY(-6px) scale(1.02);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.55),
        0 0 20px var(--zelena-shadow);
}


/* =========================================================
   ГАЛЕРИЈА — СЛИКА
   ========================================================= */

.galerija-item-inner {
    position: relative;

    width: 100%;
    height: 100%;

    overflow: hidden;
}


.galerija-item img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.6s ease,
        filter 0.4s ease;
}


.galerija-item:hover img {
    transform: scale(1.08);

    filter:
        brightness(75%)
        saturate(110%);
}


/* =========================================================
   ГАЛЕРИЈА — HOVER СЛОЈ
   ========================================================= */

.galerija-hover {
    position: absolute;

    inset: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        rgba(0, 0, 0, 0.25);

    opacity: 0;

    transition:
        opacity 0.35s ease;
}


.galerija-item:hover .galerija-hover {
    opacity: 1;
}


.galerija-hover span {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 55px;
    height: 55px;

    border-radius: 50%;

    background:
        rgba(11, 11, 15, 0.65);

    border: 1px solid rgba(47, 169, 140, 0.45);

    color: var(--zelena-hover);

    font-size: 2rem;

    font-weight: 300;

    line-height: 1;

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    box-shadow:
        0 0 20px var(--zelena-shadow);

    transform: scale(0.7);

    transition:
        transform 0.35s ease;
}


.galerija-item:hover .galerija-hover span {
    transform: scale(1);
}


/* =========================================================
   ГАЛЕРИЈА — ПРАЗНА
   ========================================================= */

.galerija-empty {
    text-align: center;
}


/* =========================================================
   ПАНОРАМЕ (360.php) — НАЗИВ ОБЈЕКТА НА КАРТИЦИ
   ========================================================= */

.pano-item {
    display: block;

    width: 100%;

    padding: 0;
    border: none;

    background: transparent;

    cursor: pointer;
}


.pano-item-naziv {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    padding: 10px 14px;

    background: linear-gradient(
        to top,
        rgba(11, 11, 15, 0.85),
        transparent
    );

    color: var(--tekst);

    font-size: 0.9rem;
    font-weight: 600;

    text-align: left;
}


/* =========================================================
   ПАНОРАМЕ — PANNELLUM VIEWER OVERLAY
   ========================================================= */

.pano-viewer-overlay {
    display: none;

    position: fixed;
    inset: 0;

    z-index: 2000;

    background: rgba(5, 5, 7, 0.92);

    align-items: center;
    justify-content: center;

    padding: 30px;
}


.pano-viewer-overlay.active {
    display: flex;
}


.pano-viewer-modal {
    display: flex;
    flex-direction: column;

    width: 100%;
    max-width: 1100px;

    background: rgba(11, 11, 15, 0.85);

    border: 1px solid rgba(47, 169, 140, 0.35);

    border-radius: 16px;

    overflow: hidden;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.6),
        0 0 30px var(--zelena-shadow);
}


.pano-viewer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 14px 20px;

    border-bottom: 1px solid rgba(47, 169, 140, 0.25);
}


.pano-viewer-title-group {
    display: flex;
    align-items: center;

    gap: 14px;

    flex: 1;

    justify-content: center;
}


.pano-viewer-title {
    color: var(--tekst);

    font-size: 1.05rem;
    font-weight: 600;

    text-align: center;
}


.pano-nav {
    background: none;
    border: none;

    color: var(--tekst);

    font-size: 1.6rem;
    line-height: 1;

    cursor: pointer;

    padding: 4px 10px;

    transition: color 0.2s ease;
}


.pano-nav:hover {
    color: var(--zelena-hover);
}


.pano-nav:disabled {
    opacity: 0.3;
    cursor: default;
}


.pano-viewer-close {
    background: none;
    border: none;

    color: var(--tekst);

    font-size: 1.3rem;

    cursor: pointer;

    padding: 4px 10px;

    transition: color 0.2s ease;
}


.pano-viewer-close:hover {
    color: var(--zelena-hover);
}


.pano-viewer-stage {
    width: 100%;
    height: 60vh;

    min-height: 320px;

    position: relative;
}


.pano-panorama {
    width: 100%;
    height: 100%;
}


.pano-viewer-description {
    padding: 14px 20px;

    color: var(--tekst);

    font-size: 0.9rem;

    opacity: 0.85;

    border-top: 1px solid rgba(47, 169, 140, 0.2);
}


/* =========================================================
   GLIGHTBOX — МАЛО УКЛАПАЊЕ У ТВОЈ ДИЗАЈН
   ========================================================= */

.glightbox-container .gslide-description {
    background: rgba(11, 11, 15, 0.85);
}


.glightbox-container .gslide-title {
    color: var(--tekst);
}


.glightbox-clean .gclose,
.glightbox-clean .gnext,
.glightbox-clean .gprev {
    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}


.glightbox-clean .gclose:hover,
.glightbox-clean .gnext:hover,
.glightbox-clean .gprev:hover {
    transform: scale(1.12);
}


/* =========================================================
   ГАЛЕРИЈА — TABLET
   ========================================================= */

@media screen and (max-width: 900px) {

    .galerija-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 15px;
    }

}


/* =========================================================
   ГАЛЕРИЈА — MOBILE
   ========================================================= */

@media screen and (max-width: 600px) {

    .galerija-glass {
        padding: 20px;
    }


    .galerija-grid {
        grid-template-columns: 1fr;

        gap: 15px;
    }


    .galerija-item {
        aspect-ratio: 16 / 11;
    }

}

/* =========================================================
   ПРАВА ГАЛЕРИЈА — GLASS
   ========================================================= */

.prava-galerija-glass {
    padding: 40px 70px;
}


/* =========================================================
   WRAPPER
   ========================================================= */

.prava-galerija-wrapper {
    position: relative;

    width: 100%;
}


/* =========================================================
   SWIPER
   ========================================================= */

.prava-galerija {
    width: 100%;
    overflow: hidden;
}


.prava-galerija .swiper-wrapper {
    align-items: stretch;
}


.prava-galerija .swiper-slide {
    height: auto;
}


/* =========================================================
   СЛИКА
   ========================================================= */

.galerija-main-item {
    position: relative;

    display: block;

    width: 100%;

    aspect-ratio: 16 / 10;

    overflow: hidden;

    border-radius: 12px;

    text-decoration: none;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.35);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


.galerija-main-item:hover {
    transform: scale(1.025);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.55),
        0 0 20px var(--zelena-shadow);
}


.galerija-main-item img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition:
        transform 0.6s ease,
        filter 0.4s ease;
}


.galerija-main-item:hover img {
    transform: scale(1.07);

    filter:
        brightness(75%)
        saturate(110%);
}


/* =========================================================
   HOVER
   ========================================================= */

.galerija-main-overlay {
    position: absolute;

    inset: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        rgba(0, 0, 0, 0.20);

    opacity: 0;

    transition:
        opacity 0.3s ease;
}


.galerija-main-item:hover .galerija-main-overlay {
    opacity: 1;
}


.galerija-main-overlay span {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 55px;
    height: 55px;

    border-radius: 50%;

    background:
        rgba(11, 11, 15, 0.70);

    border: 1px solid rgba(47, 169, 140, 0.50);

    color: var(--zelena-hover);

    font-size: 2rem;

    box-shadow:
        0 0 20px var(--zelena-shadow);

    backdrop-filter: blur(8px);

    transform: scale(0.7);

    transition:
        transform 0.3s ease;
}


.galerija-main-item:hover
.galerija-main-overlay span {
    transform: scale(1);
}


/* =========================================================
   СТРЕЛИЦЕ
   ========================================================= */

.galerija-arrow {
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    z-index: 10;

    width: 50px;
    height: 50px;

    border: 1px solid rgba(47, 169, 140, 0.45);

    border-radius: 50%;

    background:
        rgba(11, 11, 15, 0.70);

    color: var(--tekst);

    font-size: 1.6rem;

    line-height: 1;

    display: flex;

    align-items: center;
    justify-content: center;

    cursor: pointer;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    box-shadow:
        0 0 20px var(--zelena-shadow);

    transition:
        transform 0.25s ease,
        background-color 0.25s ease,
        color 0.25s ease,
        opacity 0.25s ease;
}


.galerija-arrow:hover {
    transform:
        scale(1.10);

    background:
        rgba(35, 83, 71, 0.90);

    color: var(--tekst);
}


.galerija-arrow-prev {
    left: -60px;
}


.galerija-arrow-next {
    right: -60px;
}


.galerija-arrow.swiper-button-disabled {
    opacity: 0.25;

    pointer-events: none;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media screen and (max-width: 900px) {

    .prava-galerija-glass {
        padding: 30px 55px;
    }


    .galerija-arrow-prev {
        left: -45px;
    }


    .galerija-arrow-next {
        right: -45px;
    }

}


@media screen and (max-width: 600px) {

    .prava-galerija-glass {
        padding: 20px 45px;
    }


    .galerija-main-item {
        aspect-ratio: 16 / 11;
    }


    .galerija-arrow {
        width: 40px;
        height: 40px;

        font-size: 1.3rem;
    }


    .galerija-arrow-prev {
        left: -42px;
    }


    .galerija-arrow-next {
        right: -42px;
    }

}

/* =========================================================
   ГАЛЕРИЈА — PREVIEW 3×2
   ========================================================= */

.galerija-preview-glass {
    width: 88%;
    max-width: 1500px;
    padding: 35px;
}


.galerija-preview-wrapper {
    position: relative;

    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
}


.galerija-preview-swiper {
    width: calc(100% - 90px);
    overflow: hidden;
}


.galerija-preview-swiper .swiper-slide {
    height: auto;
}


.galerija-preview-item {
    position: relative;

    display: block;

    width: 100%;
    aspect-ratio: 16 / 10;

    overflow: hidden;

    border-radius: 14px;

    text-decoration: none;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.35);

    transform: translateZ(0);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}


.galerija-preview-item:hover {
    transform:
        translateY(-5px)
        scale(1.015);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.5),
        0 0 20px var(--zelena-glow-blaga);
}


.galerija-preview-item img,
.galerija-preview-item video {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.6s ease,
        filter 0.4s ease;
}


.galerija-preview-item:hover img,
.galerija-preview-item:hover video {
    transform: scale(1.08);

    filter: brightness(0.72);
}


.galerija-preview-overlay {
    position: absolute;

    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        rgba(0, 0, 0, 0);

    opacity: 0;

    transition:
        opacity 0.35s ease,
        background 0.35s ease;
}


.galerija-preview-item:hover .galerija-preview-overlay {
    opacity: 1;

    background:
        rgba(0, 0, 0, 0.30);
}


.galerija-preview-overlay span {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: var(--tekst);

    background:
        rgba(13, 158, 50, 0.85);

    font-size: 1.7rem;

    box-shadow:
        0 0 25px rgba(13, 158, 50, 0.5);

    transform: scale(0.6);

    transition:
        transform 0.35s ease;
}


.galerija-preview-item:hover .galerija-preview-overlay span {
    transform: scale(1);
}


.galerija-video-badge {
    position: absolute;

    top: 12px;
    right: 12px;

    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: white;

    background:
        rgba(13, 158, 50, 0.9);

    font-size: 0.85rem;

    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.4);

    z-index: 3;
}


/* =========================================================
   СТРЕЛИЦЕ PREVIEW ГАЛЕРИЈЕ
   ========================================================= */

.galerija-arrow {
    position: relative;

    flex-shrink: 0;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.22);

    border-radius: 50%;

    color: var(--tekst);

    background:
        rgba(10, 15, 13, 0.65);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    font-size: 1.7rem;

    cursor: pointer;

    z-index: 5;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


.galerija-arrow:hover {
    transform: 
    scale(1.12),
    translateY(0) !important;

    background:
        var(--zelena);

    border-color:
        var(--zelena);

    box-shadow:
        0 0 25px var(--zelena-glow-srednja);
}


.galerija-arrow:active {
    transform: scale(0.94);
}


.galerija-preview-prev {
    margin-right: 18px;
    transform: translateY(0) !important;
    transform: scale(0.5);
}


.galerija-preview-next {
    margin-left: 18px;
    transform: translateY(0) !important;
    transform: scale(0.5);
}


.galerija-arrow.swiper-button-disabled {
    opacity: 0.25;

    cursor: default;

    box-shadow: none;

    transform: scale(0.95);
}


/* =========================================================
   ПРАВА ГАЛЕРИЈА — СТРАНИЦА
   ========================================================= */

.galerija-page-section {
    min-height: 100vh;
}


.galerija-page-image {
    min-height: 100vh;
}


.prava-galerija-glass {
    width: 80%;
    max-width: 1700px;

    padding: 40px;
}


/* =========================================================
   СВЕ СЛИКЕ / ВИДЕО — GRID
   ========================================================= */

.galerija-full-grid {
    width: 100%;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 22px;
}


.galerija-full-item {
    display: block;

    min-width: 0;

    text-decoration: none;

    animation:
        galerijaItemIn 0.55s ease both;
}


.galerija-full-inner {
    position: relative;

    width: 100%;

    aspect-ratio: 16 / 10;

    overflow: hidden;

    border-radius: 16px;

    background:
        rgba(0, 0, 0, 0.25);

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.35);

    transition:
        transform 0.45s cubic-bezier(.2,.8,.2,1),
        box-shadow 0.45s ease;
}


.galerija-full-item:hover .galerija-full-inner {
    transform:
        translateY(-7px)
        scale(1.015);

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.55),
        0 0 25px var(--zelena-glow-blaga);
}


.galerija-full-inner img,
.galerija-full-inner video {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.7s cubic-bezier(.2,.8,.2,1),
        filter 0.45s ease;
}


.galerija-full-item:hover img,
.galerija-full-item:hover video {
    transform: scale(1.08);

    filter: brightness(0.65);
}


/* =========================================================
   OVERLAY
   ========================================================= */

.galerija-full-overlay {
    position: absolute;

    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        rgba(0, 0, 0, 0);

    opacity: 0;

    transition:
        opacity 0.35s ease,
        background 0.35s ease;
}


.galerija-full-item:hover .galerija-full-overlay {
    opacity: 1;

    background:
        rgba(0, 0, 0, 0.28);
}


.galerija-full-overlay span {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: white;

    background:
        var(--zelena);

    font-size: 1.8rem;

    box-shadow:
        0 0 30px var(--zelena-glow-srednja);

    transform:
        scale(0.55)
        rotate(-15deg);

    transition:
        transform 0.4s cubic-bezier(.2,.8,.2,1);
}


.galerija-full-item:hover .galerija-full-overlay span {
    transform:
        scale(1)
        rotate(0);
}


/* =========================================================
   ФИКСНИ ФИЛТЕРИ
   ========================================================= */

.galerija-filter-bar {
    position: fixed;

    left: 22px;
    top: 50%;

    transform: translateY(-50%);

    width: 145px;

    display: flex;
    flex-direction: column;

    gap: 10px;

    padding: 12px;

    border:
        1px solid rgba(255, 255, 255, 0.15);

    border-radius: 18px;

    background:
        rgba(8, 14, 11, 0.68);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    box-shadow:
        0 15px 45px rgba(0, 0, 0, 0.4),
        0 0 25px rgba(13, 158, 50, 0.08);

    z-index: 1000;
}


.galerija-filter {
    position: relative;

    width: 100%;

    min-height: 46px;

    display: flex;
    align-items: center;
    gap: 10px;

    padding: 9px 12px;

    border:
        1px solid transparent;

    border-radius: 12px;

    color:
        rgba(255, 255, 255, 0.75);

    background:
        rgba(255, 255, 255, 0.035);

    font-size: 0.95rem;

    font-weight: 600;

    text-align: left;

    cursor: pointer;

    overflow: hidden;

    transition:
        color 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.galerija-filter::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;
    bottom: 0;

    width: 3px;

    background:
        var(--zelena);

    transform:
        scaleY(0);

    transform-origin: center;

    transition:
        transform 0.3s ease;
}


.galerija-filter:hover {
    color: white;

    background:
        rgba(13, 158, 50, 0.15);

    border-color:
        rgba(13, 158, 50, 0.35);

    transform:
        translateX(4px);

    box-shadow:
        0 5px 20px rgba(13, 158, 50, 0.12);
}


.galerija-filter.active {
    color: white;

    background:
        linear-gradient(
            135deg,
            rgba(13, 158, 50, 0.8),
            rgba(13, 158, 50, 0.45)
        );

    border-color:
        rgba(120, 255, 160, 0.4);

    box-shadow:
        0 7px 22px rgba(13, 158, 50, 0.25);
}


.galerija-filter.active::before {
    transform:
        scaleY(1);
}


.galerija-filter-icon {
    width: 25px;
    height: 25px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 7px;

    background:
        rgba(255, 255, 255, 0.1);

    font-size: 0.9rem;

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}


.galerija-filter:hover .galerija-filter-icon {
    transform:
        rotate(-8deg)
        scale(1.08);
}


.galerija-filter.active .galerija-filter-icon {
    background:
        rgba(255, 255, 255, 0.18);
}


/* =========================================================
   FILTER — СКРИВАЊЕ
   ========================================================= */

.galerija-full-item.galerija-hidden {
    display: none;
}


.galerija-no-results {
    display: none;

    padding: 50px 20px;

    color:
        rgba(255, 255, 255, 0.7);

    text-align: center;

    font-size: 1.15rem;
}


.galerija-no-results.visible {
    display: block;
}


/* =========================================================
   EMPTY
   ========================================================= */

.galerija-empty {
    padding: 50px;

    color:
        rgba(255, 255, 255, 0.75);

    text-align: center;

    font-size: 1.1rem;
}


/* =========================================================
   ANIMACIЈА
   ========================================================= */

@keyframes galerijaItemIn {

    from {
        opacity: 0;
        transform:
            translateY(18px)
            scale(0.97);
    }

    to {
        opacity: 1;
        transform:
            translateY(0)
            scale(1);
    }

}


/* =========================================================
   GLIGHTBOX — МАЛО УЛЕПШАВАЊЕ
   ========================================================= */

.glightbox-clean .gslide-description {
    background:
        rgba(8, 14, 11, 0.85);
}


/* =========================================================
   MOBILE
   ========================================================= */

@media screen and (max-width: 900px) {

    .galerija-full-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 15px;
    }


    .galerija-filter-bar {
        left: 10px;

        width: 120px;

        padding: 9px;
    }


    .galerija-filter {
        font-size: 0.85rem;

        min-height: 42px;

        padding: 7px 9px;
    }


    .prava-galerija-glass {
        width: 92%;

        padding: 25px;
    }

}


@media screen and (max-width: 600px) {

    .galerija-full-grid {
        grid-template-columns: 1fr;

        gap: 14px;
    }


    .galerija-filter-bar {
        position: fixed;

        left: 50%;
        top: auto;
        bottom: 15px;

        transform: translateX(-50%);

        width: auto;

        flex-direction: row;

        padding: 8px;

        border-radius: 16px;
    }


    .galerija-filter {
        width: auto;

        min-width: 82px;

        justify-content: center;

        font-size: 0.78rem;

        padding: 8px 9px;
    }


    .galerija-filter span:last-child {
        display: block;
    }


    .galerija-filter-icon {
        display: none;
    }


    .galerija-preview-glass {
        width: 92%;

        padding: 18px;
    }


    .galerija-preview-swiper {
        width: calc(100% - 60px);
    }


    .galerija-arrow {
        width: 40px;
        height: 40px;

        font-size: 1.3rem;
    }


    .galerija-preview-prev {
        margin-right: 8px;
    }


    .galerija-preview-next {
        margin-left: 8px;
    }

}


/* =========================================================
   ФЛОАТИНГ БОЧНИ МЕНИ (mesto.php)

   Фиксиран уз леву ивицу екрана, вертикално центриран.
   Сакривен (померен ван екрана улево) док се не пређе
   hero секција, а затим "исклизне" удесно преко JS класе
   .is-visible.
   ========================================================= */

.side-float-menu {
    position: fixed;

    top: 50%;
    left: 0;

    z-index: 950;

    display: flex;
    flex-direction: column;

    gap: 12px;

    padding: 16px 10px;

    border-radius: 0 18px 18px 0;

    background: var(--glass);

    border: 1px solid var(--glass-border);
    border-left: none;

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    box-shadow:
        0 10px 30px var(--glass-shadow),
        0 0 20px var(--zelena-shadow);

    transform: translate(-100%, -50%);

    opacity: 0;

    pointer-events: none;

    transition:
        transform 0.45s ease,
        opacity 0.35s ease;
}


.side-float-menu.is-visible {
    transform: translate(0, -50%);

    opacity: 1;

    pointer-events: auto;
}


.side-float-item {
    position: relative;

    display: flex;
    align-items: center;

    height: 46px;
    width: 46px;

    padding: 0 0 0 12px;

    border-radius: 999px;

    overflow: hidden;

    color: var(--tekst);

    background: transparent;

    border: 1px solid transparent;

    white-space: nowrap;

    transition:
        width 0.35s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


.side-float-icon {
    flex-shrink: 0;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 22px;

    font-size: 1.2rem;
    line-height: 1;

    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.6));

    transition: text-shadow 0.3s ease;
}


.side-float-label {
    margin-left: 12px;

    padding-right: 22px;

    font-size: 0.85rem;
    font-weight: 600;

    opacity: 0;

    transition: opacity 0.25s ease 0.05s;
}


.side-float-item:hover,
.side-float-item:focus-visible {
    width: 230px;

    background:
        radial-gradient(
            circle at center,
            rgba(47, 169, 140, 0.35) 0%,
            rgba(47, 169, 140, 0.12) 70%,
            transparent 100%
        );

    border-color: rgba(47, 169, 140, 0.6);

    box-shadow:
        inset 0 0 6px 1px rgba(47, 169, 140, 0.75),
        inset 0 0 14px rgba(47, 169, 140, 0.45),
        inset 0 0 26px rgba(47, 169, 140, 0.25),
        0 0 10px 1px rgba(47, 169, 140, 0.6),
        0 0 26px rgba(47, 169, 140, 0.65),
        0 0 10px rgba(47, 169, 140, 0.5);
}


.side-float-item:hover .side-float-icon,
.side-float-item:focus-visible .side-float-icon {
    text-shadow:
        0 0 10px rgba(47, 169, 140, 0.95),
        0 0 22px rgba(47, 169, 140, 0.75);
}


.side-float-item:hover .side-float-label,
.side-float-item:focus-visible .side-float-label {
    opacity: 1;

    color: #ffffff;
}


@media (max-width: 900px) {

    .side-float-menu {
        display: none;
    }

}
