
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Space Grotesk' !important;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            
            background: #0A0E17;
            color: #E8EDF5;
            overflow-x: hidden;
        }

        :root {
            --red: #e0553c;
            --navy: #0F1A2E;
            --card: #111b2a;
        }
        hr {
            display: none;
        }
        .container {
            max-width: 1400px;
            margin: auto;
            padding: 20px;
        }

        /* NAVBAR */
        nav {
            position: fixed;
            width: 100%;
            background: rgba(10, 14, 23, 0.95);
            backdrop-filter: blur(12px);
            padding: 15px 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }
        .nav-wrap {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 22px;
            font-weight: 600;
            background: linear-gradient(135deg, #FFFFFF 0%, var(--red) 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        nav a {
            color: white;
            text-decoration: none;
            margin-left: 25px;
            position: relative;
            font-weight: 500;
            transition: 0.2s;
        }
        nav a::after {
            content: "";
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--red);
            bottom: -5px;
            left: 0;
            transition: 0.3s;
        }
        nav a:hover::after {
            width: 100%;
        }
        nav a:hover {
            color: var(--red);
        }

        /* GLAVNA SEKCJJA */
        section {
            padding: 100px 0 60px 0;
        }
        h1 {
            font-size: 48px;
            font-weight: 600;
            margin-bottom: 15px;
        }
        h1:after {
            content: '';
            display: block;
            width: 70px;
            height: 3px;
            background: var(--red);
            margin-top: 10px;
        }
        .subtitle {
            color: #8fa3b8;
            margin-bottom: 40px;
            font-size: 1rem;
        }

        /* KATEGORIJE (filteri) */
        .categories-filter {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 40px;
            padding-bottom: 20px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .filter-btn {
            background: transparent;
            border: 1px solid rgba(224,85,60,0.4);
            color: #cbd5e1;
            padding: 8px 22px;
            border-radius: 40px;
            font-size: 0.9rem;
            font-weight: 500;
            cursor: pointer;
            transition: 0.2s;
        }
        .filter-btn:hover {
            border-color: var(--red);
            color: var(--red);
        }
        .filter-btn.active {
            background: var(--red);
            border-color: var(--red);
            color: white;
        }

        /* GALERIJA */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 25px;
        }
        .gallery-item {
            background: var(--card);
            border-radius: 16px;
            overflow: hidden;
            cursor: pointer;
            transition: 0.3s;
            border: 1px solid rgba(255,255,255,0.08);
            position: relative;
        }
        .gallery-item:hover {
            transform: translateY(-5px);
            border-color: var(--red);
        }
        .gallery-item img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            transition: transform 0.3s ease;
            display: block;
        }
        .gallery-item:hover img {
            transform: scale(1.03);
        }
        .category-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            background: rgba(0,0,0,0.7);
            backdrop-filter: blur(4px);
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.7rem;
            font-weight: 500;
            color: var(--red);
            z-index: 2;
            pointer-events: none;
        }

        /* MODAL (LIGHTBOX) */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(10,14,23,0.96);
            backdrop-filter: blur(15px);
            z-index: 2000;
            justify-content: center;
            align-items: center;
            cursor: pointer;
        }
        .modal-content {
            max-width: 90vw;
            max-height: 90vh;
            position: relative;
            cursor: default;
        }
        .modal-content img {
            max-width: 100%;
            max-height: 85vh;
            border-radius: 12px;
            border: 2px solid rgba(224,85,60,0.4);
            box-shadow: 0 20px 40px rgba(0,0,0,0.5);
        }
        .close-modal {
            position: absolute;
            top: -40px;
            right: 0;
            font-size: 2rem;
            color: white;
            cursor: pointer;
            background: rgba(0,0,0,0.5);
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: 0.2s;
        }
        .close-modal:hover {
            background: var(--red);
            transform: scale(1.05);
        }
        .modal-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            display: flex;
            justify-content: space-between;
            pointer-events: none;
        }
        .modal-nav button {
            pointer-events: auto;
            background: rgba(0,0,0,0.6);
            border: none;
            color: white;
            font-size: 2rem;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            transition: 0.2s;
            margin: 0 20px;
        }
        .modal-nav button:hover {
            background: var(--red);
            transform: scale(1.1);
        }
        .modal-caption {
            text-align: center;
            margin-top: 15px;
            color: #cbd5e1;
            font-size: 0.85rem;
        }

        /* FOOTER */
        footer {
            text-align: center;
            padding: 30px;
            border-top: 1px solid #1f2c40;
            color: #7e8c9e;
        }

        /* ANIMATION */
        .fade {
            opacity: 0;
            transform: translateY(30px);
            transition: 0.6s;
        }
        .fade.show {
            opacity: 1;
            transform: translateY(0);
        }

        @media (max-width: 700px) {
            .gallery-grid {
                grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
                gap: 15px;
            }
            .gallery-item img {
                height: 160px;
            }
            .filter-btn { padding: 6px 16px; font-size: 0.8rem; }
            h1 { font-size: 36px; }
            section { padding: 80px 0 40px; }
            .modal-nav button { width: 35px; height: 35px; font-size: 1.2rem; margin: 0 5px; }
        }