/* ==========================================================================
   GLOBALNE VARIJABLE & HERO (Zadržavamo tvoj identitet)
   ========================================================================== */
   :root {
    --accent: #C8A97E;
    --white: #ffffff;
    --dark: #111111;
    --font-serif: 'Cormorant Garamond', serif;
    /* PROMENJENO: Sa Intera na Plus Jakarta Sans */
    --font-sans: 'Plus Jakarta Sans', sans-serif;

    --ap-bg-light: #F5F5F3;
    --ap-bg-card: #FFFFFF;
    --ap-text-dark: #111111;
    --ap-text-muted: #4A4A5A;
    --ap-border: rgba(17, 17, 17, 0.08);
    --ap-transition: cubic-bezier(0.16, 1, 0.3, 1);
}

body {
    background: var(--ap-bg-light);
    color: var(--ap-text-dark);
    font-family: var(--font-sans);
    margin: 0; padding: 0;
    -webkit-font-smoothing: antialiased;
}

/* Globalno osiguravamo da svi interaktivni i tekstualni elementi naslede Jakartu */
input, textarea, button, select, span, p, h1, h2, h3, h4, h5, h6, strong, a {
    font-family: var(--font-sans);
}

/* Ako negde eksplicitno zatreba serifni font */
.font-serif {
    font-family: var(--font-serif) !important;
}

.ap-container {
    width: 100%; max-width: 1300px; margin: 0 auto; padding: 0 6%; box-sizing: border-box;
}
.text-center { text-align: center; }

/* HERO */
.ap-hero {
    position: relative; width: 100%; min-height: 50vh; background-color: var(--dark); color: var(--white);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding: 120px 0 60px 0; box-sizing: border-box; overflow: hidden;
}
.ap-hero-bg-glow {
    position: absolute; bottom: -30%; left: 50%; transform: translateX(-50%);
    width: 700px; height: 400px; background: radial-gradient(circle, rgba(200, 169, 126, 0.08) 0%, transparent 75%);
}
.ap-hero h1 { font-family: var(--font-serif); font-size: clamp(2.2rem, 4.5vw, 3.8rem); font-weight: 300; margin-bottom: 20px; }
.ap-hero h1 span { font-family: var(--font-serif); color: var(--accent); font-style: italic; font-weight: 300; }
.ap-lead-text { font-size: 15px; color: #A0A0B0; line-height: 1.8; max-width: 680px; margin: 0 auto; font-weight: 300; }
.ap-scroll-line { position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 1px; height: 50px; background: linear-gradient(to bottom, var(--accent), transparent); }

/* ==========================================================================
   TIPOVI APARTMANA (NAVIGACIJA/FILTERI NA VRHU)
   ========================================================================== */
.ap-types-nav {
    width: 100%; padding: 60px 0 30px 0; background-color: var(--ap-bg-light);
}
.ap-types-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px;
}
.ap-type-tab {
    background-color: var(--ap-bg-card); border: 1px solid var(--ap-border);
    padding: 20px; text-align: center; cursor: pointer; border-radius: 3px;
    transition: all 0.4s var(--ap-transition);
}
.ap-type-tab span { font-size: 14px; font-weight: 500; color: var(--ap-text-dark); display: block; }
.ap-type-tab p { font-size: 11px; color: #8A8A9A; margin: 4px 0 0 0; text-transform: uppercase; letter-spacing: 1px; }

/* Active & Hover efekti za filtere */
.ap-type-tab:hover, .ap-type-tab.active {
    border-color: var(--accent);
    background-color: var(--dark);
}
.ap-type-tab:hover span, .ap-type-tab.active span { color: var(--white); }
.ap-type-tab:hover p, .ap-type-tab.active p { color: var(--accent); }


/* ==========================================================================
   DINAMIČKI GRID SA KARTICAMA (3 U REDU)
   ========================================================================== */
.ap-grid-section {
    width: 100%; padding: 30px 0 120px 0; background-color: var(--ap-bg-light);
}
.ap-grid-container {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
}

/* Pojedinačna luksuzna kartica */
.ap-card-item {
    background-color: var(--ap-bg-card); border: 1px solid var(--ap-border);
    border-radius: 4px; overflow: hidden; display: flex; flex-direction: column;
    transition: transform 0.4s var(--ap-transition), box-shadow 0.4s var(--ap-transition), border-color 0.4s ease;

    
}

.ap-card-img {
    position: relative; width: 100%; height: 250px; overflow: hidden; background: #E5E4E0;
}
.ap-card-img img {
    width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ap-transition);
}
.ap-card-sprat {
    position: absolute; bottom: 15px; left: 15px; background: rgba(17, 17, 17, 0.75);
    color: var(--white); font-size: 11px; padding: 6px 12px; border-radius: 2px; letter-spacing: 0.5px;
}

/* Unutrašnjost kartice */
.ap-card-body {
    padding: 30px; display: flex; flex-direction: column; flex-grow: 1;
}
.ap-card-tag {
    font-size: 10px; font-weight: 600; color: var(--accent); letter-spacing: 2px; margin-bottom: 10px; display: block;
}
.ap-card-body h3 {
    font-size: 22px; color: var(--ap-text-dark); margin: 0 0 15px 0; font-weight: 400;
}
.ap-card-specs {
    display: flex; gap: 20px; border-top: 1px solid var(--ap-border);
    padding-top: 15px; margin-bottom: 25px;
}
.ap-card-specs div {
    font-size: 13px; color: var(--ap-text-muted); display: flex; align-items: center; gap: 8px;
}
.ap-card-specs i {
    color: var(--accent);
    font-size: 18px;
}

/* Dugme na dnu kartice */
.ap-card-btn {
    margin-top: auto; display: flex; align-items: center; justify-content: space-between;
    padding: 14px 0; border-top: 1px solid var(--ap-border); color: var(--ap-text-dark);
    font-size: 12px; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600;
    text-decoration: none; transition: color 0.3s ease;
}
.ap-card-btn i { transition: transform 0.3s var(--ap-transition); color: var(--accent); }

/* Hover efekti na karticu */
.ap-card-item:hover {
    transform: translateY(-6px); border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(17, 17, 17, 0.05);
}
.ap-card-item:hover .ap-card-img img { transform: scale(1.05); }
.ap-card-item:hover .ap-card-btn { color: var(--accent); }
.ap-card-item:hover .ap-card-btn i { transform: translateX(5px); }


/* ==========================================================================
   RESPONZIVNOST (Dizajn se automatski skuplja)
   ========================================================================== */
@media (max-width: 1024px) {
    .ap-grid-container { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .ap-types-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .ap-grid-container { grid-template-columns: 1fr; }
    .ap-types-grid { grid-template-columns: 1fr; gap: 10px; }
    .ap-card-img { height: 220px; }
}

/* Stil za luksuzni bedž sa cenom na slici */
.ap-card-price {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--dark);
    color: var(--white);
    padding: 8px 14px;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1px;
    border-radius: 2px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.ap-card-price span {
    color: var(--accent);
    font-weight: 600;
}

/* Kratki opisni tagline ispod naslova */
.ap-card-tagline {
    font-size: 13px;
    color: #7A7A8A;
    font-weight: 300;
    margin: -5px 0 20px 0;
    line-height: 1.5;
}

/* Unapređenje ikone sprata */
.ap-card-sprat i {
    color: var(--accent);
    margin-right: 4px;
}

/* Kontejner za pilule */
.ap-pills-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

/* Pojedinačna prefinjena pilula */
.ap-pill {
    background-color: #F0F0F2;
    color: #5A5A6A;
    font-size: 11px;
    font-weight: 400;
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid rgba(17, 17, 17, 0.03);
    transition: all 0.3s ease;
}

/* Posebna stilizacija za "+ još" pilulu */
.ap-pill-more {
    background-color: transparent;
    border: 1px dashed var(--accent);
    color: var(--accent);
    font-weight: 500;
}

/* Hover efekat: kada miš uđe na karticu, pilule blago reaguju */
.ap-card-item:hover .ap-pill:not(.ap-pill-more) {
    background-color: #EAEAEA;
    color: var(--dark);
}

/* Po difoltu sakrivamo pilule koje su višak */
.hidden-pill {
    display: none !important;
}

/* Stil za "+ još" klikabilno dugme */
.ap-pill-more {
    background-color: transparent;
    border: 1px dashed var(--accent);
    color: var(--accent);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ap-pill-more:hover {
    background-color: var(--accent);
    color: var(--dark);
    border-style: solid;
}

/* Glatka mikro-animacija kada se pilule pojave na klik */
.fade-in-pill {
    animation: pillReveal 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes pillReveal {
    0% {
        opacity: 0;
        transform: translateY(5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ==========================================================================
   ULTRA EKSKLUZIVNI TAMNI VIP STIL (DARK PREMIUM) - SAMO ZA DVOSOBNI
   ========================================================================== */

/* 1. Glavni kontejner kartice - Duboki premium mrak sa oštrim zlatnim okvirom */
.ap-card-item.premium-card {
    background: #161617 !important;
    border: 1.5px solid #C5A880 !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    position: relative;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;

}

/* 2. Naslov i prateći tekstovi postaju čisto beli i uočljivi */
.premium-card .ap-card-body h3 {
    color: #FFFFFF !important;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Tip apartmana iznad naslova - zlato koje sija na crnom */
.premium-card .ap-card-tag {
    color: #E5C494 !important;
    font-weight: 700;
}

/* 3. Luksuzne VIP pilule prilagođene tamnoj pozadini */
.premium-card .ap-pill:not(.ap-pill-more) {
    background-color: rgba(255, 255, 255, 0.06) !important;
    color: #E0E0E0 !important;
    border: 1px solid rgba(197, 168, 128, 0.25) !important;
}

/* Pilula "+ još" na tamnoj kartici */
.premium-card .ap-pill-more {
    border: 1px dashed #C5A880 !important;
    color: #C5A880 !important;
}
.premium-card .ap-pill-more:hover {
    background-color: #C5A880 !important;
    color: #161617 !important;
}

/* 4. Ikone i tekst specifikacija (kvadratura, kreveti) */
.premium-card .ap-card-specs {
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}
.premium-card .ap-card-specs div {
    color: #B0B0B5 !important;
}
.premium-card .ap-card-specs i {
    color: #C5A880 !important;
}

/* 5. Dugme na dnu dobija luksuzni svetli izgled */
.premium-card .ap-card-btn {
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #FFFFFF !important;
}
.premium-card .ap-card-btn i {
    color: #C5A880 !important;
}

/* 6. HOVER EFEKAT - Moćno pulsiranje i duboka senka */
.ap-card-item.premium-card:hover {
    transform: translateY(-10px) !important;
    border-color: #E5C494 !important;
    box-shadow: 0 30px 60px rgba(197, 168, 128, 0.18) !important;
}
.premium-card:hover .ap-card-btn {
    color: #C5A880 !important;
}

/* 7. VIP Značka "Preporučujemo" na vrhu slike */
.ap-card-vip-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #C5A880 !important;
    color: #161617 !important;
    padding: 7px 15px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 2px;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    gap: 6px;
}
.ap-card-vip-badge i {
    color: #161617 !important;
    font-size: 11px;
}


/* ==========================================================================
   STRANICA DETALJA APARTMANA (APARTMAN.HTML) - ULTRA PREMIUM EDITION
   ========================================================================== */
.detalji-page {
    background-color: #FAF9F6;
    /* PROMENJENO: Sa Intera na Plus Jakarta Sans */
    font-family: var(--font-sans);
}

/* Elegantna navigacija nazad */
.det-back-nav {
    background-color: #111112;
    padding: 20px 0;
    position: relative;
    display: block;
    clear: both;
}
.det-back-btn {
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: color 0.3s ease;
}
.det-back-btn:hover {
    color: var(--accent);
}
.det-back-btn i {
    transition: transform 0.3s ease;
}
.det-back-btn:hover i {
    transform: translateX(-5px);
}

/* Skupocjena Hero Sekcija - TAMNA VARIJANTA */
.det-hero {
    padding: 80px 0 40px 0;
    background-color: var(--dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    display: block;
    clear: both;
    padding-top: 120px;
}

.det-hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 300;
    color: var(--white);
    margin: 15px 0;
    letter-spacing: -0.5px;
}

.det-meta-top {
    display: flex;
    justify-content: center;
    gap: 40px;
    font-size: 13px;
    color: var(--muted);
    margin-top: 15px;
}

.det-meta-top span i {
    color: var(--accent);
    margin-right: 8px;
}

#det-cena-oznaka span {
    color: var(--white);
    font-weight: 600;
}

/* ==========================================================================
   HIGH-END TEČNI MOZAIK (BEZ SJEČENJA SLIKA / AUTO-VISINA)
   ========================================================================== */
.det-gallery-section {
    padding: 40px 0;
    position: relative;
    display: block;
    clear: both;
}

/* Premium asimetrični raspored */
.luxury-mosaic-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 20px;
    width: 100%;
    position: relative;
}

/* Glavni lijevi slot */
.mosaic-main-slot {
    width: 100%;
    height: 500px;
    overflow: hidden;
    background-color: #E5E4E0;
    border-radius: 6px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}
.mosaic-main-slot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Desni kontejner za sporedne slike */
.mosaic-side-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 240px);
    gap: 20px;
}

/* Tri sporedna slota */
.mosaic-sub-slot {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #E5E4E0;
    border-radius: 6px;
    cursor: pointer;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.mosaic-side-container .mosaic-sub-slot:nth-child(1) {
    grid-column: span 2;
}

.mosaic-sub-slot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.mosaic-main-slot:hover img, .mosaic-sub-slot:hover img {
    transform: scale(1.03);
}

/* ZADNJI SLOT - STAKLENI "PLUS JOŠ" OVERLAY */
.more-photos-trigger {
    position: relative;
}
.mosaic-overlay-badge {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(17, 17, 18, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}
.mosaic-overlay-badge span {
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 12px 24px;
    background: rgba(17, 17, 18, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 3px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.more-photos-trigger:hover .mosaic-overlay-badge {
    background: rgba(17, 17, 18, 0.45);
}

.galerija-razdvojnik {
    display: block;
    clear: both;
    width: 100%;
    height: 50px;
}

/* ==========================================================================
   STRUKTURA INFORMACIJA (EKSKLUZIVNI IZGLED)
   ========================================================================== */
.det-info-section {
    position: relative;
    display: block;
    clear: both;
    padding: 0 0 100px 0;
    background-color: #FAF9F6;
}
.det-info-layout {
    display: grid;
    grid-template-columns: 7fr 4fr;
    gap: 60px;
    align-items: start;
}

/* Premium bijela traka sa karakteristikama */
.det-specs-strip {
    display: flex;
    gap: 50px;
    background: #FFFFFF;
    padding: 25px 40px;
    border: 1px solid #EAE7E2;
    border-radius: 4px;
    margin-bottom: 45px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.015);
}
.det-spec-box {
    display: flex;
    align-items: center;
    gap: 15px;
}
.det-spec-box i {
    font-size: 22px;
    color: var(--accent);
}
.det-spec-box p {
    margin: 0;
    font-size: 10px;
    text-transform: uppercase;
    color: #8A8A9A;
    letter-spacing: 1.5px;
}
.det-spec-box strong {
    font-size: 16px;
    color: #111112;
    font-weight: 500;
}

.det-info-left h2 {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #111112;
}
.det-opis-tekst {
    font-size: 15.5px;
    line-height: 1.8;
    color: #4A4A5A;
    font-weight: 300;
}

/* Premium desna kartica sa opremom */
.det-sadrzaj-card {
    background-color: #FFFFFF;
    border: 1px solid #EAE7E2;
    padding: 35px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.015);
}
.det-sadrzaj-card h4 {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 400;
    margin: 0 0 25px 0;
    border-bottom: 1px solid #EAE7E2;
    padding-bottom: 15px;
    color: #111112;
}
.det-sadrzaj-lista {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.det-sadrzaj-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #2A2A3A;
}
.det-sadrzaj-item i {
    color: var(--accent);
    font-size: 15px;
}

/* PREMIUM LIGHTBOX STILOVI */
.lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(10, 10, 11, 0.98);
    justify-content: center;
    align-items: center;
    user-select: none;
}
.lightbox-content {
    max-width: 85%;
    max-height: 85vh;
    object-fit: contain;
    box-shadow: 0 30px 70px rgba(0,0,0,0.7);
    animation: lightboxZoom 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes lightboxZoom {
    from { transform: scale(0.95); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
.lightbox-close {
    position: absolute;
    top: 30px; right: 40px;
    color: #FFFFFF;
    font-size: 42px;
    cursor: pointer;
    transition: color 0.3s;
}
.lightbox-close:hover { color: var(--accent); }
.lightbox-nav {
    position: absolute;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 35px;
    padding: 25px;
    cursor: pointer;
    transition: all 0.3s;
}
.lightbox-nav:hover { color: var(--accent); transform: scale(1.1); }
.lightbox-nav.prev { left: 40px; }
.lightbox-nav.next { right: 40px; }
.lightbox-caption {
    position: absolute;
    bottom: 35px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    letter-spacing: 1.5px;
}

/* VRHUNSKA RESPONZIVNOST */
@media (max-width: 992px) {
    .det-info-layout { grid-template-columns: 1fr; gap: 40px; }
    .luxury-mosaic-grid { grid-template-columns: 1fr; }
    .mosaic-main-slot { height: 400px; }
    .mosaic-side-container { grid-template-rows: repeat(2, 200px); }
}
@media (max-width: 768px) {
    .mosaic-main-slot { height: 280px; }
    .mosaic-side-container {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: none;
        height: 100px;
        gap: 10px;
    }
    .mosaic-side-container .mosaic-sub-slot:nth-child(1) { grid-column: span 1; }
    .mosaic-overlay-badge span { font-size: 9px; padding: 6px 12px; letter-spacing: 1px; }
    .det-specs-strip { flex-direction: column; gap: 20px; padding: 20px; }
    .galerija-razdvojnik { height: 30px; }
}


/* ==========================================================================
   PREMIUM AKCIONA DUGMAD ZA REZERVACIJU
   ========================================================================== */
.det-action-block {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #F2EFEA;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-premium-booking {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #111112;
    color: #FFFFFF;
    text-decoration: none;
    padding: 15px 20px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(17, 17, 18, 0.05);
}

.btn-premium-booking:hover {
    background-color: var(--accent, #bfa15f);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(191, 161, 95, 0.2);
}

.btn-premium-booking i {
    font-size: 13px;
}

.btn-premium-direct {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: transparent;
    color: #111112;
    border: 1px solid #111112;
    text-decoration: none;
    padding: 14px 20px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-premium-direct:hover {
    background-color: #FAF9F6;
    color: #bfa15f;
    border-color: #bfa15f;
    transform: translateY(-1px);
}

.btn-premium-direct i {
    font-size: 14px;
    color: #25D366;
}

@media (max-width: 768px) {
    .btn-premium-booking, .btn-premium-direct {
        padding: 14px 15px;
        font-size: 11px;
    }
}


/* ==========================================================================
   MIKRO-ANIMACIJE ZA LUKSUZAN UTISAK (FADE & SLIDE)
   ========================================================================== */
.animate-fade-up {
    animation: premiumFadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

.det-hero h1 {
    animation: premiumFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.luxury-mosaic-grid {
    animation: premiumFadeUp 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.det-info-left, .det-sadrzaj-card {
    animation: premiumFadeUp 1.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}






