      :root {
            --deep-blue: #0a192f;
            --greek-blue: #2173ec; 
            --light-blue: #ebf5ff;
            --sand-gold: #C5A059;
            --white: #FFFFFF;
            --text-light: #f4f4f4;
            --text-dark: #333333;
            --bg-pattern: #f9f9f9;
        }

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

        /* --- FIX ZA DUPLI SCROLL --- */
        html {
            width: 100%;
            scroll-behavior: smooth;
            /* Uklonjen overflow-x odavde da ne pravi konflikt */
        }

        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--text-light);
            background-color: var(--deep-blue);
            width: 100%;
            margin: 0;
            padding: 0;
            overflow-x: hidden; /* Skroluje se samo body, horizontalno sakriveno */
            position: relative;
        }

        /* --- 1. TOP BAR --- */
        .top-bar { 
            background-color: transparent; 
            padding: 10px 0; 
            position: absolute; 
            top: 0; 
            width: 100%; 
            z-index: 60; 
            border-bottom: 1px solid rgba(255,255,255,0.1); 
            transition: all 0.3s ease;
        }
        
        body.scrolled .top-bar { transform: translateY(-100%); }

        .top-container { width: 92%; max-width: 1600px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
        .social-icons a { color: var(--white); margin-right: 15px; font-size: 0.9rem; transition: 0.3s; }
        .social-icons a:hover { color: var(--greek-blue); transform: translateY(-2px); }
        .contact-info span { margin-left: 20px; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 500; }
        .contact-info i { color: var(--white); margin-right: 5px; }

        /* --- 2. HEADER --- */
        header { 
            position: absolute; 
            width: 100%; 
            top: 45px; 
            z-index: 50; 
            padding: 15px 0; 
            transition: all 0.4s ease; 
        }

        header.sticky {
            position: fixed;
            top: 0;
            background-color: rgba(10, 25, 47, 0.95);
            backdrop-filter: blur(10px);
            padding: 10px 0;
            box-shadow: 0 5px 20px rgba(0,0,0,0.3);
            border-bottom: 1px solid rgba(255,255,255,0.05);
            animation: slideDown 0.5s ease;
        }

        @keyframes slideDown {
            from { transform: translateY(-100%); }
            to { transform: translateY(0); }
        }

        header.sticky .center-logo img { height: 70px; }

        .nav-wrapper { width: 92%; max-width: 1600px; margin: 0 auto; display: flex; align-items: center; position: relative; }
        .main-menu { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); display: flex; align-items: center; justify-content: center; width: auto; }
        .nav-list { list-style: none; display: flex; gap: 35px; align-items: center; }
        .nav-list a { color: var(--white); text-decoration: none; text-transform: uppercase; font-size: 0.75rem; font-weight: 600; letter-spacing: 2px; transition: color 0.3s; position: relative; white-space: nowrap; }
        .nav-list a::after { content: ''; position: absolute; width: 0; height: 2px; bottom: -5px; left: 0; background-color: var(--greek-blue); transition: width 0.3s ease-in-out; }
        .nav-list a:hover { color: var(--white); }
        .nav-list a:hover::after { width: 100%; }

        .center-logo { margin: 0 60px; }
        .center-logo img { height: 110px; width: auto; display: block; transition: 0.3s; }

        .header-cta { margin-left: auto; padding: 12px 35px; border: 1px solid var(--white); color: var(--white); text-transform: uppercase; font-size: 0.75rem; font-weight: 600; letter-spacing: 2px; text-decoration: none; transition: 0.3s; z-index: 2; }
        .header-cta:hover { background-color: var(--greek-blue); border-color: var(--greek-blue); color: var(--white); box-shadow: 0 0 15px rgba(0, 87, 217, 0.4); }

        .mobile-logo-img { display: none; }
        .hamburger-menu { display: none; }

        /* Sidebar Styles */
        .sidebar-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); z-index: 998; opacity: 0; visibility: hidden; transition: 0.3s; backdrop-filter: blur(4px); }
        .sidebar-overlay.active { opacity: 1; visibility: visible; }
        .sidebar { position: fixed; top: 0; left: -100%; width: 320px; height: 100vh; background-color: var(--white); z-index: 999; transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1); display: flex; flex-direction: column; box-shadow: 5px 0 30px rgba(0,0,0,0.15); }
        .sidebar.active { left: 0; }
        .sidebar-header { padding: 25px 30px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid rgba(0,0,0,0.05); background-color: var(--white); }
        .sidebar-logo { font-family: 'Cinzel', serif; font-size: 1.4rem; color: var(--deep-blue); text-decoration: none; font-weight: 700; }
        .close-btn { font-size: 1.5rem; color: var(--deep-blue); cursor: pointer; transition: 0.3s; }
        .close-btn:hover { color: var(--greek-blue); transform: rotate(90deg); }
        .sidebar-nav { padding: 20px 0; flex-grow: 1; overflow-y: auto; }
        .sidebar-nav ul { list-style: none; }
        .sidebar-nav li { border-bottom: 1px solid rgba(0,0,0,0.05); }
        .sidebar-nav a { color: var(--deep-blue); text-decoration: none; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; display: flex; align-items: center; padding: 20px 35px; transition: 0.3s; }
        .sidebar-nav a:hover { background-color: var(--light-blue); color: var(--greek-blue); padding-left: 45px; }
        .sidebar-nav a i { width: 35px; color: var(--greek-blue); font-size: 1.1rem; }
        .sidebar-footer { padding: 30px; background-color: #f9f9f9; border-top: 1px solid rgba(0,0,0,0.05); }
        .sidebar-footer h4 { color: var(--deep-blue); font-family: 'Cinzel', serif; margin-bottom: 20px; }
        .footer-info-item { display: flex; align-items: center; margin-bottom: 15px; color: #555; font-size: 0.85rem; }
        .footer-info-item i { color: var(--greek-blue); margin-right: 15px; width: 20px; text-align: center; }

        /* --- HERO --- */
        .hero { height: 100vh; position: relative; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
        .hero-slider { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
        .slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; opacity: 0; transform: scale(1); animation: zoomFade 18s infinite linear; }
        .slide:nth-child(1) { background-image: url('../images/hero1.png'); animation-delay: 0s; }
        .slide:nth-child(2) { background-image: url('../images/hero2.png'); animation-delay: 6s; }
        .slide:nth-child(3) { background-image: url('../images/hero3.png'); animation-delay: 12s; }
        @keyframes zoomFade { 0% { opacity: 0; transform: scale(1); z-index: 2;} 5% { opacity: 1; } 33.33% { opacity: 1; transform: scale(1.1); z-index: 2;} 38.33% { opacity: 0; z-index: 1;} 100% { opacity: 0; transform: scale(1.1); z-index: 1;} }
        .hero-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.6)); z-index: 2; }
        
        .hero-content { position: relative; z-index: 10; max-width: 900px; padding: 0 20px; margin-top: 80px; }
        .hero-welcome { font-family: 'Montserrat', sans-serif; font-size: 1.5rem; color: var(--white); margin-bottom: 5px; display: block; font-weight: 300; letter-spacing: 2px; }
        .hero-title { font-family: 'Cinzel', serif; font-size: 4rem; color: var(--white); margin-bottom: 10px; font-weight: 700; letter-spacing: 5px; line-height: 1.2; }
        .hero-subtitle-greek { font-family: 'Pinyon Script', cursive; font-size: 3rem; color: var(--white); font-weight: 400; display: block; margin-top: 15px; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }

        .welcome-divider { display: flex; align-items: center; justify-content: center; margin-bottom: 20px; opacity: 0.9; }
        .line-part { height: 1px; width: 50px; background: linear-gradient(90deg, transparent, var(--light-blue)); }
        .line-part.right { background: linear-gradient(90deg, var(--light-blue), transparent); }
        .line-diamond { width: 7px; height: 7px; background: transparent; border: 1px solid var(--light-blue); transform: rotate(45deg); margin: 0 10px; }

        .hero-separator { display: flex; justify-content: center; gap: 15px; margin: 30px 0 35px 0; }
        .separator-square { width: 10px; height: 10px; border: 1px solid var(--white); background: transparent; transform: rotate(45deg); animation: slowSpin 6s linear infinite; }
        @keyframes slowSpin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

        .hero-btn-main { display: inline-block; padding: 15px 45px; border: 1px solid var(--white); color: var(--white); text-transform: uppercase; font-size: 0.8rem; font-weight: 600; letter-spacing: 2px; text-decoration: none; transition: 0.3s; }
        .hero-btn-main:hover { background-color: var(--greek-blue); border-color: var(--greek-blue); color: var(--white); box-shadow: 0 0 20px rgba(0, 87, 217, 0.5); }

        /* Hero Reservation Box (TVOJ ZAHTEV - NE DIRANO) */
        .hero-reservation-box { position: absolute; bottom: 50px; right: 50px; width: 110px; height: 110px; z-index: 20; display: flex; justify-content: center; align-items: center; text-decoration: none; }
        .reservation-rotating-border { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 1px solid #fff; background: transparent; z-index: 1; animation: slowSpin 10s linear infinite; transition: 0.3s; }
        .reservation-inner { position: relative; width: 105px; height: 105px; background-color: #fff; display: flex; flex-direction: column; justify-content: center; align-items: center; z-index: 2; transition: 0.3s; }
        .reservation-icon { width: 52px; height: auto; margin-bottom: 8px; filter: brightness(0) saturate(100%) invert(32%) sepia(98%) saturate(1764%) hue-rotate(202deg) brightness(93%) contrast(101%); transition: 0.3s; }
        .reservation-text { font-family: 'Montserrat', sans-serif; font-size: 0.7rem; text-transform: uppercase; font-weight: 700; letter-spacing: 1px; color: var(--greek-blue); transition: 0.3s; }
        .hero-reservation-box:hover .reservation-inner { background-color: #d6d6d6; }
        .hero-reservation-box:hover .reservation-rotating-border { border-color: var(--white); }

        /* --- ABOUT US SEKCIJA --- */
        .about-section { position: relative; background-color: var(--white); padding: 100px 0; overflow: hidden; background-image: radial-gradient(var(--light-blue) 1px, transparent 1px); background-size: 20px 20px; }
        .shape-float { position: absolute; z-index: 1; opacity: 0.1; pointer-events: none; animation: floatShape 6s ease-in-out infinite; }
        .shape-1 { top: -50px; left: -50px; width: 300px; }
        .shape-6 { bottom: -50px; right: -50px; width: 350px; }
        @keyframes floatShape { 0% { transform: translateY(0px) rotate(0deg); } 50% { transform: translateY(-20px) rotate(2deg); } 100% { transform: translateY(0px) rotate(0deg); } }
        
        .about-container { width: 90%; max-width: 1400px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 60px; position: relative; z-index: 5; }
        .about-text-content { flex: 1; text-align: left; }
        .about-eyebrow { font-family: 'Pinyon Script', cursive; font-size: 2.5rem; color: var(--greek-blue); margin-bottom: 10px; display: block; }
        .about-title { font-family: 'Cinzel', serif; font-size: 3rem; color: var(--deep-blue); line-height: 1.2; margin-bottom: 25px; font-weight: 700; }
        .about-desc { font-family: 'Montserrat', sans-serif; font-size: 1rem; line-height: 1.8; color: #555; margin-bottom: 40px; }
        .btn-about { display: inline-block; padding: 15px 40px; background-color: #0e63d1; color: var(--white); text-transform: uppercase; font-weight: 600; letter-spacing: 2px; text-decoration: none; border: 1px solid #0e63d1; transition: 0.3s; }
        .btn-about:hover { background-color: transparent; color: #0e63d1; }

        /* DESNO: Kompozicija Slika */
        .about-image-composition { flex: 1.1; position: relative; height: 600px; }
        .img-big-wrapper { position: absolute; top: 0; right: 0; width: 75%; height: 85%; overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,0.15); z-index: 1; transition: transform 0.1s ease-out; }
        .img-big-wrapper img { width: 100%; height: 100%; object-fit: cover; }
        .img-small-wrapper { position: absolute; bottom: 0; left: 0; width: 55%; height: 50%; overflow: hidden; border: 15px solid var(--white); box-shadow: 0 20px 50px rgba(0,0,0,0.2); z-index: 2; transition: transform 0.1s ease-out; }
        .img-small-wrapper img { width: 100%; height: 100%; object-fit: cover; }
        .img-mobile-hidden { display: none; }

        /* --- MENU SECTION STYLES --- */
        .menu-section { position: relative; padding: 100px 0; background-color: #f4f9ff; overflow: hidden; }
        .menu-shape { position: absolute; z-index: 1; opacity: 0.08; pointer-events: none; animation: floatShape 6s ease-in-out infinite; }
        .menu-shape-tl { top: -50px; left: -50px; width: 850px; }
        .menu-shape-br { bottom: -50px; right: -50px; width: 550px; }
        .menu-container { width: 90%; max-width: 1400px; margin: 0 auto; position: relative; z-index: 2; }
        .menu-header { text-align: center; margin-bottom: 70px; }
        .menu-eyebrow { font-family: 'Pinyon Script', cursive; font-size: 2.5rem; letter-spacing: 3px; font-weight: 200; color: var(--greek-blue); display: block; margin-bottom: 15px; }
        .menu-separator { display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
        .sep-line { width: 40px; height: 1px; background: var(--sand-gold); }
        .sep-diamond { width: 8px; height: 8px; border: 1px solid var(--sand-gold); transform: rotate(45deg); margin: 0 10px; }
        .menu-title { font-family: 'Cinzel', serif; font-size: 3.5rem; color: var(--deep-blue); font-weight: 700; }
        .menu-grid { display: grid; grid-template-columns: 1fr 1fr; column-gap: 80px; row-gap: 50px; margin-bottom: 80px; }
        .menu-item { display: flex; flex-direction: column; }
        .menu-item-header { display: flex; align-items: baseline; margin-bottom: 10px; }
        .menu-item-name { font-family: 'Cinzel', serif; font-size: 1.4rem; color: var(--deep-blue); font-weight: 700; white-space: nowrap; }
        .menu-tag { font-family: 'Montserrat', sans-serif; font-size: 0.6rem; text-transform: uppercase; background-color: var(--greek-blue); color: var(--white); padding: 2px 6px; margin-left: 10px; vertical-align: middle; font-weight: 600; border-radius: 2px; }
        .menu-tag.new { background-color: var(--greek-blue); color: var(--white); }
        .menu-dots { flex-grow: 1; border-bottom: 2px dotted #ccc; margin: 0 15px; position: relative; top: -5px; }
        .menu-price { font-family: 'Cinzel', serif; font-size: 1.4rem; color: var(--greek-blue); font-weight: 700; }
        .menu-item-desc { font-family: 'Montserrat', sans-serif; font-size: 0.95rem; color: #666; line-height: 1.6; max-width: 90%; }
        .menu-footer { text-align: center; }
        .opening-hours { font-family: 'Montserrat', sans-serif; color: var(--sand-gold); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; margin-bottom: 30px; }
        .btn-menu-full { display: inline-block; padding: 18px 50px; border: 1px solid var(--greek-blue); color: var(--greek-blue); text-transform: uppercase; font-weight: 600; letter-spacing: 2px; text-decoration: none; transition: 0.3s; }
        .btn-menu-full:hover { background-color: var(--greek-blue); color: var(--white); box-shadow: 0 5px 20px rgba(33, 115, 236, 0.3); }

        /* --- PARALLAX SECTION --- */
        .parallax-section { position: relative; background-image: url('../images/paralax.png'); background-attachment: fixed; background-position: center; background-repeat: no-repeat; background-size: cover; height: 600px; display: flex; justify-content: center; align-items: center; text-align: center; }
        .parallax-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(10, 25, 47, 0.7); z-index: 1; }
        .parallax-content { position: relative; z-index: 2; padding: 0 20px; top: -50px; }
        .parallax-title { font-family: 'Cinzel', serif; font-size: 3.5rem; color: var(--white); margin-bottom: 15px; text-transform: uppercase; letter-spacing: 2px; }
        .parallax-subtitle { font-family: 'Pinyon Script', cursive; font-size: 2.5rem; color: var(--sand-gold); margin-bottom: 30px; }
        .white-spin { border-color: var(--white) !important; }

        /* --- FEATURES SECTION & OVERLAP --- */
        .features-section { position: relative; background-color: var(--white); padding-bottom: 100px; }

        /* --- RESERVATION BOX (VELIKI & PODELJEN) --- */
        .reservation-overlap-container { width: 95%; max-width: 1300px; margin: 0 auto; position: relative; top: -100px; z-index: 10; }
        .res-box-split { display: flex; box-shadow: 0 20px 60px rgba(0,0,0,0.3); }

        /* LEVA STRANA (FORMA) */
        .res-left-form { width: 65%; background-color: #0d1b2a; padding: 50px; color: var(--white); }
        .res-header { margin-bottom: 30px; }
        .res-header h3 { font-family: 'Cinzel', serif; font-size: 2.5rem; margin-bottom: 10px; font-weight: 400; }
        .res-header p { font-family: 'Montserrat', sans-serif; font-size: 0.9rem; color: #aaa; }
        .res-header span { color: var(--sand-gold); }

        .res-grid-form { display: flex; flex-direction: column; gap: 20px; }
        .form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
        .form-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
        .form-row-1 { width: 100%; }

        /* --- STILIZACIJA FORME ZA REZERVACIJU (UPDATED) --- */

/* Input polja (Text, Date, Select) */
.res-input-new, 
.res-textarea-new {
    width: 100%;
    background-color: rgba(255,255,255,0.08); /* Malo svetlija prozirna */
    border: 1px solid rgba(255,255,255,0.2);
    padding: 15px 20px;
    
    /* KLJUČNO: Boja teksta koji korisnik kuca ili bira */
    color: #ffffff !important; 
    
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem; /* Malo veći font za čitljivost */
    outline: none;
    transition: 0.3s;
    border-radius: 4px; /* Blago zaobljene ivice */
    
    /* Uklanjanje default stila za iOS/Android */
    -webkit-appearance: none; 
    -moz-appearance: none; 
    appearance: none;
}

/* Specifično za Select (da dodamo strelicu jer smo skinuli appearance) */
select.res-input-new {
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23C5A059%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 15px top 50%;
    background-size: 12px auto;
    cursor: pointer;
}

/* Boja opcija unutar Selecta (Kada se otvori meni) */
/* Ovo mora biti tamno jer je pozadina dropdown-a obično bela na sistemu */
select.res-input-new option {
    background-color: #fff;
    color: #333;
    padding: 10px;
}

/* Placeholder boja (pre nego što se kuca) */
.res-input-new::placeholder, 
.res-textarea-new::placeholder {
    color: #aaa; /* Svetlo siva */
    opacity: 1;
}

/* Polje za poruku */
.res-textarea-new {
    height: 120px;
    resize: none;
}

/* Fokus stanje (kad klikneš) */
.res-input-new:focus, 
.res-textarea-new:focus {
    border-color: var(--sand-gold); /* Zlatni okvir */
    background-color: rgba(255,255,255,0.15); /* Malo svetlije */
    box-shadow: 0 0 10px rgba(197, 160, 89, 0.2); /* Blagi zlatni sjaj */
}

/* Date input ikonica (Samo za Webkit browsere kao Chrome/Safari) */
input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1); /* Pretvara crnu ikonicu u belu */
    cursor: pointer;
}

        .res-btn-gold { width: 100%; padding: 18px; background-color: var(--sand-gold); color: #0d1b2a; border: none; text-transform: uppercase; font-weight: 700; letter-spacing: 2px; cursor: pointer; transition: 0.3s; font-size: 0.9rem; }
        .res-btn-gold:hover { background-color: var(--white); color: #0d1b2a; }

        /* DESNA STRANA (KONTAKT) */
        .res-right-contact { width: 35%; background-color: #080f18; background-image: url('images/form-pattern.png'); background-repeat: repeat; padding: 50px 30px; text-align: center; color: var(--white); display: flex; flex-direction: column; justify-content: center; align-items: center; border-left: 1px solid rgba(255,255,255,0.05); }
        .contact-title { font-family: 'Cinzel', serif; font-size: 2rem; line-height: 1.2; margin-bottom: 30px; }
        .contact-block { margin-bottom: 20px; }
        .c-label { display: block; font-family: 'Montserrat', sans-serif; font-size: 0.9rem; color: #aaa; margin-bottom: 5px; }
        .c-value { display: block; font-family: 'Montserrat', sans-serif; font-size: 0.95rem; line-height: 1.6; }
        .c-value.highlight { font-size: 1.2rem; color: var(--sand-gold); font-family: 'Cinzel', serif; margin-bottom: 10px;}
        .c-separator-diamond { width: 8px; height: 8px; border: 1px solid var(--sand-gold); transform: rotate(45deg); margin: 10px auto 25px auto; }

        /* --- FEATURES GRID --- */
        .features-container { width: 90%; max-width: 1400px; margin: 0 auto; margin-top: 50px; text-align: center; }
        .features-header { margin-bottom: 60px; }
        .features-eyebrow { font-family: 'Montserrat', sans-serif; text-transform: uppercase; letter-spacing: 3px; color: var(--greek-blue); font-size: 0.9rem; display: block; margin-bottom: 10px;}
        .features-title { font-family: 'Cinzel', serif; font-size: 3rem; color: var(--deep-blue); margin-bottom: 20px; }
        
        .spec-diamond-sep { display: flex; align-items: center; justify-content: center; margin-bottom: 25px; width: 100%; }
        .spec-line { width: 40px; height: 1px; background: var(--sand-gold); }
        .spec-diamond { width: 8px; height: 8px; background: var(--sand-gold); transform: rotate(45deg); margin: 0 10px; }

        .features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
        .feature-item { padding: 30px 20px; background-color: #fcfcfc; border: 1px solid rgba(0,0,0,0.03); transition: 0.3s; }
        .feature-item:hover { transform: translateY(-10px); box-shadow: 0 10px 30px rgba(0,0,0,0.08); border-bottom: 3px solid var(--greek-blue); }
        .feature-icon { font-size: 2.5rem; color: var(--greek-blue); margin-bottom: 20px; }
        .feature-item h4 { font-family: 'Cinzel', serif; font-size: 1.2rem; color: var(--deep-blue); margin-bottom: 15px; }
        .feature-item p { font-family: 'Montserrat', sans-serif; font-size: 0.9rem; color: #666; line-height: 1.6; }

        /* --- GALLERY SECTION STYLES --- */
        .gallery-section { position: relative; padding: 100px 0; background-color: var(--white); overflow: hidden; }
        .gallery-bg-pattern { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: radial-gradient(var(--light-blue) 1px, transparent 1px); background-size: 20px 20px; opacity: 0.5; pointer-events: none; }
        .gallery-container { width: 90%; max-width: 1400px; margin: 0 auto; position: relative; z-index: 2; }
        .gallery-header { text-align: center; margin-bottom: 60px; }
        .gallery-eyebrow { font-family: 'Pinyon Script', cursive; font-size: 2.5rem; color: var(--greek-blue); margin-bottom: 5px; display: block; }
        .gallery-title { font-family: 'Cinzel', serif; font-size: 3rem; color: var(--deep-blue); margin-bottom: 20px; font-weight: 700; }
        .gallery-wrapper { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-bottom: 60px; }
        .gallery-card { position: relative; width: 100%; height: 500px; overflow: hidden; border-radius: 4px; cursor: pointer; }
        .gallery-img-box { width: 100%; height: 100%; position: relative; }
        .gallery-img-box img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
        .gallery-card:hover .gallery-img-box img { transform: scale(1.1); }
        .gallery-overlay { position: absolute; bottom: 0; left: 0; width: 100%; padding: 30px; background: linear-gradient(to top, rgba(10, 25, 47, 0.9), transparent); color: var(--white); text-align: center; transform: translateY(20px); transition: transform 0.4s ease; }
        .gallery-card:hover .gallery-overlay { transform: translateY(0); }
        .gallery-cat { display: block; font-family: 'Montserrat', sans-serif; font-size: 1rem; text-transform: uppercase; letter-spacing: 2px; color: var(--sand-gold); margin-bottom: 10px; }
        .gallery-name { font-family: 'Cinzel', serif; font-size: 1.5rem; font-weight: 400; }
        .gallery-footer { text-align: center; }
        .btn-gallery { display: inline-block; padding: 18px 50px; border: 1px solid var(--greek-blue); color: var(--greek-blue); text-transform: uppercase; font-weight: 600; letter-spacing: 2px; text-decoration: none; transition: 0.3s; }
        .btn-gallery:hover { background-color: var(--greek-blue); color: var(--white); }

        /* --- PREMIUM FOOTER STYLES --- */
        .footer-premium { background-color: #02060d; color: var(--white); padding: 80px 0 30px 0; position: relative; overflow: hidden; border-top: 1px solid rgba(255,255,255,0.05); }
        .footer-wrapper { width: 90%; max-width: 1600px; margin: 0 auto; }
        .footer-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 60px; }
        .f-logo { height: 120px; width: auto; filter: drop-shadow(0 0 10px rgba(255,255,255,0.1)); }
        .footer-content-right { display: flex; gap: 80px; }
        .f-heading { font-family: 'Cinzel', serif; font-size: 0.9rem; color: var(--sand-gold); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 25px; opacity: 0.8; }
        .f-links { list-style: none; padding: 0; }
        .f-links li { margin-bottom: 12px; }
        .f-links a { font-family: 'Montserrat', sans-serif; font-size: 0.95rem; color: var(--white); text-decoration: none; text-transform: uppercase; letter-spacing: 1px; transition: 0.3s; position: relative; font-weight: 500; }
        .f-links a:hover { color: var(--greek-blue); padding-left: 5px; }
        .f-social-icons { display: flex; gap: 20px; margin-bottom: 20px; }
        .f-social-icons a { width: 45px; height: 45px; border: 1px solid rgba(255,255,255,0.2); display: flex; justify-content: center; align-items: center; color: var(--white); transition: 0.3s; font-size: 1.1rem; }
        .f-social-icons a:hover { background-color: var(--greek-blue); border-color: var(--greek-blue); transform: translateY(-3px); }
        .desktop-contact-mini p { font-family: 'Montserrat', sans-serif; font-size: 0.85rem; color: rgba(255,255,255,0.5); }
        .mobile-contact-display { display: none; }
        .footer-middle-statement { text-align: center; margin-bottom: 40px; opacity: 0.1; user-select: none; }
        .giant-text { font-family: 'Cinzel', serif; font-size: 6vw; font-weight: 700; color: var(--white); letter-spacing: 10px; white-space: nowrap; margin: 0; line-height: 1; }
        .f-separator { width: 100%; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent); margin-bottom: 30px; }
        .f-bottom-content { display: flex; justify-content: space-between; align-items: center; font-family: 'Montserrat', sans-serif; font-size: 0.8rem; color: rgba(255,255,255,0.6); }
        .prodanic-link { color: var(--sand-gold); text-decoration: none; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; transition: 0.3s; }
        .prodanic-link:hover { color: var(--white); text-shadow: 0 0 10px rgba(197, 160, 89, 0.6); }

        /* --- SCROLL TO TOP --- */
        .scroll-top { position: fixed; bottom: 30px; right: 30px; width: 50px; height: 50px; background-color: var(--white); color: var(--deep-blue); border: 2px solid var(--sand-gold); border-radius: 50%; display: flex; justify-content: center; align-items: center; cursor: pointer; z-index: 1000; opacity: 0; visibility: hidden; transition: all 0.3s ease; box-shadow: 0 5px 15px rgba(0,0,0,0.2); }
        .scroll-top.show { opacity: 1; visibility: visible; }
        .scroll-top:hover { background-color: var(--greek-blue); color: var(--white); border-color: var(--greek-blue); transform: translateY(-3px); }
        .scroll-top i { font-size: 1.2rem; }

        /* RESPONSIVE */
        @media (max-width: 992px) {
            .menu-grid { grid-template-columns: 1fr; row-gap: 40px; }
            .menu-title { font-size: 2.5rem; }
            .menu-item-name { font-size: 1.2rem; }
            .menu-price { font-size: 1.2rem; }
            .menu-item-desc { max-width: 100%; }
            .res-box-split { flex-direction: column; }
            .res-left-form { width: 100%; padding: 30px; }
            .res-right-contact { width: 100%; padding: 40px 20px; border-left: none; border-top: 1px solid rgba(255,255,255,0.1); }
            .form-row-2, .form-row-3 { grid-template-columns: 1fr; gap: 15px; }
            .parallax-title { font-size: 2rem; }
            .features-grid { grid-template-columns: 1fr 1fr; }
            
            .gallery-title { font-size: 2.5rem; }
            .gallery-wrapper {
                display: flex; /* Pretvara grid u flex red */
                overflow-x: auto; /* Omogućava horizontalno skrolanje */
                scroll-snap-type: x mandatory; /* "Lepljenje" slika */
                gap: 20px;
                padding-bottom: 20px; /* Prostor za scrollbar ako se vidi */
                -webkit-overflow-scrolling: touch; /* Glatko skrolanje na iOS */
                scrollbar-width: none;
                -ms-overflow-style: none;
            }
            .gallery-wrapper::-webkit-scrollbar { display: none; }
            .gallery-card {
                min-width: 85vw; /* Slika zauzima 85% širine ekrana */
                height: 400px; /* Manja visina na telefonu */
                scroll-snap-align: center; /* Centrira sliku pri skrolu */
                flex-shrink: 0; /* Ne dozvoljava smanjivanje */
            }
            .gallery-overlay { transform: translateY(0); }

            /* Footer Mobile */
            .footer-premium { padding: 50px 0 20px 0; }
            .footer-top { flex-direction: column; align-items: center; text-align: center; gap: 30px; }
            .footer-content-right { flex-direction: column; gap: 40px; width: 100%; }
            .f-logo { height: 90px; margin-bottom: 10px; }
            .mobile-contact-display { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
            .mobile-contact-display p, .mobile-contact-display a { font-family: 'Montserrat', sans-serif; color: var(--white); font-size: 1rem; text-decoration: none; display: flex; align-items: center; justify-content: center; gap: 10px; }
            .mobile-contact-display i { color: var(--greek-blue); }
            .desktop-contact-mini { display: none; }
            .f-social-icons { justify-content: center; }
            .giant-text { font-size: 3rem; letter-spacing: 3px; white-space: normal; }
            .f-bottom-content { flex-direction: column; gap: 10px; }
        }

        @media (max-width: 600px) {
            .features-grid { grid-template-columns: 1fr; }
            .features-header { margin-bottom: 40px; }
            .features-title { font-size: 2rem; }
        }

        @media (max-width: 1200px) {
            .top-bar { display: none; }
            header { top: 0; background-color: transparent; box-shadow: none; padding: 10px 0; min-height: 100px; }
            .main-menu, .header-cta { display: none; }
            .mobile-logo-img { display: block; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); height: 85px; width: auto; }
            
            /* --- FIXED BURGER ON MOBILE --- */
            .hamburger-menu {
                display: flex;
                position: fixed; /* Fiksirano */
                top: 25px; /* Odmak od vrha */
                right: 25px; /* Odmak desno */
                z-index: 9999; /* Iznad svega */
                background-color: var(--greek-blue); /* Plavi krug */
                border-radius: 50%;
                width: 50px;
                height: 50px;
                justify-content: center;
                align-items: center;
                flex-direction: column;
                gap: 5px;
                box-shadow: 0 5px 15px rgba(33, 115, 236, 0.4); /* Sjaj */
                cursor: pointer;
            }

            .hamburger-menu span { 
                display: block; 
                height: 2px; 
                width: 24px; /* Fix sirina linija */
                background-color: var(--white); /* Bele linije */
                border-radius: 2px; 
                transition: all 0.3s ease; 
            }
            
            /* Resetovanje margina iz prethodnog koda */
            .hamburger-menu span:nth-child(2) { width: 24px; margin-left: 0; }

            .hero-title { font-size: 2.5rem; }
            .hero-subtitle-greek { font-size: 2rem; }
            
            .about-container { flex-direction: column; text-align: center; }
            .about-text-content { text-align: center; margin-bottom: 50px; }
            
            /* RESETOVANJE KOMPOZICIJE ZA MOBILNI */
            .about-image-composition { width: 100%; height: auto; display: flex; flex-direction: column; gap: 20px; }
            .img-big-wrapper { position: relative; width: 100%; height: 300px; top: auto; right: auto; box-shadow: none; }
            .img-small-wrapper { position: relative; width: 100%; height: 250px; bottom: auto; left: auto; border: none; box-shadow: none; border-radius: 5px; }
            .img-mobile-hidden { display: block !important; position: relative; width: 100%; height: 250px; border-radius: 5px; overflow: hidden; }
            .img-mobile-hidden img { width: 100%; height: 100%; object-fit: cover; }
            
            .scroll-top { bottom: 20px; right: 20px; width: 45px; height: 45px; }
            .hero-reservation-box { bottom: 20px; right: 20px; width: 90px; height: 90px; }
            .reservation-inner { width: 90px; height: 90px; }
            .reservation-icon { width: 46px; margin-bottom: 5px; }
            .reservation-text { font-size: 0.6rem; }
        }

        /* --- TOAST NOTIFICATION STYLE --- */
        #toast-notification {
            visibility: hidden;
            min-width: 300px;
            background-color: #0a192f; /* Deep Blue */
            color: #fff;
            text-align: center;
            border-radius: 8px;
            padding: 16px;
            position: fixed;
            z-index: 9999;
            right: 30px;
            top: 100px; /* Malo ispod navbara */
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            border-left: 5px solid #C5A059; /* Sand Gold */
            font-family: 'Montserrat', sans-serif;
            display: flex;
            align-items: center;
            gap: 15px;
            opacity: 0;
            transition: opacity 0.5s, top 0.5s;
        }

        #toast-notification.show {
            visibility: visible;
            opacity: 1;
            top: 110px; /* Animacija spuštanja */
        }

        .toast-icon {
            font-size: 24px;
            color: #C5A059;
        }

        .toast-content {
            text-align: left;
        }

        .toast-title {
            font-weight: 700;
            font-size: 14px;
            display: block;
            margin-bottom: 4px;
            color: #C5A059;
            text-transform: uppercase;
        }

        .toast-msg {
            font-size: 13px;
            color: #f4f4f4;
        }

        @media (max-width: 600px) {
            #toast-notification {
                right: 5%;
                left: 5%;
                min-width: auto;
                width: 90%;
            }
        }