:root{
    --accent: #C8A97E;
    --accent-soft: rgba(200,169,126,0.15);
    --dark: #0b0b0b;

    --bg: #0E0E0E;
    --surface: rgba(255,255,255,0.04);

    --white: #ffffff;
    --text: #EAEAEA;
    --muted: #9F9F9F;

    --border: rgba(255,255,255,0.08);

    --shadow:
        0 10px 30px rgba(0,0,0,0.25),
        0 30px 80px rgba(0,0,0,0.45);

    --radius: 28px;

    --transition:
        cubic-bezier(0.22, 1, 0.36, 1);

    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Plus Jakarta Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-sans); /* Tvoj default font */
}

.font-serif {
    font-family: var(--font-serif);
}



/* ---  NAVIGACIJA --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 35px 8%;
    background: transparent;
    transition: padding 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), 
                background 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), 
                border-color 0.5s ease;
    border-bottom: 1px solid rgba(200, 169, 126, 0);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
}

/* Stanje kada korisnik skroluje dole (Aktivira se preko JS-a) */
.navbar.scrolled {
    padding: 18px 8%;
    background: rgba(11, 11, 11, 0.75); 

    /* Ovo je Apple standard za zamućenje */
    backdrop-filter:  blur(6px);
    -webkit-backdrop-filter:  blur(6px);

    border-color: rgba(200, 169, 126, 0.12);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(200, 169, 126, 0.15);
}

/* --- INTEGRACIJA LOGOTIPA I TEKSTA --- */
.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 18px;
    opacity: 0;
    transform: translateX(-20px);
    animation: navEntranceLeft 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    text-decoration: none;
    cursor: pointer;
}

.nav-logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    /* Invertuje crni logo u prelepu belu boju koja odgovara luksuznom tamnom vajbu */
    filter: invert(1) brightness(100%); 
    transition: transform 0.3s ease;
}

.logo-wrapper:hover .nav-logo-img {
    transform: scale(1.05);
}

.nav-logo-divider {
    width: 1px;
    height: 26px;
    background: rgba(255, 255, 255, 0.15);
}

.navbar.scrolled .nav-logo-divider {
    background: rgba(200, 169, 126, 0.2);
}

.nav-logo-text {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 3px;
    color: var(--white);
    text-transform: uppercase;
    user-select: none;
}

.nav-logo-text span {
    color: var(--accent);
    font-weight: 300;
}

/* --- LINKOVI SA KASKADNOM ANIMACIJOM I HOVER LINIJOM --- */
.nav-links {
    display: flex;
    list-style: none;
    gap: 50px;
    align-items: center;
}

.nav-links li {
    opacity: 0;
    transform: translateY(-15px);
    /* Svaki link se pojavljuje malo posle prethodnog */
    animation: navEntranceDown 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    animation-delay: calc(var(--nav-item-delay) * 0.1s + 0.2s);
}

.nav-link-item {
    text-decoration: none;
    color: var(--white);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
    position: relative;
    padding: 8px 0;
    transition: color 0.3s ease;
}

/* Efekat linije koja se širi iz centra na hover */
.nav-link-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background-color: var(--accent);
    transition: width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
                left 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.nav-link-item:hover {
    color: var(--accent);
}

.nav-link-item:hover::after {
    width: 100%;
    left: 0;
}

/* ---  REZERVIŠI DUGME --- */
.nav-right {
    opacity: 0;
    transform: translateX(20px);
    animation: navEntranceRight 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    animation-delay: 0.6s;
    /* FIX: Osiguravamo da su na desktopu elementi u redu ako zatreba */
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-nav-premium {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    color: var(--white);
    text-decoration: none;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 500;
    border: 1px solid rgba(200, 169, 126, 0.4);
    border-radius: 4px;
    background: transparent;
    overflow: hidden;
    z-index: 1;
    transition: color 0.4s ease, border-color 0.4s ease;
}

.btn-nav-premium i {
    font-size: 20px;
    color: var(--accent);
    transition: transform 0.4s ease;
}

/* Tečni hover prelaz pozadine odozdo nagore */
.btn-nav-premium::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: var(--accent);
    z-index: -1;
    transition: height 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-nav-premium:hover {
    color: var(--dark);
    border-color: var(--accent);
}

.btn-nav-premium:hover::before {
    height: 100%;
}

.btn-nav-premium:hover i {
    color: var(--dark);
    transform: rotate(15deg);
}

/* --- REVEAL KLJUČNE ANIMACIJE --- */
@keyframes navEntranceLeft {
    to { opacity: 1; transform: translateX(0); }
}

@keyframes navEntranceRight {
    to { opacity: 1; transform: translateX(0); }
}

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


/* ==========================================
   Novi Dodaci za Mobile & Premium Burger
   ========================================== */

/* Sakrij burger na desktopu, ali podesi dimenzije */
.nav-burger-trigger {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    width: 32px;
    height: 24px;
    z-index: 9999!important;
    padding: 0;
}

.burger-line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--white);
    transition: transform 0.4s var(--transition), background-color 0.4s ease, top 0.4s var(--transition);
}

.line-top { top: 6px; }
.line-bottom { top: 16px; }

/* Animacija burgera u "X" kada je aktivan */
.nav-burger-trigger.is-active .line-top {
    top: 11px;
    transform: rotate(45deg);
    background-color: var(--accent);
}

.nav-burger-trigger.is-active .line-bottom {
    top: 11px;
    transform: rotate(-45deg);
    background-color: var(--accent);
}

/* Sakrij mobilnu karticu na desktopu */
.mobile-menu-cta {
    display: none;
    width: 100%;
    max-width: 340px;
    margin-top: 30px;
}

/* --- RESPONSIVE KORREKCIJE --- */
@media (max-width: 992px) {
    .navbar {
        padding: 22px 6%;
    }
    
    .navbar.scrolled {
        padding: 16px 6%;
    }

    /* Prikazujemo burger PORED dugmeta "Rezerviši" */
    .nav-burger-trigger {
        display: block;
    }

    /* Pretvaramo nav-links u Fullscreen Cinematic Panel */
    .nav-links {
        position: fixed;
        inset: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(9, 9, 9, 0.97); 
        backdrop-filter: blur(25px) saturate(190%);
        -webkit-backdrop-filter: blur(25px) saturate(190%);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        z-index: 0; 
        
        opacity: 0;
        pointer-events: none;
        clip-path: circle(0% at 90% 5%);
        transition: opacity 0.5s ease, clip-path 0.7s cubic-bezier(0.77, 0, 0.175, 1);
    }

    /* Otvoreno stanje panela */
    .nav-links.is-open {
        opacity: 1;
        pointer-events: all;
        clip-path: circle(150% at 90% 5%);
    }

    /* Resetujemo uletanja sa desktopa i pravimo mobilnu kaskadu */
    .nav-links li {
        opacity: 0 !important;
        transform: translateY(25px) !important;
        animation: none !important;
        transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.6s ease;
        width: auto;
    }

    .nav-links.is-open li {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
    
    .nav-links.is-open li:nth-child(1) { transition-delay: 0.15s; }
    .nav-links.is-open li:nth-child(2) { transition-delay: 0.25s; }
    .nav-links.is-open li:nth-child(3) { transition-delay: 0.35s; }
    .nav-links.is-open li:nth-child(4) { transition-delay: 0.45s; }
    .nav-links.is-open li.mobile-menu-cta { transition-delay: 0.55s; }

    .nav-link-item {
        font-size: 24px; 
        font-family: var(--font-serif);
        text-transform: uppercase;
        letter-spacing: 3px;
    }

    /* Aktivacija premium kartice unutar menija */
    .mobile-menu-cta {
        display: block !important;
    }

    .menu-booking-card {
        position: relative;
        display: flex;
        align-items: center;
        gap: 15px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(200, 169, 126, 0.2);
        padding: 20px;
        border-radius: 16px;
        text-decoration: none;
        overflow: hidden;
        transition: border-color 0.3s ease, background 0.3s ease;
    }

    .card-glow {
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 0% 0%, rgba(200,169,126,0.08), transparent 60%);
        pointer-events: none;
    }

    .menu-booking-card i {
        font-size: 26px;
        color: var(--accent);
    }

    .menu-booking-card div h4 {
        color: var(--white);
        font-size: 14px;
        font-weight: 500;
        letter-spacing: 0.5px;
        margin-bottom: 4px;
    }

    .menu-booking-card div p {
        color: var(--muted);
        font-size: 11px;
        font-weight: 300;
        line-height: 1.3;
    }

    .menu-booking-card .arrow-icon {
        font-size: 18px;
        color: rgba(255, 255, 255, 0.2);
        margin-left: auto;
    }

    /* Veličine za tablet */
    .btn-nav-premium {
        padding: 10px 22px;
        font-size: 10px;
    }
    .nav-logo-text { font-size: 15px; }
    .nav-logo-img { height: 38px; }
}

/* Ekstremno mali ekrani (Mobilni telefoni) */
@media (max-width: 480px) {
    .btn-nav-premium span {
        display: none; /* Sakriva samo tekst, ikonica i zlatni krug ostaju tik uz burger */
    }
    .btn-nav-premium {
        padding: 0;
        border: 1px solid rgba(200, 169, 126, 0.3);
        border-radius: 50%;
        width: 42px;
        height: 42px;
        justify-content: center;
    }
    .btn-nav-premium i {
        font-size: 18px;
    }
}














/* Footer */




/* --- LUKSUZNI EKSKLUZIVNI FOOTER --- */
.luxury-exclusive-footer {
    background-color: #0b0b0b; /* Još dublja crna za premium kontrast */
    padding: 120px 8% 40px 8%;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
    overflow: hidden;
}

.footer-main-row {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 100px;
    position: relative;
    z-index: 3;
}

.footer-logo-wrap {
    margin-bottom: 30px;
    display: block;
}

.footer-exclusive-logo {
    height: 90px; 
    width: auto;
    object-fit: contain;
    filter: invert(1) brightness(100%); 
    transition: transform 0.3s ease;
}

.footer-exclusive-logo:hover {
    transform: scale(1.02);
}

/* Identitet tima (Lijeva strana) */
.footer-brand-serif {
    font-family: var(--font-serif);
    font-size: 28px;
    letter-spacing: 3px;
    color: var(--white);
    display: block;
    margin-bottom: 20px;
}

.footer-brand-serif span {
    color: var(--accent);
    font-weight: 300;
}

.footer-tagline {
    font-size: 14px;
    color: #8c8c9e;
    line-height: 1.7;
    font-weight: 300;
    max-width: 360px;
    margin-bottom: 35px;
}

.footer-social-wrap {
    display: flex;
    gap: 15px;
}

.footer-social-wrap a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a3a3b5;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.footer-social-wrap a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--dark);
    transform: translateY(-3px);
}

/* Direktorijum / Info blokovi (Desna strana) */
.footer-directory {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.directory-block span {
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--accent);
    display: block;
    margin-bottom: 25px;
    font-weight: 500;
}

.directory-link {
    display: block;
    color: var(--white);
    text-decoration: none;
    font-size: 15px;
    margin-bottom: 10px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.directory-link:hover {
    color: var(--accent);
}

.directory-text {
    font-size: 14px;
    color: #c4c4d4;
    line-height: 1.6;
    margin-bottom: 15px;
    font-weight: 300;
}

.directory-map-trigger {
    font-size: 13px;
    color: var(--white);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    transition: gap 0.3s ease;
}

.directory-map-trigger i {
    font-size: 12px;
    color: var(--accent);
    transition: transform 0.3s ease;
}

.directory-map-trigger:hover i {
    transform: translateX(4px);
}

/* Navigaciona lista u footeru */
.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-list li {
    margin-bottom: 12px;
}

.footer-nav-list a {
    color: #a3a3b5;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    font-weight: 300;
}

.footer-nav-list a:hover {
    color: var(--white);
}

/* --- DONJI DIO: BRUTALNA POZADINSKA TIPOGRAFIJA --- */
.footer-bottom-statement {
    margin-top: 40px;
    position: relative;
}

.massive-footer-bg-text {
    font-family: var(--font-serif);
    font-size: clamp(4rem, 12vw, 10rem);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.015);
    text-align: center;
    letter-spacing: 15px;
    line-height: 0.8;
    user-select: none;
    pointer-events: none;
    margin-bottom: -10px;
}

.footer-copyright-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright-bar p {
    font-size: 13px;
    color: #515162;
    margin: 0;
    font-weight: 300;
}

.developer-signature {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 11px !important;
    color: rgba(200, 169, 126, 0.3) !important;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .footer-main-row {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .footer-directory {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .footer-directory {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .directory-block span {
        margin-bottom: 15px;
    }
    .footer-copyright-bar {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

