:root { --accent: #c5a059; --bg: #0b0b0b; --text: #ffffff; --glass: rgba(255, 255, 255, 0.05); }

* { margin: 0; padding: 0; box-sizing: border-box; cursor: none; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; overflow-x: hidden; scroll-behavior: smooth; }

/* Custom Cursor (Samo za desktop) */
.custom-cursor { width: 20px; height: 20px; background: var(--accent); border-radius: 50%; position: fixed; pointer-events: none; z-index: 9999; mix-blend-mode: difference; transition: transform 0.1s; }

.container { width: 90%; margin: auto; max-width: 1300px; }

/* Navigation */
.glass-nav { position: fixed; width: 100%; top: 0; padding: 20px 0; z-index: 1000; backdrop-filter: blur(15px); background: rgba(0,0,0,0.8); border-bottom: 1px solid rgba(255,255,255,0.1); }
.nav-container { display: flex; justify-content: space-between; align-items: center; width: 90%; margin: auto; }
.logo { font-family: 'Syncopate', sans-serif; font-weight: 700; letter-spacing: 5px; font-size: 1.2rem; }
.logo span { color: var(--accent); }
.nav-links { display: flex; list-style: none; }
.nav-links li { margin-left: 30px; }
.nav-links a { text-decoration: none; color: #fff; font-size: 0.7rem; text-transform: uppercase; font-weight: 600; letter-spacing: 2px; transition: 0.3s; opacity: 0.6; }
.nav-links a:hover { opacity: 1; color: var(--accent); }

/* Hero */
header { height: 100vh; position: relative; display: flex; align-items: center; justify-content: center; text-align: center; }
.hero-video-wrapper { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; }
#bg-video { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.4); }
header h1 { font-family: 'Syncopate', sans-serif; font-size: 4.5vw; text-transform: uppercase; letter-spacing: 15px; margin-bottom: 15px; }
header p { font-size: 1.2rem; font-weight: 300; letter-spacing: 4px; opacity: 0.8; }

.scroll-indicator { position: absolute; bottom: 30px; display: flex; flex-direction: column; align-items: center; color: #fff; text-decoration: none; opacity: 0.5; }
.mouse { width: 20px; height: 35px; border: 2px solid #fff; border-radius: 20px; margin-top: 10px; position: relative; }
.mouse::before { content: ""; position: absolute; top: 5px; left: 50%; width: 4px; height: 8px; background: #fff; border-radius: 2px; transform: translateX(-50%); animation: scroll 2s infinite; }
@keyframes scroll { 0% { opacity: 1; top: 5px; } 100% { opacity: 0; top: 20px; } }

/* Gallery */
section { padding: 100px 0; }
.section-title { font-family: 'Playfair Display', serif; font-size: 3rem; text-align: center; margin-bottom: 10px; }
.filter-hint { text-align: center; color: var(--accent); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 50px; }

.gallery-grid { column-count: 3; column-gap: 25px; }
.gallery-item { break-inside: avoid; margin-bottom: 25px; background: #161616; padding: 12px; border: 1px solid rgba(255,255,255,0.05); transition: 0.5s; cursor: pointer; }
.gallery-item img { width: 100%; height: auto; display: block; filter: grayscale(20%); transition: 0.8s cubic-bezier(0.2, 1, 0.3, 1); }
.gallery-item:hover { border-color: var(--accent); transform: translateY(-10px); }
.gallery-item:hover img { filter: grayscale(0%); transform: scale(1.03); }

/* About */
#o-autoru { background: #050505; }
.about-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: center; }
.subtitle { color: var(--accent); text-transform: uppercase; letter-spacing: 4px; font-size: 0.8rem; }
.about-info h2 { font-family: 'Playfair Display', serif; font-size: 3rem; margin: 20px 0; }
.bio-text p { margin-bottom: 20px; color: #ccc; }
.exp-badge { display: flex; align-items: center; gap: 20px; margin-top: 40px; }
.years { font-size: 3.5rem; font-family: 'Syncopate', sans-serif; color: var(--accent); font-weight: 700; }

.stat-card { background: var(--glass); padding: 40px; border: 1px solid rgba(255,255,255,0.05); margin-bottom: 20px; transition: 0.3s; }
.stat-card:hover { background: rgba(255,255,255,0.1); border-color: var(--accent); }
.stat-card h3 { color: var(--accent); font-size: 2.5rem; margin-bottom: 5px; }

/* Modal */
.modal { display: none; position: fixed; z-index: 2000; left: 0; top: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.95); backdrop-filter: blur(10px); align-items: center; justify-content: center; }
.modal-content { max-width: 90%; max-height: 85vh; object-fit: contain; box-shadow: 0 0 50px rgba(0,0,0,0.5); }
.close { position: absolute; top: 30px; right: 40px; color: #fff; font-size: 2rem; cursor: pointer; z-index: 2100; }
.modal-nav { position: absolute; top: 50%; transform: translateY(-50%); color: #fff; font-size: 3rem; padding: 20px; cursor: pointer; opacity: 0.3; transition: 0.3s; z-index: 2100; }
.modal-nav:hover { opacity: 1; color: var(--accent); }
.prev { left: 20px; }
.next { right: 20px; }

/* Reveal Animation */
.reveal-on-scroll { opacity: 0; transform: translateY(40px); transition: 1s ease-out; }
.reveal-on-scroll.active { opacity: 1; transform: translateY(0); }

/* Footer */
#kontakt { padding: 80px 0; border-top: 1px solid rgba(255,255,255,0.1); }
.footer-flex { display: flex; justify-content: space-between; align-items: flex-end; }
.footer-copy { font-size: 0.7rem; opacity: 0.5; }

@media (max-width: 1000px) { .gallery-grid { column-count: 2; } .about-grid { grid-template-columns: 1fr; gap: 50px; } header h1 { font-size: 8vw; } }
@media (max-width: 600px) { .gallery-grid { column-count: 1; } .nav-links { display: none; } * { cursor: auto; } .modal-nav { font-size: 2rem; } }