/* RESET & VARS */
:root {
    --bg-color: #0a0a0a;
    --text-white: #ffffff;
    --text-gray: #888888;
    --accent-teal: #00b4d8;
    --accent-blue: #0077b6;
    --accent-gradient: linear-gradient(90deg, var(--accent-teal), var(--accent-blue));
    --card-bg: rgba(255, 255, 255, 0.05);
    --font-heading: 'Epilogue', sans-serif;
    --font-body: 'Epilogue', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    /* Sakriva default kursor samo na desktopu */
    cursor: none; 
}

/* BITNO: Vraća normalan kursor za telefone (touch uređaje) */
@media (hover: none) and (pointer: coarse) {
    * {
        cursor: auto !important;
    }
}

html {
    overflow-x: hidden;
}

body {
    background-color: var(--bg-color);
    color: var(--text-white);
    font-family: var(--font-body);
    overflow-x: hidden;
    position: relative;
    font-weight: 500;
}

p {
    font-weight: 400;
}

h1,
h2,
h3,
h4 {
    font-weight: 700;
}


/* CUSTOM SELEKCIJA TEKSTA */
::selection {
    background-color: var(--accent-teal);
    color: var(--text-white);
}

/* CUSTOM CURSOR SA DIFFERENCE EFEKTOM */
.cursor {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: white;
    position: absolute;
    z-index: 9999;
    pointer-events: none;
    mix-blend-mode: difference;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
    display: none; /* Sakriven po defaultu */
}

/* Prikazi kursor samo ako uredjaj ima misa (Desktop) */
@media (pointer: fine) {
    .cursor {
        display: block;
    }
}

.cursor.cursor-grow {
    width: 60px;
    height: 60px;
}


/* Onemogućava skrolovanje pozadine dok je meni otvoren */
body.menu-open {
    overflow: hidden;
}

/* POZADINSKA ANIMACIJA */
body::after {
    content: '';
    position: fixed;
    bottom: 0;
    left: 50%;
    width: 200vw;
    height: 100vh;
    transform: translateX(-50%);
    background: radial-gradient(circle at 50% 100%, rgba(0, 180, 216, 0.1), transparent 40%);
    filter: blur(60px);
    z-index: -2;
    pointer-events: none;
    animation: pulse-glow 12s infinite alternate ease-in-out;
}

@keyframes pulse-glow {
    from {
        opacity: 0.8;
        transform: translateX(-50%) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) scale(1.05);
    }
}

/* POZADINSKA TEKSTURA */
.bg-texture {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    pointer-events: none;
}


/* NAVIGACIJA */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    position: sticky;
    top: 0;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
}

.nav-links {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-white);
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent-teal);
}

/* --- NOVI HAMBURGER MENI STILOVI --- */

/* Dugme */
.hamburger {
    display: none;
    padding: 15px;
    background-color: transparent;
    border: none;
    z-index: 1001;
    position: relative;
    cursor: pointer !important; /* Osigurava da se moze kliknuti */
}

.hamburger-box {
    width: 30px;
    height: 24px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -1px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 30px;
    height: 2px;
    background-color: var(--text-white);
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.22s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: "";
    display: block;
}

.hamburger-inner::before {
    top: -10px;
    transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}

.hamburger-inner::after {
    bottom: -10px;
    transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

/* Animacija u 'X' */
.hamburger[aria-expanded="true"] .hamburger-inner {
    transform: rotate(225deg);
    transition-delay: 0.12s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger[aria-expanded="true"] .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}

.hamburger[aria-expanded="true"] .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* Mobilni Meni Panel sa Glass efektom */
.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(75vw, 300px);
    height: 100%;
    background: rgba(7, 7, 7, 0.95); /* Malo tamnije za bolju citljivost */
    backdrop-filter: blur(15px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), visibility 0s 0.4s;
    z-index: 1000;
}

body.menu-open .mobile-nav {
    transform: translateX(0);
    visibility: visible;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.mobile-nav a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    padding: 10px 20px;
    transition: color 0.3s, transform 0.3s;
}

.mobile-nav a:hover {
    color: var(--accent-teal);
    transform: translateX(5px);
}

/* Prekrivka za pozadinu */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0s 0.4s;
    z-index: 999;
}

body.menu-open .overlay {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.4s;
}


/* GUMB STILOVI SA GLOW EFEKTOM */
.btn-primary {
    background: var(--accent-gradient);
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(0, 180, 216, 0.6);
    cursor: none; /* Da ne vrati obican kursor */
}

/* Vracanje kursora na hover samo za touch */
@media (hover: none) {
    .btn-primary:hover { cursor: auto; }
}

.btn-primary.big {
    padding: 15px 35px;
    font-size: 1.1rem;
}

.btn-primary.full-width {
    width: 100%;
    justify-content: center;
    padding: 15px;
}

.btn-primary i {
    background: white;
    color: var(--accent-blue);
    padding: 5px;
    border-radius: 50%;
    font-size: 10px;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-text {
    color: white;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: text-shadow 0.3s;
}

.btn-text:hover {
    text-shadow: 0 0 10px rgba(0, 180, 216, 0.7);
}

.btn-text i {
    color: var(--accent-teal);
}

/* SECTION PILLS */
.section-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dot {
    width: 8px;
    height: 8px;
    background: var(--accent-teal);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent-teal);
}

/* HERO SECTION */
.hero {
    text-align: center;
    padding: 80px 20px;
    position: relative;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.location-tag {
    background: #1a1a1a;
    padding: 8px 15px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    border: 1px solid #333;
    margin-bottom: 20px;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.highlight-scribble {
    position: relative;
    display: inline-block;
    color: var(--accent-teal);
    font-size: 5.5REM;
    font-family: 'Instrument Serif', serif;
    font-weight: 900;
    font-style: italic;
}

.hero-desc {
    font-size: 1.1rem;
    color: #aaa;
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-desc strong {
    color: white;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
}

/* SERVICES SEKCIJA */
.services {
    text-align: center;
    padding: 100px 50px;
    position: relative;
}

.services h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 60px;
    line-height: 1.1;
}

.services h2 em {
    font-family: 'Instrument Serif', serif;
    font-weight: 300;
    font-style: italic;
}

.services-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: #0f0f0f;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: left;
    position: relative;
    border: 1px solid #222;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s, background 0.3s;
    flex-basis: 33.33%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    border: 1px solid rgba(0, 180, 216, 0.3);
    background: radial-gradient(circle at top right, rgba(0, 180, 216, 0.1), #0f0f0f);
}

.service-card:hover .bottom-line {
    background: var(--accent-teal);
}

.bg-number {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: Epilogue;
    font-weight: 700;
    font-size: 6rem;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.05);
    z-index: 0;
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: #999;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    flex-grow: 1;
}

.bottom-line {
    height: 2px;
    background: #333;
    width: 100%;
    transition: background 0.3s;
}

.services-cta {
    margin-top: 60px;
}


/* ABOUT SECTION */
.about {
    padding: 100px 50px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.about-container {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-image-wrapper {
    flex-basis: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

#profile-pic {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid rgba(0, 180, 216, 0.3);
    ;
    box-shadow: 0 0 35px rgba(0, 180, 216, 0.3);
}

.social-icons-group {
    display: flex;
    gap: 15px;
}

.social-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    background: #111;
}

.social-circle i {
    color: var(--accent-teal);
    font-size: 1.5rem;
    transition: 0.3s;
}

.social-circle:hover {
    background: var(--accent-teal);
    transform: translateY(-3px);
    box-shadow: 0 0 15px rgba(0, 180, 216, 0.6);
}

.social-circle:hover i {
    color: white;
}


.about-text {
    flex: 1;
}

.about-text h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

/* FADE-IN TEXT ANIMATION */
#about-me-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #ccc;
    margin-bottom: 30px;
}

#about-me-text span {
    opacity: 0.1;
    filter: blur(4px);
    transition: opacity 0.4s ease, filter 0.4s ease;
}

#about-me-text span.is-visible {
    opacity: 1;
    filter: blur(0);
}


/* --- AŽURIRANA WORK SEKCIJA (OPTIMIZOVANO ZA TELEFON & DESKTOP) --- */
.work {
    padding: 50px 0;
    text-align: center;
    overflow: hidden;
    position: relative;
    /* Dodajemo minimalnu visinu da kontejner ne kolabira dok se ucitava */
    min-height: 600px; 
}

.filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 40px 0;
    flex-wrap: wrap;
    padding: 0 20px;
}

.filters span {
    color: var(--text-gray);
    font-weight: 900;
    font-size: 0.9rem;
    padding: 8px 18px;
    border-radius: 20px;
    border: 1px solid #333;
    background: transparent;
    transition: color 0.3s, background 0.3s, border-color 0.3s;
    cursor: pointer !important;
}

.filters span:hover {
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.05);
    border-color: #555;
}

.filters span.active {
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.work-scroller {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    /* Pan-y dozvoljava vertikalni scroll preko slajdera na telefonu */
    touch-action: pan-y;
    /* Transition opacity za glatku promenu filtera (Fade Effect) */
    transition: opacity 0.3s ease; 
}

/* Klasa koja se dodaje JS-om dok se slike menjaju */
.work-scroller.fade-out {
    opacity: 0;
}

.scroll-row {
    display: flex;
    gap: 20px;
    flex-shrink: 0;
    align-items: center;
    width: max-content; 
    /* HARDWARE ACCELERATION ZA TELEFONE */
    will-change: transform;
    backface-visibility: hidden;
    perspective: 1000px;
    transform: translate3d(0, 0, 0);
    /* Osigurava da red ima visinu cak i ako slike kasne sa ucitavanjem */
    min-height: 250px; 
}

/* Opciono: Pauziraj skrol kada se miš stavi preko */
.scroll-row:hover {
    animation-play-state: paused !important;
}

.scroll-row .work-item {
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    flex-shrink: 0;
    background: #111;
    transition: opacity 0.3s ease;
    /* Sprecava selektovanje na telefonu */
    user-select: none;
    -webkit-user-drag: none;
}

.scroll-row .work-item:hover {
    opacity: 0.8;
}

.scroll-row .work-item img,
.scroll-row .work-item iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
    /* Sprecava da se slika "izvuce" na telefonu kad skrolujes */
    pointer-events: none; 
    -webkit-user-drag: none;
}

/* Dozvoli klik samo na video linkove */
.work-item.video-item {
    pointer-events: auto !important;
}

.work-scroller.category-thumbnails .work-item,
.work-scroller.category-videos .work-item {
    width: 444px;
}

.work-scroller.category-logos .work-item,
.work-scroller.category-cover-art .work-item {
    width: 250px;
}

.work-scroller.category-matchday .work-item {
    height: 500px;
    width: 282px;
}

/* Podesene animacije za beskonacni skrol */
#scroll-row-1 {
    animation: scroll-left 60s linear infinite;
}

#scroll-row-2 {
    animation: scroll-right 60s linear infinite;
}

/* KORISTIMO TRANSLATE3D ZA GPU UBRZANJE NA TELEFONIMA */
@keyframes scroll-left {
    from {
        transform: translate3d(0, 0, 0);
    }
    to {
        transform: translate3d(-50%, 0, 0);
    }
}

@keyframes scroll-right {
    from {
        transform: translate3d(-50%, 0, 0);
    }
    to {
        transform: translate3d(0, 0, 0);
    }
}


/* FAQ SECTION */
.faq {
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    position: relative;
}

.faq-container {
    background: #f5f5f5;
    color: #111;
    width: 100%;
    max-width: 1000px;
    border-radius: 30px;
    padding: 60px;
}

.section-pill.dark {
    background: #ddd;
    color: #333;
    border-color: #ccc;
}

.dot.dark-dot {
    background: #005f73;
    box-shadow: none;
}

.faq h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 50px;
    text-align: center;
}

.faq h2 em {
    font-family: 'Instrument Serif', serif;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item {
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #fff;
    overflow: hidden;
}

.accordion-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 1.1rem;
    background: #f9f9f9;
    transition: background 0.3s;
    cursor: pointer !important;
}

.accordion-header:hover {
    background: #eaeaea;
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 20px;
    background: #fff;
    color: #555;
}

.accordion-body.open {
    max-height: 200px;
    padding: 20px;
    border-top: 1px solid #eee;
}

/* CONTACT SEKCIJA */
.contact {
    padding: 100px 50px;
    position: relative;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    background: #111;
    border: 1px solid #222;
    border-radius: 20px;
    display: flex;
    overflow: hidden;
}

.contact-info {
    flex-basis: 40%;
    padding: 50px;
    border-right: 1px solid #222;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.contact-info p {
    color: var(--text-gray);
    margin-bottom: 30px;
}

.info-block {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.info-icon {
    font-size: 1.5rem;
    color: var(--accent-teal);
}

.info-block h4 {
    margin: 0;
    font-size: 1rem;
}

.info-block span {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.contact-form {
    flex-basis: 60%;
    padding: 50px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    background: #1a1a1a;
    border: 1px solid #333;
    color: var(--text-white);
    padding: 15px;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-teal);
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    cursor: pointer !important;
}

/* FOOTER */
footer {
    padding: 50px;
    background: #111;
    border-top: 1px solid #222;
    color: var(--text-gray);
    font-size: 0.9rem;
    position: relative;
}

.footer-main {
    max-width: 1200px;
    margin: 0 auto 40px auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col:first-child {
    flex-grow: 2;
}

.footer-col h4 {
    color: var(--text-white);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--accent-teal);
}

.footer-col p {
    margin: 0;
}

.footer-col:last-child {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-col p a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.social-circle-footer {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1f1f1f;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
}

.social-circle-footer:hover {
    background-color: var(--accent-teal);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(0, 180, 216, 0.6);
}

.creator-credit {
    font-size: 0.8rem;
    color: #555;
    width: 100%;
    text-align: center;
    margin-top: 15px;
}

.creator-credit a {
    text-decoration: none;
    font-weight: bold;
    color: var(--accent-blue);
    transition: color 0.3s;
}

.creator-credit a:hover {
    color: var(--accent-teal);
}

.work-item.video-item {
    position: relative; 
    display: block;
}

.video-item .play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.9; 
    transition: opacity 0.3s ease;
    border-radius: 15px; 
}

.video-item:hover .play-overlay {
    opacity: 1;
}

.play-overlay i {
    font-size: 48px;
    color: white;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.video-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* --- RESPONZIVNI DIZAJN --- */
@media (max-width: 992px) {

    .nav-links,
    .desktop-contact-btn {
        display: none;
    }

    .hamburger {
        display: inline-block;
    }
}

@media (max-width: 768px) {

    /* Na mobilnom vracamo sistemski kursor jer touch nema 'hover' */
    * {
        cursor: auto !important;
    }

    /* Kursor element sakrivamo u JS-u ali i ovde za svaki slucaj */
    .cursor {
        display: none !important;
    }

    .services,
    .about,
    .contact,
    footer {
        padding: 80px 20px;
    }
    .highlight-scribble {
        font-size: 3.2REM;
    }
    nav {
        padding: 15px 20px;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero h1 br {
        display: none;
    }

    .hero-desc {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .services h2 {
        font-size: 2.5rem;
    }

    .services-grid {
        flex-direction: column;
        gap: 50px;
    }

    .service-card:hover {
        transform: translateY(0);
    }


    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-text h2 {
        font-size: 2.2rem;
    }

    #profile-pic {
        width: 250px;
        height: 250px;
    }

    /* Work */
    .filters {
        justify-content: center;
        row-gap: 10px;
        column-gap: 10px;
    }

    .filters span {
        font-size: 0.8rem;
        padding: 6px 14px;
    }
    
    /* FIX ZA BAGOVANJE NA MOBILNOM */
    .work { min-height: 450px; } /* Manja min-visina za mobilni ali dovoljna za 2 reda */
    
    #scroll-row-1, #scroll-row-2 {
        animation-duration: 40s; /* Malo brze da ne deluje "sticky" */
    }

    /* Fiksna visina reda da ne skace */
    .scroll-row { min-height: 170px; }
    .scroll-row .work-item { height: 170px; }

    .work-scroller.category-thumbnails .work-item,
    .work-scroller.category-videos .work-item {
        width: 302px;
    }

    .work-scroller.category-logos .work-item,
    .work-scroller.category-cover-art .work-item {
        width: 170px;
    }

    /* Matchday mora biti visok */
    .work-scroller.category-matchday .work-item { height: 340px; width: 192px; }
    .work-scroller.category-matchday .scroll-row { min-height: 340px; }

    .faq-container {
        padding: 40px 20px;
    }

    .faq h2 {
        font-size: 2.5rem;
    }

    .contact-container {
        flex-direction: column;
    }

    .contact-info,
    .contact-form {
        padding: 30px;
    }

    .contact-info {
        border-right: none;
    }

    .contact-info h2 {
        font-size: 2.2rem;
    }

    .footer-main {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        justify-content: center;
        gap: 20px;
    }

    .footer-col:last-child {
        align-items: center;
    }
}