/* 1. GLOBAL & VARIABLES
--------------------------------------------- */
:root {
    --cream: #F2E9DC;
    --clay: #A47148;
    --pine: #2F3E46;
    --oak: #2F3E46;
}

#story { margin-top: 0; }

html {
    scroll-behavior: smooth;
    font-size: 112.5%;
}

body {
    margin: 0;
    font-family: 'Source Serif 4', serif;
    color: var(--pine);
    background: var(--cream) url('img/paper-bg.png');
    line-height: 1.6;
    max-width: 100vw;
    overflow-x: hidden;
    /* Uklonjen stari padding jer je kajron sada na dnu */
}

a {
    color: inherit;
    text-decoration: none;
}

/* 2. LAYOUT & STRUCTURE
--------------------------------------------- */
section {
    max-width: 960px;
    margin: 3rem auto;
    padding: 0 1rem;
}

.grid3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

h1, h2, h3, summary {
    font-family: 'Cinzel', serif;
}

h2 {
    font-size: 2rem;
    color: var(--clay);
    margin-bottom: .5rem;
    text-align: center;
}

p, li {
    font-size: 1.05rem;
}

/* =========================================
    HERO HEADER STILOVI
    ========================================= */
header {
    position: relative;
    height: 100vh;
    min-height: 600px;
    width: 100%;
    overflow: hidden;
    background: #000;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    font-family: 'Montserrat', sans-serif;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenBurns 20s infinite alternate;
}
@keyframes kenBurns { from { transform: scale(1); } to { transform: scale(1.15); } }

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.hero-text-left {
    position: absolute;
    top: 25px;
    left: 20px;
    z-index: 20;
    text-align: left;
    max-width: 85%;
    color: white;
}

.hero-welcome {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #d6d3d1;
    opacity: 0.9;
    margin: 0 0 2px 0;
    font-family: 'Montserrat', sans-serif;
}

.hero-brand-sub {
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: #fff;
    margin: 0 0 30px 0;
    font-family: 'Playfair Display', serif;
    line-height: 1.1;
}

header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    line-height: 1.2;
    font-weight: 400;
    color: white;
    text-shadow: 0 4px 10px rgba(0,0,0,0.6);
    margin: 0;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    text-align: left;
}

.hero-divider {
    height: 1px;
    width: 60px;
    background-color: rgba(245, 158, 11, 0.9);
    margin: 7px 0;
    box-shadow: 0 0 10px rgba(245,158,11,0.6);
}

.hero-quote {
    font-size: 1rem;
    font-weight: 300;
    font-style: italic;
    color: #f5f5f4;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    margin: 0;
    text-align: left;
}

.hero-bottom {
    position: relative;
    z-index: 10;
    padding-bottom: 30px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-icon-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(2px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 10px;
    width: 90%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

#hero-message-wrapper {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: all 0.5s ease;
}
#hero-message-wrapper.open {
    max-height: 100px;
    opacity: 1;
}
#hero-message-text {
    font-size: 14px;
    color: white;
    text-align: center;
    margin: 0;
    padding: 5px 5px 10px 5px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.8);
    line-height: 1.3;
}

.hero-icons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
    text-align: center;
}
.h-icon {
    cursor: pointer;
    transition: transform 0.2s;
    padding: 5px;
}
.h-icon:hover { transform: translateY(-3px); }
.h-emoji { font-size: 1.8rem; display: block; margin-bottom: 2px; }
.h-text { font-size: 9px; text-transform: uppercase; font-weight: bold; color: #f5f5f4; letter-spacing: 1px; }

.hero-scroll {
    margin-top: 15px;
    color: rgba(255,255,255,0.7);
    animation: bounce 2s infinite;
}

@media (min-width: 768px) {
    .hero-text-left { top: 110px; left: 50px; max-width: 60%; }
    header h1 { font-size: 3.5rem; }
    .hero-brand-sub { font-size: 1.8rem; }
    /* Ovaj red sakriva ikonice na desktopu: */
    .hero-icon-box { display: none !important; }
}

/* 4. HEADER & NAVIGATION
--------------------------------------------- */
.mobile-menu-button {
    display: block;
    position: fixed;
    top: 20px;
    right: 20px;
    font-size: 24px;
    z-index: 1001;
    cursor: pointer;
    color: white;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.mobile-menu.show {
    display: block;
}

.mobile-menu__list {
    background: #fdf5e6;
    margin: 0;
    padding: 15px;
    list-style: none;
    text-align: left;
    position: absolute;
    top: 20px;
    right: 20px;
    width: min(260px, 75vw);
    max-height: 80vh;
    overflow: auto;
    border: 2px solid #d4af37;
    border-radius: 16px;
}

.mobile-menu__list li {
    margin: 10px 0;
    border-bottom: 1px solid #eee;
}

.mobile-menu__list a {
    text-decoration: none;
    color: #4B2E2B;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* 5. COMPONENTS
--------------------------------------------- */
.gold-button-container {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 12px;
    padding: 10px 0;
    scroll-snap-type: x mandatory;
}

.gold-button-container::-webkit-scrollbar { height: 6px; }
.gold-button-container::-webkit-scrollbar-track { background: transparent; }
.gold-button-container::-webkit-scrollbar-thumb { background-color: #d4af37; border-radius: 3px; }
.gold-button-container { scrollbar-color: #d4af37 transparent; scrollbar-width: thin; }

.gold-button {
    background-color: #d4af37;
    color: #000;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 18px;
    border: none;
    border-radius: 10px;
    white-space: nowrap;
    flex: 0 0 auto;
    text-decoration: none;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 1);
    transition: background-color 0.3s, transform 0.2s;
}
.gold-button:hover { 
    background-color: #b9972e;
    transform: translateY(-1px);
}
.gold-button:focus-visible {
    outline: 3px solid var(--clay);
    outline-offset: 2px;
}

.scroll-hint {
    font-size: 16px;
    color: #555;
    margin-top: 6px;
    text-align: center;
}

.features {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 1px auto 0;
    padding: 12px 0;
    max-width: 98vw;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}
.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.97rem;
    color: var(--pine);
    font-weight: 600;
    min-width: 80px;
    margin-bottom: 7px;
}
.feature-icon { font-size: 1.6rem; margin-bottom: 5px; }

.card {
    background: var(--cream);
    padding: 1.5rem;
    border: 1px solid var(--pine);
    box-shadow: 0 2px 6px rgba(0, 0, 0, .05);
}
.card h3 {
    position: relative;
    padding-left: 1.6rem;
}
.card h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: .15rem;
    width: 1.1rem;
    height: 1.1rem;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23A47148'%3E%3Cpath d='M9.5 16.2 5.3 12l1.4-1.4 2.8 2.8 7-7 1.4 1.4z'/%3E%3C/svg%3E") no-repeat center/contain;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}
.gallery img {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
    border: 4px solid var(--cream);
    box-shadow: 0 4px 8px rgba(0, 0, 0, .1);
    transform: rotate(var(--rot, 0deg));
}
.gallery img:nth-child(odd) { --rot: -2deg; }
.gallery img:nth-child(even) { --rot: 1.5deg; }

.video-wrapper { max-width: 340px; margin: 0 auto; }
.video-container {
    position: relative;
    padding-bottom: 177.77%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    border-radius: 16px; 
    box-shadow: 0 6px 16px rgba(0, 0, 0, .25); 
}
.video-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

details {
    background: var(--cream);
    border: 1px solid var(--pine);
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .05);
}
summary {
    cursor: pointer;
    font-weight: 700;
    list-style: none;
    position: relative;
    padding-right: 1.3rem;
    font-size: 1.05rem;
}
summary::after { content: "+"; position: absolute; right: 0; top: 0; font-weight: 700; transition: .3s; }
details[open] summary::after { content: "–"; }
summary::-webkit-details-marker { display: none; }

.price-list {
    list-style: none;
    padding: 0;
    max-width: 720px;
    margin: 0 auto;
    text-align: left;
    background: var(--cream);
    border: 4px solid var(--cream);
    box-shadow: 0 6px 16px rgba(0, 0, 0, .25);
}
.price-list li {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, .07);
    line-height: 1.45;
    font-size: 1.08rem;
}
.price-list li:first-child { background: var(--pine); color: var(--cream); text-align: center; font-weight: 700; }
.price-list li:last-child { border-bottom: none; }
.price-list em { font-size: .9rem; color: var(--pine); }
.price-list .note { font-size: .85rem; color: var(--pine); }

.slider-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    overflow: hidden;
    border: 2px solid goldenrod;
    border-radius: 16px;
    height: 500px;
}
.slider-track {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
    height: 100%;
}
.slide { width: 100%; height: 100%; flex-shrink: 0; }
.slide img { width: 100%; height: 100%; object-fit: cover; border-radius: 14px; }
.slider-caption {
    position: absolute; bottom: 60px; left: 0; width: 100%; background: rgba(0, 0, 0, 0.4);
    color: white; font-weight: bold; font-size: 1rem; padding: 0.5rem; text-align: center; font-family: 'Source Serif 4', serif;
}
.slider-arrow {
    position: absolute; top: 50%; transform: translateY(-50%); background: transparent; color: goldenrod;
    border: none; border-radius: 50%; width: 36px; height: 36px; font-size: 1.5rem; font-weight: bold; cursor: pointer; z-index: 10; transition: all 0.3s ease;
}
.slider-arrow:hover { box-shadow: 0 0 10px goldenrod; transform: translateY(-50%) scale(1.1); }
.slider-arrow.prev { left: 10px; }
.slider-arrow.next { right: 10px; }

.slider-dots { position: absolute; bottom: 10px; width: 100%; text-align: center; z-index: 5; }
.slider-dots span {
    display: inline-block; width: 10px; height: 10px; margin: 0 5px; background-color: lightgray; border-radius: 50%; cursor: pointer;
}
.slider-dots span.active { background-color: goldenrod; }

.contact-container { text-align: center; margin-top: 30px; }
.contact-icons { display: flex; justify-content: center; gap: 40px; }
.contact-icons img { width: 40px; height: 40px; }
.contact-icons div > div { margin-top: 5px; }

.map-wrapper {
    max-width: 960px; margin: 0 auto; border: 4px solid var(--cream); box-shadow: 0 6px 16px rgba(0, 0, 0, .25); overflow: hidden;
}
.map-wrapper iframe { display: block; border: 0; width: 100%; }

footer { background: var(--pine); color: var(--cream); text-align: center; padding: 2rem 1rem; font-size: .9rem; }
.stat-counter { font-family: 'Cinzel', serif; font-size: 1.2rem; text-align: center; margin: 1rem 0; color: var(--clay); }
.stat-counter span { font-weight: 700; }

.prijateljski-linkovi h2 { font-size: 0.9em; }
.prijateljski-linkovi ul { list-style: none; padding: 0; text-align: center; font-family: 'Cinzel', serif; }

.reveal { opacity: 1 !important; visibility: visible !important; transform: none !important; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }

@media (max-width: 600px) {
    html { font-size: 118%; }
    h2 { font-size: 2.15rem; }
    .card p { font-size: 1.06rem; }
    section { margin: 3rem auto; }
    summary { padding: .6rem 1.5rem; font-size: 1.1rem; }
    .slider-container { height: 450px; }
    .slider-caption { font-size: 0.9rem; bottom: 50px; }
}

@media (min-width: 769px) {
    .site-wrapper {
        max-width: 900px; margin: 0 auto; border: 2px solid #c8a97e; box-sizing: border-box; background-color: #f7f2e6; padding: 0 1rem 1rem 1rem; box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    }
    .mobile-menu { background-color: transparent; }
    .mobile-menu.show { display: block; }
    .mobile-menu__list { box-shadow: 0 12px 40px rgba(0, 0, 0, .35); }
    .mobile-menu__list a { font-size: 1rem; padding: 10px 6px; }
}

.instagram-video { width: 100%; max-width: 400px; height: auto; display: block; margin: 20px auto; border-radius: 8px; object-fit: cover; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); }

.platan-grid-wrapper { max-width: 1100px; margin: 0 auto; padding: 0 10px; }
.platan-cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-bottom: 50px; }
.platan-card-item { background: #fff; border: 1px solid #e0e0e0; border-radius: 12px; padding: 20px; text-align: center; box-shadow: 0 4px 10px rgba(0,0,0,0.05); transition: transform 0.3s ease; }
.platan-card-item:hover { transform: translateY(-5px); box-shadow: 0 8px 20px rgba(0,0,0,0.1); }
.platan-card-item img { width: 100%; height: auto; border-radius: 8px; margin-top: 15px; object-fit: cover; }
.platan-card-item h3 { margin-top: 0; font-family: 'Cinzel', serif; font-size: 1.4rem; }
.platan-text-block { max-width: 800px; margin: 60px auto; text-align: left; }
.platan-text-block h3 { text-align: center; color: var(--clay); font-size: 1.8rem; margin-bottom: 20px; }
.platan-image-center { display: block; max-width: 100%; height: auto; margin: 20px auto; border-radius: 12px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.platan-list-styled div, .platan-list-styled p { margin-bottom: 10px; font-size: 1.05rem; border-bottom: 1px dashed #eee; padding-bottom: 5px; }
.highlight-green { color: #276443; font-weight: bold; }
.highlight-orange { color: #d35400; font-weight: bold; }
.highlight-brown { color: #8b5e3c; }
.platan-info-box { background-color: #fffaf0; border-left: 5px solid #276443; padding: 30px; margin: 40px auto; border-radius: 0 12px 12px 0; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
.platan-info-box p { margin-bottom: 12px; font-family: 'Georgia', serif; }

/* Custom UI Components merged */
.anchor-badge-space { display: inline-flex; align-items: center; justify-content: center; gap: 8px; background-color: #fffaf0; border: 1px solid #d4af37; color: #5d4037; padding: 10px 22px; border-radius: 50px; font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 600; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); transition: transform 0.2s ease, box-shadow 0.2s ease; margin: 10px auto; width: fit-content; }
.anchor-badge-space:hover { transform: translateY(-2px); box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1); }
.anchor-badge-mute { display: inline-flex; align-items: center; justify-content: center; background-color: #fffaf0; border: 1px solid #d4af37; color: #5d4037; padding: 10px 22px; border-radius: 50px; font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 600; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); transition: transform 0.2s ease, box-shadow 0.2s ease; margin: 10px auto; width: fit-content; }
.anchor-badge-mute:hover { transform: translateY(-2px); box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1); }

@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(10px); } }
.animirana-ruka { display: inline-block; animation: bounce 1s infinite; }

@keyframes point-right { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(6px); } }
.hand-pointer { font-size: 1.5em; margin-right: 10px; display: inline-block; animation: point-right 1s ease-in-out infinite; line-height: 1; }
.accordion-right-side { display: flex; align-items: center; }
.vibe-accordion-header[aria-expanded="true"] .hand-pointer { display: none; }

@keyframes slow-motion-shine { 0% { left: -150%; } 80% { left: 150%; } 100% { left: 150%; } }
.fg-premium-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 35px; padding: 40px 0; max-width: 1200px; margin: 0 auto; font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; }
.fg-card { position: relative; aspect-ratio: 16 / 9; border-radius: 15px; overflow: hidden; display: flex; align-items: flex-end; text-decoration: none !important; box-shadow: 0 25px 55px rgba(0,0,0,0.45); transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1); background: #000; }
.fg-card-img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; transition: transform 1.5s ease; z-index: 1; }
.fg-card-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0) 100%); z-index: 2; }
.fg-card-content { position: relative; z-index: 3; padding: 25px 30px; width: 100%; }
.fg-card-tag { background: rgba(212, 175, 55, 0.85); color: #fff; padding: 3px 8px; font-size: 9px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; border-radius: 2px; display: inline-block; margin-bottom: 8px; }
.fg-card-title { color: #ffffff !important; font-size: 24px !important; font-weight: 800 !important; margin: 0 !important; line-height: 1.2; text-shadow: 2px 2px 10px rgba(0,0,0,1); }
.fg-card:hover { transform: translateY(-12px); box-shadow: 0 40px 80px rgba(0,0,0,0.6); }
.fg-card:hover .fg-card-img { transform: scale(1.1); }
.fg-card::before { content: ''; position: absolute; top: 0; left: -150%; width: 50%; height: 100%; background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.12) 50%, rgba(255,255,255,0) 100%); transform: skewX(-25deg); z-index: 4; animation: slow-motion-shine 5s infinite linear; }
.fg-card::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 6px; background: linear-gradient(90deg, #d4af37, #f2d472); z-index: 5; transform: scaleX(0); transition: transform 0.5s ease; transform-origin: left; }
.fg-card:hover::after { transform: scaleX(1); }
@media (max-width: 768px) { .fg-premium-grid { grid-template-columns: 1fr; gap: 25px; padding: 20px; } .fg-card-title { font-size: 20px !important; } }

.vibe-accordion-wrapper { border: 1px solid #e0e0e0; border-radius: 8px; margin: 20px 0; background-color: #ffffff; font-family: Arial, sans-serif; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05); }
.vibe-accordion-header { background: linear-gradient(to bottom, #7a5c48, #5c4033); color: white; padding: 15px 20px; cursor: pointer; border-radius: 8px 8px 0 0; display: flex; justify-content: space-between; align-items: center; }
.vibe-accordion-header:hover { background: linear-gradient(to bottom, #6f4e37, #503121); }
.vibe-title { font-size: 1.2em; font-weight: bold; margin: 0; }
.vibe-subtitle { font-size: 0.85em; margin: 0; opacity: 0.8; font-style: italic; }
.vibe-toggle-icon { font-size: 1.5em; line-height: 1; transition: transform 0.3s; }
.vibe-content-container { padding: 0 20px; max-height: 0; overflow: hidden; transition: max-height 0.4s ease-out, padding 0.4s ease-out; background-color: #fbf5e6; border-radius: 0 0 8px 8px; }
.vibe-content-container.active { max-height: 5000px; padding: 15px 20px; }
.vibe-accordion-header[aria-expanded="true"] .vibe-toggle-icon { transform: rotate(180deg); }
.vibe-content-text p { font-family: 'Inter', sans-serif; font-size: 0.9rem; font-weight: 400; margin: 0 0 1em 0; line-height: 1.7; color: #2c3e50; text-align: justify; overflow-wrap: break-word; word-wrap: break-word; }
.vibe-content-text p:last-child { margin-bottom: 0; }
.vibe-month-label { display: block; font-size: 1.1em; font-weight: bold; margin-bottom: 10px; color: #2c3e50; }
.vibe-keyword { font-weight: bold; display: block; margin-top: 10px; margin-bottom: 5px; font-size: 1.1em; color: #333; }
.vibe-content-text p .vibe-keyword:first-of-type { margin-top: 0; }
.vibe-month-header { display: flex; align-items: center; justify-content: space-between; gap: 15px; margin-bottom: 15px; border-bottom: 1px solid #e0e0e0; padding-bottom: 10px; }
.inner-next-arrow { font-size: 1.5em; color: #d4af37; cursor: pointer; transition: transform 0.2s, color 0.2s; user-select: none; }
.inner-next-arrow:hover { transform: translateX(5px); color: #b9972e; }

#ranc-kalkulator-kontejner { display: flex; align-items: center; justify-content: center; padding: 0; font-family: 'Inter', sans-serif; }
#dodatne-kartice-kontejner { display: flex; justify-content: center; flex-wrap: wrap; gap: 20px; width: 100%; max-width: 650px; margin: 20px auto 0 auto; }
#ranc-kalkulator-kontejner .kalkulator-kartica { width: 100%; max-width: 24rem; border: 2px solid #f59e0b; background-color: #ffffff; border-radius: 1rem; padding: 0.8rem; text-align: center; display: flex; flex-direction: column; position: relative; box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); outline: 4px solid #fef3c7; outline-offset: 2px; }
.dodatna-kartica { flex: 1 1 270px; max-width: 310px; min-width: 270px; background: #fff; border: 2px solid #cfb995; border-radius: 20px; padding: 20px; box-shadow: 0 4px 20px rgba(139, 94, 60, 0.1); text-align: center; }
.dodatna-kartica.preporuceno { background: #FFF8E1; border: 3px solid #276443; box-shadow: 0 6px 25px rgba(39, 100, 67, 0.2); position: relative; }
#ranc-kalkulator-kontejner h3, .dodatna-kartica h3 { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 0.85rem; margin-bottom: 15px; padding: 0; background-color: transparent; border-radius: 0; color: #8b5e3c; display: block; border: none; box-shadow: none; text-transform: uppercase; letter-spacing: 1px; }
#ranc-kalkulator-kontejner .opcije-label { display: block; font-size: 0.8rem; font-weight: 500; color: #4b5563; margin-bottom: 0.4rem; }
#ranc-kalkulator-kontejner .praznicni-label { font-weight: 700; color: #b45309; margin-top: 0.6rem; }
.opcije-kontejner { display: flex; flex-wrap: wrap; gap: 0.3rem; justify-content: center; margin-bottom: 0.8rem; }
.opcija-dugme { padding: 0.5rem 0.6rem; border: 2px solid #d1d5db; border-radius: 0.5rem; font-size: 0.85rem; font-weight: 600; background-color: #f9fafb; color: #4b5563; cursor: pointer; transition: all 0.2s ease-in-out; flex-grow: 1; display: inline-flex; align-items: center; justify-content: center; text-align: center; }
.opcija-dugme.selektovano { border-color: #f59e0b; background-color: #fffbeb; color: #b45309; box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.3); }
.praznicni-paket { width: 100%; padding: 0.5rem 0.4rem; font-size: 0.75rem; }
#ranc-kalkulator-kontejner .cena-za-dvoje-wrapper { background-color: #fffbeb; border: 2px solid #f59e0b; border-radius: 0.5rem; padding: 0.6rem; margin-top: 0.8rem; margin-bottom: 0.6rem; box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
#ranc-kalkulator-kontejner .cena-label { color: #4b5563; margin-bottom: 0.3rem; font-weight: 700; font-size: 0.95rem; display: block; }
#ranc-kalkulator-kontejner .ukupna-cena { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; margin-bottom: 0.3rem; color: #b45309; min-height: 40px; }
#ranc-kalkulator-kontejner .valuta { font-size: 0.9rem; font-family: 'Inter', sans-serif; }
#ranc-kalkulator-kontejner .popust-poruka { color: #5d4037; font-weight: 500; margin-top: 0.3rem; min-height: 20px; background-color: transparent; border-radius: 0.5rem; padding: 0; line-height: 1.4; font-size: 0.85rem; transition: opacity 0.5s ease; }
.msg-holiday { color: #8e44ad !important; } .msg-gift { color: #d35400 !important; font-weight: 700 !important; } .msg-save { color: #276443 !important; }
#ranc-kalkulator-kontejner .promo-poruka { margin-top: 0.6rem; background-color: #dcfce7; color: #166534; font-weight: 600; padding: 0.3rem 0.6rem; border-radius: 9999px; font-size: 0.75rem; }
#ranc-kalkulator-kontejner .nevidljiv { display: none; }

.kartica-kontejner { display: flex; justify-content: center; width: 100%; padding: 20px; box-sizing: border-box; font-family: 'Inter', sans-serif; }
.dodatna-kartica.wellness { background-color: #f0fff0; border: 2px solid #38a169; box-shadow: 0 4px 20px rgba(56, 161, 105, 0.2); }
.dodatna-kartica.wellness h3 { background-color: #38a169; color: #ffffff; border: 1px solid #276443; box-shadow: none; }
.opsirnije-link { display: inline-block; margin-top: 1rem; padding: 0.75rem 1.5rem; background-color: #38a169; color: #ffffff; font-family: 'Inter', sans-serif; font-weight: 600; text-decoration: none; border-radius: 9999px; box-shadow: 0 4px 14px rgba(56, 161, 105, 0.3); transition: all 0.2s ease-in-out; font-size: 0.85rem; border: none; }
.opsirnije-link:hover { background-color: #276443; box-shadow: 0 6px 20px rgba(56, 161, 105, 0.4); transform: translateY(-2px); }
.povelja-tekst { color: #38a169; font-size: 1rem; font-weight: 600; margin: 0 0 8px 0; text-transform: uppercase; }
.obeca-tekst { color: #4a5568; font-size: 0.85rem; margin-bottom: 15px; }
.obeca-sebi { color: #4a5568; font-size: 0.85rem; margin-bottom: 15px; white-space: nowrap; font-weight: 700; color: #38a169; }

/* Sticky & Modal Calendar Styles */
#sticky-calendar-btn, #float-call-btn { position: fixed !important; bottom: 36px !important; z-index: 99999 !important; }
#sticky-calendar-btn { left: 25px !important; } #float-call-btn { right: 25px !important; }

.sticky-btn-wrapper { 
    position: fixed; 
    bottom: 36px; 
    left: 25px; 
    transform: translate3d(0, 0, 0); 
    -webkit-transform: translate3d(0, 0, 0);
    will-change: transform; 
    background: rgba(255, 255, 255, 0.3); 
    backdrop-filter: blur(16px); 
    -webkit-backdrop-filter: blur(16px); 
    border: 1px solid rgba(255, 255, 255, 0.4); 
    color: #111; 
    padding: 8px 24px 8px 12px; 
    border-radius: 50px; 
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12); 
    cursor: pointer; 
    z-index: 9999; 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); 
}

.sticky-btn-hidden { opacity: 0; pointer-events: none; transform: translateY(30px) !important; }

.sticky-btn-wrapper:hover { 
    background: rgba(255, 255, 255, 0.95); 
    transform: translate3d(0, -5px, 0); 
    -webkit-transform: translate3d(0, -5px, 0);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2); 
}
.live-calendar-icon { width: 36px; height: 36px; background: white; border-radius: 8px; box-shadow: 0 3px 8px rgba(0,0,0,0.15); display: flex; flex-direction: column; overflow: hidden; border: 1px solid rgba(0,0,0,0.05); flex-shrink: 0; }
.cal-header { height: 12px; background: #dc3545; color: white; font-size: 8px; font-weight: 800; display: flex; align-items: center; justify-content: center; text-transform: uppercase; font-family: sans-serif; letter-spacing: 0.5px; }
.cal-body { flex-grow: 1; background: #fff; color: #222; font-size: 17px; font-weight: 800; display: flex; align-items: center; justify-content: center; font-family: sans-serif; line-height: 1; padding-bottom: 2px; }
.sticky-text { font-family: sans-serif; font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 0.5px; white-space: nowrap; }
.modal-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.4); z-index: 99999; justify-content: center; align-items: center; padding-top: 0; overflow-y: auto; }
.modal-card { background: #fff; width: 90%; max-width: 420px; padding: 25px 20px; border-radius: 24px; text-align: center; position: relative; box-shadow: 0 20px 60px rgba(0,0,0,0.2); animation: slideDown 0.3s ease-out; margin-bottom: 10px; }
@keyframes slideDown { from { transform: translateY(-20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal-title { font-family: sans-serif; font-weight: 800; color: #222; margin-bottom: 10px; font-size: 20px; }
.date-wrapper-stack { position: relative; width: 100%; height: 50px; background: #fff; border: 1px solid #ddd; border-radius: 10px; display: flex; align-items: center; padding: 0 10px; box-sizing: border-box; cursor: pointer; transition: all 0.2s ease; box-shadow: 0 1px 4px rgba(0,0,0,0.05); }
.date-wrapper-stack:hover { border-color: #999; box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
.visual-text { flex-grow: 1; border: none !important; outline: none !important; box-shadow: none !important; background: transparent !important; margin: 0 !important; padding: 0 !important; font-family: sans-serif; font-size: 16px; color: #333; height: 100%; cursor: pointer; text-align: left; }
.visual-icon { font-size: 20px; color: #dc3545; pointer-events: none; margin-left: 8px; opacity: 0.8; }
.check-btn { background: #276443; color: white; border: none; width: 100%; min-height: 50px; padding: 10px 20px; font-size: 15px; font-weight: 700; border-radius: 10px; cursor: pointer; font-family: sans-serif; text-transform: uppercase; letter-spacing: 0.5px; transition: transform 0.2s, background 0.3s; margin-top: 15px; box-shadow: 0 4px 15px rgba(0,0,0,0.2); line-height: normal; }
.check-btn:hover { background: #1f5236; transform: translateY(-2px); }
.check-btn.back-btn { background: #6c757d; margin-top: 10px; }
.check-btn.back-btn:hover { background: #5a6268; }
.status-badge { padding: 10px 25px; border-radius: 50px; display: inline-block; font-size: 18px; font-weight: 800; color: white; margin: 10px 0 20px 0; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.status-free { background-color: #28a745; }
.status-busy { background-color: #dc3545; }
.popup-contact-section { margin-top: 15px; } 
.popup-subtitle { color: #999; font-family: sans-serif; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin: 10px 0 15px 0; }
.popup-subtitle.large-emoji-container { font-size: 13px; color: #333; display: flex; align-items: center; justify-content: center; margin-top: 25px !important; padding-bottom: 5px; }
.popup-subtitle.large-emoji-container::after { content: "🥰"; display: inline-block; font-size: 50px; line-height: 1; vertical-align: middle; margin-left: 5px; }
.message-preview { background: #f8f9fa; border: 1px solid #ddd; border-radius: 8px; padding: 15px; margin-bottom: 20px; text-align: left; overflow-x: auto; }
.message-preview pre { white-space: pre-wrap; font-family: sans-serif; font-size: 14px; color: #333; margin: 0; line-height: 1.4; }
.action-buttons-grid { display: block; width: 100%; margin-bottom: 15px; } 
.social-btn { padding: 10px; border-radius: 10px; width: 100%; text-align: center; display: flex !important; flex-direction: column !important; justify-content: center !important; align-items: center !important; line-height: 1.3; font-size: 14px; transition: all 0.2s; gap: 5px; border: none; cursor: pointer; color: white; margin-bottom: 15px; } 
.social-btn .main-btn-content { display: flex; align-items: center; font-size: 14px; font-weight: 700; margin-bottom: 2px; text-transform: uppercase; }
.social-btn:hover { background-color: #D4AF37 !important; transform: scale(1.02); }
.social-btn:active { background-color: #D4AF37 !important; transform: scale(0.98); }
.social-btn img { width: 18px; height: 18px; margin-right: 8px; filter: brightness(0) invert(1); }
.whatsapp-btn { background-color: #25D366; }
.sms-btn { background-color: #007bff; }
.price-info-compact { text-align: center; margin: 0; font-size: 13px; color: #ffffff; font-family: sans-serif; font-weight: 700; line-height: 1.2; padding: 0 5px; }
.popup-icons-grid { display: flex; justify-content: center; gap: 50px; margin-bottom: 15px !important; margin-top: 10px; }
.popup-icon-item { display: flex; flex-direction: column; align-items: center; text-decoration: none; color: inherit; transition: transform 0.2s; }
.popup-icon-item:hover { transform: scale(1.1); }
.popup-icon-item img { width: 35px; height: 35px; margin-bottom: 3px; }
.popup-icon-item span { display: none; }
.modal-footer-simple a { margin-top: 5px; font-size: 12px; color: #666; text-decoration: none; }

/* --- EKSTRAKTOVANI INLINE STILOVI --- */
.text-center-100 { text-align: center; width: 100%; }
.raj-box { text-align: center; max-width: 900px; width: calc(100% - 20px); margin: 25px auto; padding: 20px; border: 3px solid #d4af37; border-radius: 15px; font-family: 'Montserrat', sans-serif; box-sizing: border-box; }
.raj-text { color: #800000; line-height: 1.4; font-size: 16px; }
.feature-box-inline { text-align: center; white-space: nowrap; -webkit-text-size-adjust: none; text-size-adjust: none; display: block; box-sizing: border-box; width: calc(100% - 6px); margin: 0 3px; border: 1px solid gold; border-radius: 10px; box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3); padding: 5px 0; line-height: 1.2; }
.feature-icon-18 { font-size: 18pt; vertical-align: middle; display: inline-block; }
.feature-icon-14 { font-size: 14pt; vertical-align: middle; display: inline-block; }
.feature-text-black { color: #000000; vertical-align: middle; }
.feature-text-10 { font-size: 10pt; }
.feature-text-22 { font-size: 22px; vertical-align: middle; }
.video-hint { font-weight: bold; font-size: 18px; margin-top: 35px; margin-bottom: 5px; text-align: center; }
.video-title { text-align: center; font-size: 22px; margin-top: 5px; margin-bottom: 5px; }
.video-link-wrap { text-align: center; margin-top: 5px; margin-bottom: 10px; }
.yt-wrapper { position: relative; overflow: hidden; padding-top: 66.25%; }
.yt-iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

.zasto-platan-wrap { max-width: 800px; margin: 30px auto; font-family: 'Montserrat', Tahoma, Arial, sans-serif; }
.zasto-platan-details { border: 2px solid #276443; border-radius: 12px; overflow: hidden; box-shadow: 0 6px 15px rgba(39, 100, 67, 0.15); }
.zasto-platan-summary { cursor: pointer; padding: 15px; background-color: #276443; color: #ffffff; font-size: 17px; font-family: 'Georgia', serif; font-weight: bold; text-align: center; outline: none; list-style: none; line-height: 1.4; }
.zasto-platan-content { padding: 20px; background-color: #fdfaf5; text-align: left; }
.zasto-platan-ul { list-style: none; padding: 0; margin: 0; }
.zasto-platan-li { padding: 10px 0; border-bottom: 1px dashed rgba(212,163,115,0.4); display: flex; align-items: flex-start; color: #444; font-size: 16px; line-height: 1.4; }
.zasto-platan-li-last { padding: 10px 0; display: flex; align-items: flex-start; color: #444; font-size: 16px; line-height: 1.4; }
.zasto-platan-star { color: #d4a373; margin-right: 12px; font-size: 18px; line-height: 1.4; flex-shrink: 0; }
.zasto-platan-text { flex: 1; }

.nas-koncept-wrap { background-color: rgba(253, 249, 249, 0.8); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid #444444; border-radius: 24px; padding: 25px 30px; width: calc(100% - 20px); max-width: 650px; margin: 20px auto 50px auto; box-shadow: 0 10px 30px rgba(0,0,0,0.1); font-family: 'Montserrat', sans-serif; box-sizing: border-box; }
.nas-koncept-h3 { text-align: center; font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: #222; text-transform: uppercase; letter-spacing: 2px; margin-top: 0; margin-bottom: 15px; padding-bottom: 12px; border-bottom: 1px solid #d1d1d1; }
.nas-koncept-ul { list-style: none; padding: 0; margin: 0; }
.nas-koncept-li { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid #d1d1d1; }
.nas-koncept-li-last { display: flex; justify-content: space-between; align-items: center; padding: 10px 0 5px 0; }
.nas-koncept-left { color: #444; font-size: 15px; opacity: 0.7; }
.nas-koncept-right { color: #276443; font-weight: 700; font-size: 16px; }
.nas-koncept-quote { text-align: center; font-size: 12px; color: #8b5e3c; margin-top: 15px; font-style: italic; letter-spacing: 0.5px; }

.preporuka-box { background: var(--cream); border-radius: 12px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); border: 1px solid #d4af37; padding: 1.5rem; text-align: center; max-width: 720px; margin: 0 auto; }
.preporuka-img { width: 100%; max-width: 400px; margin: 0 auto 1.5rem; display: block; border-radius: 8px; box-shadow: 0 4px 8px rgba(0,0,0,0.1); }
.preporuka-h2 { font-size:1.5rem; margin-top:0; }
.preporuka-h3 { font-family:'Source Serif 4', serif; font-size: 1.2rem; color: var(--pine); margin-top:0; font-weight: normal; margin-bottom: 1rem; }
.preporuka-btn { display: inline-block; margin-top: 1rem; }

.vajb-title-main { color: #8b5e3c; font-family: Montserrat, sans-serif; font-size: 26px; font-weight: bold; }
.vajb-wrap-main { text-align: center; width: 100%; font-family: 'Montserrat', sans-serif; }
.vajb-container { max-width: 1000px; margin: 40px auto; padding: 0 15px; }
.vajb-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; }
.vajb-card { background: #ffffff; border: 2px solid #cfb995; border-radius: 20px; box-shadow: rgba(139, 94, 60, 0.1) 0px 4px 20px; flex: 1 1 300px; max-width: 420px; min-width: 280px; overflow: hidden; display: flex; flex-direction: column; }
.vajb-card-prep { background: #fff; border: 3px solid #276443; border-radius: 20px; box-shadow: 0 6px 25px rgba(39, 100, 67, 0.2); flex: 1 1 300px; max-width: 420px; min-width: 280px; overflow: hidden; display: flex; flex-direction: column; }
.vajb-card-img { width: 100%; height: 200px; object-fit: cover; display: block; border-bottom: 2px solid #cfb995; }
.vajb-card-img-prep { width: 100%; height: 200px; object-fit: cover; display: block; border-bottom: 3px solid #276443; }
.vajb-card-body { padding: 20px; }
.vajb-card-h3 { color: #8b5e3c; font-size: 22px; margin: 0 0 12px 0; text-align: center; }
.vajb-card-p { color: #276443; font-size: 15px; line-height: 1.6; margin: 0; text-align: left; }
.vajb-card-p-prep { color: #276443; font-size: 15px; line-height: 1.6; margin-bottom: 15px; text-align: left; }
.vajb-badge { background: #276443; color: #ffffff; font-weight: bold; padding: 8px 0; width: 100%; text-align: center; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; }
.vajb-price-box { background: #fdf8f3; border-radius: 10px; padding: 10px; }
.vajb-price-val { color: #8b5e3c; font-size: 24px; margin: 0; text-align: center; }
.vajb-price-desc { color: #555; font-size: 14px; margin: 0; text-align: center; }

.cenovnik-banner { font-size: 1em; font-style: italic; color: #6b4b12; border: 1px solid #b68c3d; background: #fffaf0; display: inline-block; padding: 0.7em 1.2em; border-radius: 8px; margin-top: 0.8em; }
.cenovnik-h2 { font-family: 'Georgia', serif; color: #8b5e3c; font-size: 24px; margin-bottom: 20px; }
.cenovnik-p { font-family: 'Georgia', serif; color: #5d4037; font-size: 17px; margin-top: 5px; }

.dk-title { color: #8b5e3c; font-size: 19px; margin-top: 0; margin-bottom: 12px; font-family: 'Georgia', serif; background-color: transparent; border: none; box-shadow: none; padding: 0; }
.dk-title-hl { background-color: #f4ece2; color: #8b5e3c; padding: 3px 8px; border-radius: 8px; }
.dk-old-price { color: #999; font-size: 15px; margin: 0; font-family: 'Georgia', serif; }
.dk-new-price { color: #c0392b; font-size: 42px; font-weight: bold; margin: 10px 0 5px 0; font-family: 'Georgia', serif; }
.dk-note { color: #808080; font-size: 14px; margin-bottom: 15px; font-family: 'Georgia', serif; }
.dk-badge { background: #276443; color: #fff; font-weight: bold; padding: 5px 15px; border-radius: 20px; text-align: center; margin: -35px auto 15px auto; max-width: 150px; font-size: 13px; font-family: 'Montserrat', sans-serif; }
.dk-save-p { color: #5d4037; font-size: 14px; margin-bottom: 15px; font-family: 'Georgia', serif; }
.dk-save-box { margin-top: 15px; }
.dk-save-badge { background-color: #e8f5e9; color: #2e7d32; font-size: 14px; font-weight: bold; padding: 5px 8px; border-radius: 8px; display: inline-block; margin: 0; }
.modal-check-note { font-size: 11px; color: #d4af37; font-weight: 600; margin-top: 10px; line-height: 1.3; text-align: center; }

@keyframes pulse-usteda {
    0% { box-shadow: 0 0 0 0 rgba(46, 125, 50, 0.5); transform: scale(1); }
    70% { box-shadow: 0 0 0 12px rgba(46, 125, 50, 0); transform: scale(1.04); }
    100% { box-shadow: 0 0 0 0 rgba(46, 125, 50, 0); transform: scale(1); }
}

.animacija-usteda {
    animation: pulse-usteda 2.5s infinite ease-in-out;
    border: 1px solid #2e7d32;
}

/* NOVO DUGME ZA POZIV */
.sticky-element {
    position: fixed;
    bottom: 35px;
    z-index: 1000000;
    font-family: sans-serif;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1); 
}

.sticky-element.prikazi-se {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
}

.right-call {
    right: 25px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #D4AF37 0%, #B58D3F 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    animation: pulse-gold 2s infinite; 
}

.right-call:hover { transform: scale(1.1) !important; }

@keyframes pulse-gold {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

@media (max-width: 480px) {
    .right-call { bottom: 35px; right: 20px; width: 55px; height: 55px; }
}

/* ========================================= */
/* NOVI ZELENI KAJRON NA DNU STRANICE */
/* ========================================= */
#platan-ticker-container {
    position: fixed !important;
    bottom: 0 !important; 
    left: 0 !important;
    width: 100vw !important;
    height: 28px !important; 
    background-color: #276443 !important;
    z-index: 2147483647 !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    border-top: 1px solid #d4af37 !important; 
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2) !important;
    white-space: nowrap !important;
    line-height: 28px !important; 
}

#platan-ticker-wrapper {
    display: inline-block !important;
    white-space: nowrap !important;
    animation: platan-scroll-infinite 25s linear infinite !important; 
}

.platan-ticker-text {
    color: #fde68a !important; 
    font-family: 'Montserrat', sans-serif, Arial !important;
    font-size: 13px !important; 
    font-weight: normal !important;
    letter-spacing: 0.5px !important; 
    display: inline-block !important;
}

.platan-ticker-text b {
    font-weight: bold !important;
    color: #e5e7eb !important; 
}

@keyframes platan-scroll-infinite {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

#sumski-hero-preloader {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-color: #111;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), 
        url("https://www.fruska-gora-odmor.info/slajder/22.jpg");
    background-size: cover; background-position: center; background-repeat: no-repeat;
    z-index: 999999; 
    display: flex; justify-content: center; align-items: center;
    text-align: center; transition: opacity 0.5s ease-out, visibility 0.5s;
    font-family: "Montserrat", sans-serif;
    touch-action: none; 
}
.preloader-hidden { opacity: 0 !important; visibility: hidden !important; }
.preloader-sadrzaj { max-width: 450px; padding: 20px; }
.preloader-poruke-wrapper { position: relative; height: 65px; margin-bottom: 12px; display: flex; align-items: center; justify-content: center; width: 100%; }

.preloader-tekst { 
    position: absolute; color: #ffffff; font-size: 26px; font-weight: 800; line-height: 1.3; letter-spacing: 0.5px; width: 100%; margin: 0; opacity: 0; 
    animation: tekst-vrteska 8s infinite; text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}
.tekst-1 { animation-delay: 0s; } .tekst-2 { animation-delay: 2s; } .tekst-3 { animation-delay: 4s; } .tekst-4 { animation-delay: 6s; }
@keyframes tekst-vrteska { 0% { opacity: 0; transform: translateY(10px); } 5% { opacity: 1; transform: translateY(0); } 20% { opacity: 1; transform: translateY(0); } 25% { opacity: 0; transform: translateY(-10px); } 100% { opacity: 0; } }

#preloader-podnaslov { color: #ffffff; font-size: 16px; line-height: 1.5; font-weight: 600; margin-bottom: 25px; text-shadow: 0 1px 3px rgba(0,0,0,0.4); opacity: 0.9; }

.tackice-listovi span { font-size: 30px; margin: 0 5px; display: inline-block; animation: rast-lista 1.5s infinite both; filter: drop-shadow(0 2px 5px rgba(0,0,0,0.3)); }
.tackice-listovi span:nth-child(2) { animation-delay: 0.2s; } .tackice-listovi span:nth-child(3) { animation-delay: 0.4s; }
@keyframes rast-lista { 0% { opacity: 0.3; transform: translateY(5px) scale(0.8) rotate(-10deg); } 50% { opacity: 1; transform: translateY(0px) scale(1.1) rotate(10deg); } 100% { opacity: 0.3; transform: translateY(5px) scale(0.8) rotate(-10deg); } }
@media (max-width: 480px) { .preloader-sadrzaj { width: 90%; } .preloader-tekst { font-size: 22px; } }