
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html.lenis, html.lenis body {
            height: auto;
        }

        a{
            text-decoration: none;
            color: inherit;
        }

        .lenis.lenis-smooth {
            scroll-behavior: auto !important;
        }

        .lenis.lenis-smooth [data-lenis-prevent] {
            overscroll-behavior: contain;
        }

        .lenis.lenis-stopped {
            overflow: hidden;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background: #0a0a0a;
            color: #ffffff;
            overflow-x: hidden;
        }

    .preloader{
        display: flex;
        flex-direction: column;
    }


      /* Preloader - Creative Circular Iris Wipe */
        .preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #000;
            display: flex;
            align-items: center;
            justify-content: center;
               clip-path: circle(150% at 50% 50%); /* Početno stanje - potpuno vidljiv */
            z-index: 10000;
        }

        .preloader-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            z-index: 3;
            transition: opacity 0.4s ease, transform 0.6s cubic-bezier(0.68, -0.6, 0.32, 1.0);
        }

        .preloader.hiding .preloader-content {
            opacity: 0;
            transform: scale(0.5) rotate(10deg);
        }

        .preloader-gif {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            overflow: hidden;
            position: relative;
            animation: pulse-glow 1.4s ease-in-out infinite;
        }

        .preloader-gif::before {
            content: '';
            position: absolute;
            top: -3px;
            left: -3px;
            right: -3px;
            bottom: -3px;
            border-radius: 50%;
            border: 2px solid transparent;
            border-top-color: #3B444B;
            border-bottom-color: #3B444B;
            animation: spin-border 1.5s linear infinite;
        }

        .preloader-gif video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }

        @keyframes pulse-glow {
            0%, 100% { 
                transform: scale(1);
                box-shadow: 0 0 30px rgba(59, 68, 75, 0.3);
            }
            50% { 
                transform: scale(1.03);
                box-shadow: 0 0 50px rgba(59, 68, 75, 0.5);
            }
        }

        @keyframes spin-border {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .preloader-subtitle {
            margin-top: 2rem;
            /* font-family: 'Bebas Neue', sans-serif; */
            font-size: 1rem;
            letter-spacing: 8px;
            color: #3B444B;
            height: 2.5rem;
            overflow: hidden;
        }

        .preloader-subtitle .letter {
            display: inline-block;
            opacity: 0;
            transform: translateY(20px);
            transition: none;
        }

        .preloader-subtitle .letter.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .preloader-subtitle .letter.dot {
            color: #3B444B;
        }

      .preloader-cursor {
    display: inline-block;
    width: 2px;
    height: 1.5rem;
    background: #3B444B;
    margin-left: 2px;
    animation: blink-cursor 0.6s ease-in-out infinite;
    vertical-align: middle;
    position: relative;
}

        @keyframes blink-cursor {
            0%, 100% { opacity: 1; }
            50% { opacity: 0; }
        }

        /* Iris Wipe Layers */
        .iris-wipe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 2;
        }

        .iris-wipe svg {
            width: 100%;
            height: 100%;
        }

        /* Particle effects during transition */
        .iris-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 4;
            overflow: hidden;
        }

        .iris-particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: #3B444B;
            border-radius: 50%;
            opacity: 0;
        }

        /* Multiple iris rings */
        .iris-ring {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            border: 2px solid rgba(59, 68, 75, 0.3);
            border-radius: 50%;
            width: 0;
            height: 0;
            z-index: 1;
        }

        /* After iris animation completes */
        .preloader.hidden {
            visibility: hidden;
            pointer-events: none;
        }



        /* About Section - Responsive */



        .preloader-gif video {
            width: 100%;
            height: 100%;
            opacity: 0.4;
            object-fit: cover;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.1); opacity: 0.8; }
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 2rem 4rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            background: linear-gradient(180deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
        }

        .logo {
            font-family: 'Montserrat', sans-serif;
            /* font-size: 2rem; */
            font-weight: 400;
            letter-spacing: 3px;
            color: #fff;
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }

        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #3B444B;
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

    /* ============================================
   HERO SPLIT - MOBILE OPTIMIZED
   ============================================ */

.hero-split {
    position: relative;
    min-height: 100vh;
    background: #0a0a0a;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-container {
    max-width: 1400px;
    width: 100%;
   
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 45% 55%;
    /* gap: 4rem; */
    align-items: center;
    position: relative;
    z-index: 1;
}

/* ========== LEFT SIDE - CONTENT ========== */
.split-left {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.split-content {
    max-width: 600px;
}

/* Hero Label */
.hero-label-wrap {
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.5s;
}

.hero-label {
    display: inline-block;
    font-size: 0.7rem;
    width: max-content;
    letter-spacing: 4px;
    color: #fff;
    padding: 0.7rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    text-transform: uppercase;
    background: rgba(59, 68, 75, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

/* Split Title Stack */
.split-title {
    /*font-family: 'Bebas Neue', sans-serif;*/
    margin-bottom: 2rem;
}

.title-stack {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.title-line {
    display: block;
    font-size: clamp(3rem, 7vw, 7rem);
    /*letter-spacing: 8px;*/
    line-height: 0.85;
}

.title-line.main {
    color: #fff;
    width: 180%;
}

.title-line.sub {
    color: #3B444B;
    margin-left: 2rem;
    width: 180%;
    font-size: clamp(2.5rem, 6vw, 6rem);
}

@media (max-width: 768px) {
    .title-line.main {
        width: 100%;
        font-size: 4rem;
    }
    .title-line.sub {
    width: 100%;
    font-size: 3.1rem !important;
  
}
}



/* Hero Description */
.hero-description {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
    max-width: 500px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 1s;
}

/* Hero CTA Button */
.hero-cta-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #3B444B;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 2px;
    border-radius: 50px;
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(59, 68, 75, 0.3);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 1.2s;
    position: relative;
    overflow: hidden;
}

.hero-cta-btn:hover {
    background: #4a5562;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(59, 68, 75, 0.5);
}

/* Side Text */
.side-text {
    position: absolute;
    right: -1rem;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    font-size: 0.65rem;
    letter-spacing: 6px;
    color: rgba(59, 68, 75, 0.5);
    white-space: nowrap;
    text-transform: uppercase;
    font-weight: 600;
}

/* ========== RIGHT SIDE - MEDIA ========== */
.split-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.media-wrapper {
    position: relative;
    width: 100%;
    height: 75vh;
    max-height: 700px;
    opacity: 0;
    transform: scale(0.9);
    animation: scaleIn 1s ease forwards;
    animation-delay: 0.3s;
}

/* Main Video Container */
.media-main {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    /*box-shadow: */
    /*    0 20px 60px rgba(0, 0, 0, 0.4),*/
    /*    0 0 0 1px rgba(255, 255, 255, 0.05);*/
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Video Play Overlay */
.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    /*background: rgba(0, 0, 0, 0.3);*/
    /*backdrop-filter: blur(5px);*/
    z-index: 10;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.video-play-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Play Button */
.video-play-btn {
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    padding: 0;
    outline: none;
}

.play-btn-circle {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    opacity: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.play-icon {
    width: 32px;
    height: 32px;
    color: #fff;
    transition: transform 0.3s ease;
}

.play-btn-text {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
}

.video-play-btn:hover .play-btn-circle {
    background: rgba(59, 68, 75, 0.9);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

/* Pulse Animation */
/* .play-btn-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    animation: pulse 2s ease-out infinite;
    z-index: 1;
} */

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.8);
        opacity: 0;
    }
}

/* Film Grain & Gradient */
.film-grain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.12;
    mix-blend-mode: overlay;
    pointer-events: none;
    z-index: 2;
}

.media-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(10, 10, 10, 0.1) 0%,
        transparent 50%,
        rgba(59, 68, 75, 0.1) 100%
    );
    pointer-events: none;
    z-index: 1;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    animation: fadeIn 1s ease forwards;
    animation-delay: 2s;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s ease-out infinite;
}

@keyframes scroll {
    0% {
        top: 8px;
        opacity: 1;
    }
    100% {
        top: 24px;
        opacity: 0;
    }
}

.scroll-indicator span {
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
}

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ============================================
   RESPONSIVE - MOBILE FIRST 📱
   ============================================ */

/* Tablets */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 1.5rem;
    }
    
    .split-left {
        order: 1; /* Tekst prvi */
        text-align: center;
    }
    
    .split-content {
        margin: 0 auto;
    }
    
    .split-right {
        order: 2; /* Video drugi */
        padding-top: 0;
    }
    
    .title-line.sub {
        margin-left: 0;
    }
    
    .hero-description {
        margin: 0 auto 2rem;
    }
    
    .media-wrapper {
        height: 55vh;
        max-height: 500px;
    }
    
    .side-text {
        display: none;
    }
}

/* Mobile - TEKST GORE, VIDEO DOLJE */
@media (max-width: 768px) {
    .hero-split {
        min-height: 100vh;
        padding: 0;
        display: block;
    }
    
    .hero-container {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 0;
        min-height: 100vh;
        justify-content: center;
    }
    
    /* CONTENT FIRST - Tekst Gore */
    .split-left {
        width: 100%;
        padding: 7rem 1.5rem 2rem; /* Više padding-top zbog nav-a */
        order: 1; /* 🔥 PRVO - TEKST */
        text-align: center;
    }
    
    .split-content {
        width: 100%;
    }
    
    /* VIDEO SECOND - Video Dolje */
    .split-right {
        width: 100%;
        padding: 0 0 2rem;
        order: 2; /* 🔥 DRUGO - VIDEO */
    }
    
    .media-wrapper {
        width: 100%;
        height: 80vh;
        max-height: none;
    }
    
    .media-main {
        border-radius: 0;
    }
    
    /* Label */
    .hero-label-wrap {
        margin-bottom: 1.5rem;
    }
    
    .hero-label {
        font-size: 0.6rem;
        letter-spacing: 3px;
        padding: 0.6rem 1.5rem;
    }
    
    /* Title - Veći i čitljiviji */
    .title-line {
        font-size: 2.8rem;
        letter-spacing: 4px;
        line-height: 0.9;
    }
    
    .title-line.sub {
        font-size: 2.2rem;
        letter-spacing: 3px;
        margin-left: 0;
        margin-top: 0.3rem;
    }
    
    .split-title {
        margin-bottom: 1.5rem;
    }
    
    /* Description - sakrij */
    .hero-description {
        display: none;
    }
    
    /* CTA Button */
    .hero-cta-btn {
        padding: 1rem 2.5rem;
        font-size: 0.85rem;
        margin-top: 1rem;
        margin-bottom: 2rem; /* Space prije videa */
    }
    
    /* Play Button */
    .play-btn-circle {
        width: 90px;
        height: 90px;
        opacity: 1;
    }
    
    .play-icon {
        width: 28px;
        height: 28px;
    }
    
    .play-btn-text {
        font-size: 0.7rem;
        letter-spacing: 1.5px;
    }
    
    .play-btn-pulse {
        width: 90px;
        height: 90px;
    }
    
    /* Scroll Indicator */
    .scroll-indicator {
        display: none;
    }
}

/* Small Mobile - Extra Optimizacija */
@media (max-width: 480px) {
    .hero-split {
        min-height: 100svh; /* Safe viewport height za iOS */
    }
    
    .hero-container {
        min-height: 100svh;
    }
    
    /* Content */
    .split-left {
        padding: 7rem 0 1.5rem;
    }
    
    .hero-label {
        font-size: 0.55rem;
        letter-spacing: 2.5px;
        padding: 0.55rem 1.3rem;
    }
    
    /* Title - kompaktniji */
    .title-line {
        font-size: 2.4rem;
        letter-spacing: 3px;
    }
    
    .title-line.sub {
        font-size: 1.9rem;
        letter-spacing: 2px;
    }
    
    /* CTA */
    .hero-cta-btn {
        padding: 0.9rem 2rem;
        font-size: 0.8rem;
        letter-spacing: 1.5px;
        margin-bottom: 1.5rem;
    }
    
    /* Video */
    .split-right {
        padding: 0 0 1.5rem;
    }
    
    .media-wrapper {
        height: 75vh;
    }
    
    .media-main {
        border-radius: 0;
    }
    
    /* Play Button - manji */
    .play-btn-circle {
        width: 75px;
        height: 75px;
    opacity: 1;
    }
    
    .play-icon {
        width: 24px;
        height: 24px;
    }
    
    .play-btn-text {
        font-size: 0.65rem;
    }
    
    .play-btn-pulse {
        width: 75px;
        height: 75px;
    }
}

/* Landscape Mobile */
@media (max-width: 896px) and (orientation: landscape) {
    .hero-split {
        min-height: auto;
        padding: 2rem 0;
    }
    
    .hero-container {
        min-height: auto;
        flex-direction: row;
        gap: 2rem;
    }
    
    .split-left {
        width: 50%;
        order: 1;
        padding: 2rem 1.5rem;
    }
    
    .split-right {
        width: 50%;
        order: 2;
        padding: 2rem 1rem;
    }
    
    .media-wrapper {
        height: 80vh;
    }
    
    .title-line {
        font-size: 2rem;
    }
    
    .title-line.sub {
        font-size: 1.6rem;
    }
}

/* iPhone SE i mali ekrani */
@media (max-width: 375px) {
    .split-left {
        padding: 6.5rem 0 1.5rem;
    }
    
    .title-line {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }
    
    .title-line.sub {
        font-size: 1.7rem;
        letter-spacing: 1.5px;
    }
    
    .hero-cta-btn {
        padding: 0.85rem 1.8rem;
        font-size: 0.75rem;
    }
    
    .media-wrapper {
        height: 72vh;
    }
    
     .play-btn-circle {
       
    opacity: 1;
    }
}


 /* Video Showcase Section */
.video-showcase {
    padding: 8rem 0;
    background: #0a0a0a;
}

.video-showcase-wrapper {
    /* max-width: 1600px; */
    margin: 0 auto;
   
}

.video-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 80vh;
    min-height: 600px;
}

.showcase-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Film Grain Effect */
.film-grain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    opacity: 0.20;
    mix-blend-mode: overlay;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.5) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.video-content {
    text-align: center;
    padding: 2rem;
}

.video-label {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(59, 68, 75, 0.3);
    border: 1px solid rgba(59, 68, 75, 0.5);
    border-radius: 30px;
    font-size: 0.75rem;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}


/* .video-title span {
    color: #3B444B;
} */

.video-desc {
    font-size: 1.2rem;
    letter-spacing: 2px;
    opacity: 0.8;
    margin-bottom: 2.5rem;
}

.video-cta {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #3B444B;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 2px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(59, 68, 75, 0.4);
}

.video-cta:hover {
    background: #4a5562;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(59, 68, 75, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
    .video-showcase {
        padding: 4rem 0;
    }
    
   
    
    .video-container {
        height: 60vh;
        min-height: 400px;
    }
    
    .video-title {
        font-size: 2.5rem;
    }
}


/* Dodaj u main.css */
.page-transition-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 9999;
  pointer-events: none;
  clip-path: circle(0% at 50% 50%);
}

.transition-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: #3B444B;
  border-radius: 50%;
  opacity: 0.3;
}

.transition-particles {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #3B444B;
  border-radius: 50%;
  top: 0;
  left: 0;
}


/* Mobile - FIKSNO 2 KATEGORIJE PO REDU */
@media (max-width: 768px) {
    .grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .category-card {
        height: 200px;
        border-radius: 12px;
    }
    
   
    .category-info h3 {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }
    
    .category-info p {
        font-size: 0.75rem;
        display: none;
    }
}

@media (max-width: 480px) {
    .grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.8rem;
        padding: 0 0.8rem;
    }
    
    .category-card {
        height: 180px;
        border-radius: 10px;
    }
    
    .category-info h3 {
        font-size: 1rem;
        letter-spacing: 1.5px;
    }
    
    .category-info p {
        font-size: 0.7rem;
        display:none;
    }
}


/* Mobile - FIKSNO 2 KATEGORIJE PO REDU */
@media (max-width: 768px) {
    .grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .category-card {
        /*height: 200px;*/
        border-radius: 12px;
    }
    
   
    
    .category-info h3 {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }
    
    .category-info p {
        font-size: 0.75rem;
        display: none;
    }
}

@media (max-width: 480px) {
    .grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.8rem;
        padding: 0 0.8rem;
    }
    
    .category-card {
        /*height: 180px;*/
        border-radius: 10px;
        margin-bottom:3rem;
    }
    
    .category-info h3 {
        font-size: 1rem;
        letter-spacing: 1.5px;
    }
    
    .category-info p {
        font-size: 0.7rem;
        display:none;
    }
}


/* Hero Paragraph Animation - NEVIDLJIV na početku */
.hero-animated-paragraph {
    opacity: 0; /* POTPUNO NEVIDLJIV */
}

.hero-animated-paragraph .letter {
    display: inline-block;
    opacity: 0;
}

.hero-animated-paragraph.word-animated {
    opacity: 1;
}

.hero-animated-paragraph .word {
    display: inline-block;
    position: relative;
    white-space: nowrap;
    margin-right: 0.3em;
}

.hero-animated-paragraph .word::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: rgba(59, 68, 75, 0.4);
    transition: width 0.4s ease;
}

.hero-animated-paragraph .word:hover::after {
    width: 100%;
}

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(59, 68, 75, 0.5) 0%, rgba(10, 10, 10, 0.7) 100%);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            padding: 2rem;
        }

        .hero-content h1 {
            font-family: 'Montserrat', sans-serif;
            font-size: clamp(3rem, 8vw, 7rem);
            font-weight: 400;
            letter-spacing: 6px;
            margin-bottom: 1rem;
            color: #ffffff;
         
        }

        /* Flicker letter animation */
        .hero-content h1 .letter {
            display: inline-block;
            opacity: 0;
        }

        .hero-content p {
            font-size: clamp(1.2rem, 2vw, 1.8rem);
            font-weight: 300;
            letter-spacing: 2px;
            margin-bottom: 2rem;
            opacity: 0;
        }
.about-image video{
    border-radius: 20px;
}
        .cta-button {
            display: inline-block;
            padding: 1rem 3rem;
            background: #3B444B;
            color: #fff;
            text-decoration: none;
            font-weight: 600;
            letter-spacing: 2px;
            border-radius: 50px;
            transition: all 0.3s ease;
        
            opacity: 0;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            background: #4a5562;
            box-shadow: 0 15px 40px rgba(59, 68, 75, 0.6);
        }
    

        

        /* About Section */
        .about {
           
            background: linear-gradient(180deg, #0a0a0a 0%, #111118 50%, #0a0a0a 100%);
            position: relative;
            overflow: hidden;
        }

      

        .about-container {
            max-width: 1400px;
            margin: 0 auto;
           
            gap: 6rem;
            align-items: center;
        }

      /* About Section - Offset Layout Style */
.about {
    
    background: linear-gradient(180deg, #0a0a0a 0%, #0d0d12 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}


.about::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(59, 68, 75, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-bg 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulse-bg {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
    position: relative;
    z-index: 1;
}

/* Title Section - Offset Left */
.about-title-wrap {
    /* margin-left: 10%; */
    /*max-width: 935px;*/
    /* width: 60%; */
    margin-bottom: 8rem;
}

.section-label {
    font-size: 0.85rem;
    letter-spacing: 5px;
    color: white;
    margin-bottom: 2rem;
    text-transform: uppercase;
    display: inline-block;
    padding: 0.5rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards 0.2s;
}

/* Animated Title */
.about-animated-title {
    /*font-family: 'Bebas Neue', sans-serif;*/
    font-size: clamp(3rem, 5.5vw, 6rem);
    /*letter-spacing: 8px;*/
    line-height: 1.2;
    position: relative;
}

.title-word {
    display: inline-block;
    margin: 0 0.2em;
    opacity: 0;
    transform: translateY(50px);
    will-change: transform, opacity;
}

.title-word.highlight {
    color: #3B444B;
}

.title-word.animated {
    animation: wordFadeIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes wordFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Text Section - Offset Right */
.about-text-wrap {
    /* margin-left: 42%; */
  
    /* margin-bottom: 10rem; */
}

.animated-paragraph {
   font-size: clamp(2rem, 2vw, 4rem);
    /* letter-spacing: 8px; */
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 3rem;
    color: #fff;
    transform: translateY(30px);
}



.word {
    display: inline-block;
    margin-right: 0.3em;
    opacity: 0;
    transform: translateY(20px);
    will-change: opacity, transform;
}

.word.visible {
    animation: wordReveal 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes wordReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stats Section - Full Width */
.about-stats-wrap {
    width: 100%;
    padding: 4rem 0;
    border-top: 1px solid rgba(59, 68, 75, 0.2);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    position: relative;
    padding: 2rem 1rem;
    opacity: 0;
    transform: translateY(30px);
    transition: transform 0.3s ease;
}

.stat-item.visible {
    animation: fadeInUp 0.8s ease forwards;
}

.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(2) { animation-delay: 0.2s; }
.stat-item:nth-child(3) { animation-delay: 0.3s; }
.stat-item:nth-child(4) { animation-delay: 0.4s; }

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #3B444B;
    transition: width 0.5s ease;
}

.stat-item.visible::before {
    width: 60px;
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    color: #3B444B;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.85rem;
    letter-spacing: 3px;
    opacity: 0.7;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tablet - do 1024px */
@media (max-width: 1024px) {
    .about {
        padding: 150px 0;
    }
    
    .about-container {
        padding: 0 3rem;
    }
    
    .about-title-wrap {
        margin-left: 5%;
        width: 70%;
        margin-bottom: 6rem;
    }
    
    .about-animated-title {
        font-size: 4rem;
        letter-spacing: 6px;
    }
    
    .about-text-wrap {
        margin-left: 35%;
        max-width: 65%;
        margin-bottom: 8rem;
    }
    
    .animated-paragraph {
        font-size: 1rem;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 3.5rem;
    }
}

/* Mobile - do 768px */
@media (max-width: 768px) {
    .about {
        padding: 100px 0;
    }
    
    .about-container {
        padding: 0 2rem;
    }
    
    .about-title-wrap {
        margin-left: 0;
        width: 100%;
        margin-bottom: 4rem;
        text-align: center;
    }
    
    .about-animated-title {
        font-size: 3rem;
        letter-spacing: 4px;
    }
    
    .title-word {
        margin: 0 0.15em;
    }
    
    .about-text-wrap {
        margin-left: 0;
        max-width: 100%;
        margin-bottom: 6rem;
    }
    
    .animated-paragraph {
        font-size: 1rem;
        line-height: 1.8;
        text-align: left;
    }
    
    .about-stats-wrap {
        padding: 3rem 0;
    }
    
    .about-stats {
        gap: 2rem;
    }
    
    .stat-item {
        padding: 1.5rem 0.5rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }
}

/* Small Mobile - do 480px */
@media (max-width: 480px) {
    .about {
        padding: 80px 0;
    }
    
    .about-container {
        padding: 0 1.5rem;
    }
    
    .section-label {
        font-size: 0.75rem;
        letter-spacing: 3px;
        padding: 0.4rem 1.5rem;
    }
    
    .about-title-wrap {
        margin-bottom: 3rem;
    }
    
    .about-animated-title {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }
    
    .about-text-wrap {
        margin-bottom: 5rem;
    }
    
    .animated-paragraph {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
}

/* Letter Animation - Flicker Effect */
.letter {
    display: inline-block;
    opacity: 0;
    will-change: opacity;
}

/* Word Animation */
.word {
    position: relative;
    display: inline-block;
    opacity: 1;
    will-change: opacity;
}

/* Animated Paragraph */
.animated-paragraph {
    opacity: 1 !important;
    transform: translateY(0) !important;
    position: relative;
}

.animated-paragraph.flickered {
    min-height: 0;
}

.animated-paragraph.word-animated .word {
    will-change: auto;
}

/* Title Word Animation */
.title-word {
    display: inline-block;
    margin: 0 0.2em;
    opacity: 1;
}

/* Stat Item Visibility */
.stat-item.visible::before {
    width: 60px;
}


     /* ============================================
   CATEGORIES SECTION - INFO BELOW CARDS
   ============================================ */

.categories {
    padding: 8rem 4rem;
   
}

.section-title {
    /*font-family: 'Bebas Neue', sans-serif;*/
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-align: center;
    margin-bottom: 6rem;
    /*letter-spacing: 4px;*/
    color: #3B444B;
}

/* Grid Layout - 3 kolone */
.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Category Card Wrapper */
.category-card {
    position: relative;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    transform: translateY(50px);
}

.category-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Image Container */
.category-image-wrapper {
    position: relative;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    background: #111;
    margin-bottom: 1.5rem;
    transition: all 0.5s ease;
}

.category-card:hover .category-image-wrapper {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(59, 68, 75, 0.4);
}

/* Video */
.category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.category-card:hover .category-image {
    transform: scale(1.08);
}





/* Info Section - BELOW CARD */
.category-info {
    padding: 0 0.5rem;
    text-align: left;
    transition: all 0.3s ease;
}

.category-info h3 {
    /*font-family: 'Bebas Neue', sans-serif;*/
    font-size: 1.8rem;
    margin-bottom: 0.6rem;
    /*letter-spacing: 3px;*/
    color: #fff;
    transition: color 0.3s ease;
    line-height: 1.2;
}

.category-info p {
    font-size: 0.95rem;
    opacity: 0.6;
    line-height: 1.6;
    color: #fff;
    transition: all 0.3s ease;
}

/* Hover Effects */
.category-card:hover .category-info h3 {
    color: #3B444B;
}

.category-card:hover .category-info p {
    opacity: 0.9;
}



/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* Large Desktop */
@media (min-width: 1600px) {
    .grid {
        max-width: 1600px;
        gap: 3.5rem;
    }
    
    .category-image-wrapper {
        height: 500px;
    }
}

/* Desktop - 2 kolone */
@media (max-width: 1200px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .categories {
        padding: 6rem 3rem;
    }
    
    .section-title {
        margin-bottom: 4rem;
    }
    
    .grid {
        gap: 2.5rem;
    }
    
    .category-image-wrapper {
        height: 400px;
        margin-bottom: 1.3rem;
    }
    
    .category-info h3 {
        font-size: 1.6rem;
        letter-spacing: 2px;
    }
    
    .category-info p {
        font-size: 0.9rem;
    }
}

/* Mobile - 1 kolona */
@media (max-width: 768px) {
    .categories {
        padding: 5rem 1.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
        letter-spacing: 3px;
        margin-bottom: 3rem;
    }
    
    .grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .category-image-wrapper {
        height: 200px;
        margin-bottom: 1.2rem;
    }
    
    .category-info {
        padding: 0;
    }
    
    .category-info h3 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .category-info p {
        font-size: 0.9rem;
    }
    
    /* Disable hover effects on mobile */
    .category-card:hover .category-image-wrapper {
        transform: translateY(0);
    }
    
  
}

/* Small Mobile */
@media (max-width: 480px) {
    .categories {
        padding: 4rem 1rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }
    
    .grid {
        gap: 2.5rem;
    }
    
    .category-image-wrapper {
        height: 200px;
        border-radius: 16px;
        margin-bottom: 1rem;
    }
    
    .category-info h3 {
        font-size: 1.3rem;
        letter-spacing: 2px;
        margin-bottom: 0.4rem;
    }
    
    .category-info p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
}

/* Extra Small */
@media (max-width: 375px) {
    .category-image-wrapper {
        height: 200px;
    }
    
    .category-info h3 {
        font-size: 1.2rem;
    }
    
    .category-info p {
        font-size: 0.8rem;
    }
}

/* Landscape Mobile */
@media (max-width: 896px) and (orientation: landscape) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .category-image-wrapper {
        height: 300px;
    }
}



/* ============================================
   NEWS SECTION
   ============================================ */

.news-section {
    padding: 10rem 4rem;
    background: linear-gradient(180deg, #0a0a0a 0%, #0d0d12 50%, #0a0a0a 100%);
    /* position: relative; */
    overflow: hidden;
}

.news-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #3B444B, transparent);
}

.news-container {
    max-width: 1400px;
    margin: 0 auto;
}

.news-header {
    text-align: center;
    margin-bottom: 5rem;
}

.news-title {
    /*font-family: 'Bebas Neue', sans-serif;*/
    font-size: clamp(3rem, 6vw, 5rem);
    /*letter-spacing: 8px;*/
    margin-bottom: 1.5rem;
    color: #3B444B;
    position: relative;
    display: inline-block;
}

.news-title .letter {
    display: inline-block;
    opacity: 0;
}

.news-subtitle {
    font-size: 1.2rem;
    opacity: 0.7;
    letter-spacing: 2px;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
}

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.news-card {
    /* background: rgba(59, 68, 75, 0.05); */
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    transform: translateY(100px) scale(0.9);
    /* border: 1px solid rgba(59, 68, 75, 0.1); */
}

.news-card.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* .news-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 80px rgba(59, 68, 75, 0.3);
    border-color: rgba(59, 68, 75, 0.3);
} */

/* News Image */
.news-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: grayscale(30%);
}

.news-card:hover .news-image video {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.news-date {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(59, 68, 75, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.8rem 1rem;
    border-radius: 10px;
    text-align: center;
    z-index: 2;
}

.date-day {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    line-height: 1;
    color: #fff;
}

.date-month {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 2px;
    opacity: 0.8;
    margin-top: 0.2rem;
}

/* News Content */
.news-content {
    padding: 2rem;
}

.news-category {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: #3B444B;
    padding: 0.5rem 1rem;
    background: rgba(59, 68, 75, 0.1);
    border-radius: 20px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.news-card:hover .news-category {
    background: rgba(59, 68, 75, 0.2);
}

.news-card-title {
    /*font-family: 'Bebas Neue', sans-serif;*/
    font-size: 1.8rem;
    /*letter-spacing: 2px;*/
    margin-bottom: 1rem;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.news-card:hover .news-card-title {
    color: #3B444B;
}

.news-excerpt {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    letter-spacing: 2px;
    font-weight: 600;
    color: #3B444B;
    text-decoration: none;
    transition: all 0.3s ease;
}

.news-link i {
    transition: transform 0.3s ease;
}

.news-card:hover .news-link {
    gap: 1rem;
}

.news-card:hover .news-link i {
    transform: translateX(5px);
}

/* News CTA */
.news-cta {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
}

.news-cta .cta-button {
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .news-section {
        padding: 5rem 1.5rem;
    }
    
    .news-header {
        margin-bottom: 3rem;
    }
    
    .news-title {
        font-size: 2.5rem;
        /*letter-spacing: 4px;*/
    }
    
    .news-subtitle {
        font-size: 1rem;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .news-image {
        height: 220px;
    }
    
    .news-card-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .news-content {
        padding: 1.5rem;
    }
    
    .date-day {
        font-size: 1.5rem;
    }
    
    .news-card-title {
        font-size: 1.3rem;
    }
}









        /* Video Showcase Section - Pinned & Scaling */
        .video-showcase {
            position: relative;
            height: 300vh;
            background: #000;
        }

        .video-showcase-wrapper {
            position: sticky;
            top: 0;
            height: 100vh;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .video-container {
            position: relative;
            width: 50%;
            height: 50%;
            border-radius: 20px;
            overflow: hidden;
            will-change: transform, width, height, border-radius;
        }

        .showcase-video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(59, 68, 75, 0.3) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .video-content {
            text-align: center;
            padding: 2rem;
            transform: translateY(30px);
            opacity: 0;
        }

        .video-label {
            display: inline-block;
            font-size: 0.85rem;
            letter-spacing: 4px;
            color: white;
            margin-bottom: 1rem;
            padding: 0.5rem 1.5rem;
            border: 1px solid #fff;
            border-radius: 30px;
        }

        .video-title {
            /*font-family: 'Bebas Neue', sans-serif;*/
            font-size: clamp(2.5rem, 6vw, 5rem);
            /*letter-spacing: 6px;*/
            line-height: 1.1;
            margin-bottom: 1.5rem;
        }

        /* .video-title span {
            color: #3B444B;
        } */

        .video-desc {
            font-size: 1.2rem;
            opacity: 0.8;
            margin-bottom: 2rem;
            letter-spacing: 1px;
        }

        .video-cta {
            opacity: 1 !important;
        }

        /* Social Links Section */
        .social {
            padding: 6rem 4rem;
            background: #0a0a0a;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
            margin-top: 3rem;
        }

        .social-link {
            width: 70px;
            height: 70px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: transparent;
            border: 2px solid #3B444B;
            color: #fff;
            text-decoration: none;
            font-size: 1.5rem;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            overflow: hidden;
        }

        .social-link::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: #3B444B;
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: all 0.4s ease;
            z-index: -1;
        }

        .social-link:hover::before {
            width: 100%;
            height: 100%;
        }

        .social-link:hover {
            transform: translateY(-10px) rotate(360deg);
            border-color: transparent;
            box-shadow: 0 15px 40px rgba(59, 68, 75, 0.5);
        }

        /* Footer */
        footer {
            padding: 4rem;
            background: #000;
            border-top: 1px solid rgba(59, 68, 75, 0.2);
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 3rem;
        }

        .footer-col h4 {
        /* font-family: 'Bebas Neue', sans-serif; */
        font-size: 1.2rem;
        /* letter-spacing: 3px; */
        margin-bottom: 1.5rem;
        color: #3B444B;
        }

        .footer-col p {
            font-size: 0.95rem;
            line-height: 1.8;
            opacity: 0.7;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 0.8rem;
        }

        .footer-col ul li a {
            color: #fff;
            text-decoration: none;
            opacity: 0.7;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }

        .footer-col ul li a:hover {
            opacity: 1;
            padding-left: 10px;
            color: #3B444B;
        }

        .footer-social {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .footer-social a {
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(59, 68, 75, 0.5);
            border-radius: 50%;
            color: #fff;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-social a:hover {
            background: #3B444B;
            border-color: #3B444B;
            transform: translateY(-5px);
        }

        .footer-bottom {
            max-width: 1400px;
            margin: 3rem auto 0;
            padding-top: 2rem;
            border-top: 1px solid rgba(59, 68, 75, 0.2);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footer-bottom p {
            opacity: 0.6;
            font-size: 0.9rem;
            letter-spacing: 1px;
        }

        .footer-bottom-links {
            display: flex;
            gap: 2rem;
        }

        .footer-bottom-links a {
            color: #fff;
            text-decoration: none;
            opacity: 0.6;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .footer-bottom-links a:hover {
            opacity: 1;
            color: #3B444B;
        }

        /* Hamburger Menu Button */
        .hamburger {
            display: none;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 50px;
            height: 50px;
            cursor: pointer;
            z-index: 1001;
            background: transparent;
            border: none;
            position: relative;
        }

        .hamburger-box {
            width: 35px;
            height: 24px;
            position: relative;
        }

        .hamburger-inner {
            position: absolute;
            width: 100%;
            height: 3px;
            background: #fff;
            border-radius: 3px;
            transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
        }

        .hamburger-inner:nth-child(1) {
            top: 0;
            transform-origin: left center;
        }

        .hamburger-inner:nth-child(2) {
            top: 50%;
            transform: translateY(-50%);
            width: 70%;
            margin-left: auto;
            right: 0;
            left: auto;
        }

        .hamburger-inner:nth-child(3) {
            bottom: 0;
            transform-origin: left center;
        }

        /* Hamburger Animation - Morphing X */
        .hamburger.active .hamburger-inner:nth-child(1) {
            transform: rotate(45deg);
            top: 2px;
            left: 6px;
            width: 30px;
        }

        .hamburger.active .hamburger-inner:nth-child(2) {
            opacity: 0;
            transform: translateX(20px);
            width: 0;
        }

        .hamburger.active .hamburger-inner:nth-child(3) {
            transform: rotate(-45deg);
            bottom: -2px;
            left: 6px;
            width: 30px;
        }

        /* Glow effect on hover */
        .hamburger::before {
            content: '';
            position: absolute;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(59, 68, 75, 0.3) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .hamburger:hover::before {
            opacity: 1;
        }

        /* Mobile Navigation Overlay */
        .mobile-nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(10, 10, 10, 0.98);
            z-index: 999;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.5s cubic-bezier(0.68, -0.6, 0.32, 1.6);
            backdrop-filter: blur(20px);
        }

        .mobile-nav.active {
            opacity: 1;
            visibility: visible;
        }

        .mobile-nav-links {
            list-style: none;
            text-align: center;
            padding: 0;
        }

        .mobile-nav-links li {
            margin: 1.5rem 0;
            overflow: hidden;
        }

        .mobile-nav-links a {
            color: #fff;
            text-decoration: none;
            font-family: 'Bebas Neue', sans-serif;
            font-size: 3rem;
            letter-spacing: 8px;
            display: block;
            transform: translateY(100%);
            opacity: 0;
            transition: all 0.5s cubic-bezier(0.68, -0.6, 0.32, 1.6);
            position: relative;
        }

        .mobile-nav.active .mobile-nav-links a {
            transform: translateY(0);
            opacity: 1;
        }

        .mobile-nav-links li:nth-child(1) a { transition-delay: 0.1s; }
        .mobile-nav-links li:nth-child(2) a { transition-delay: 0.15s; }
        .mobile-nav-links li:nth-child(3) a { transition-delay: 0.2s; }
        .mobile-nav-links li:nth-child(4) a { transition-delay: 0.25s; }
        .mobile-nav-links li:nth-child(5) a { transition-delay: 0.3s; }

        .mobile-nav-links a::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            background: #3B444B;
            transition: width 0.3s ease;
        }

        .mobile-nav-links a:hover::before {
            width: 100%;
        }

        .mobile-nav-links a:hover {
            color: #3B444B;
        }

        /* Mobile social links in nav */
        .mobile-nav-social {
            display: flex;
            gap: 1.5rem;
            margin-top: 3rem;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.5s ease 0.4s;
        }

        .mobile-nav.active .mobile-nav-social {
            opacity: 1;
            transform: translateY(0);
        }

        .mobile-nav-social a {
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid rgba(59, 68, 75, 0.5);
            border-radius: 50%;
            color: #fff;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .mobile-nav-social a:hover {
            background: #3B444B;
            border-color: #3B444B;
            transform: scale(1.1);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .about-container {
                grid-template-columns: 1fr;
                gap: 4rem;
            }

            .about-image img {
                height: 450px;
            }

            .footer-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            nav {
                padding: 1rem 1.5rem;
                flex-direction: row;
                justify-content: space-between;
            }

            .nav-links {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .logo {
                font-size: 1rem;
                letter-spacing: 2px;
            }

            /* Hero mobile */
            .hero-content h1 {
                font-size: 2.5rem;
                letter-spacing: 3px;
            }

            .hero-content p {
                font-size: 1rem;
                letter-spacing: 1px;
            }

            .cta-button {
                padding: 0.8rem 2rem;
                font-size: 0.85rem;
            }

            /* About mobile */
            .about {
                padding: 5rem 1.5rem;
            }

            .about-container {
                gap: 3rem;
            }

            .about-image::before {
                display: none;
            }

            .about-image img {
                height: 350px;
                border-radius: 15px;
            }

            .about-content h2 {
                font-size: 2rem;
                letter-spacing: 2px;
            }

            .about-content p {
                font-size: 1rem;
                line-height: 1.8;
            }

            .about-stats {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }

            .stat-number {
                font-size: 2.2rem;
            }

            /* Categories mobile */
            .categories {
                padding: 4rem 1.5rem;
            }

          

            .grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .category-card {
                height: 280px;
                border-radius: 15px;
            }

            .category-info h3 {
                font-size: 1.5rem;
            }

            /* Shop mobile */
            .shop {
                padding: 4rem 1.5rem;
            }

            .shop-content p {
                font-size: 1rem;
                line-height: 1.7;
            }

            /* Social mobile */
            .social {
                padding: 4rem 1.5rem;
            }

            /* Video showcase mobile */
            .video-showcase {
                height: 250vh;
            }

            .video-container {
                width: 80%;
                height: 40%;
            }

            .video-title {
                font-size: 2rem;
                letter-spacing: 3px;
            }

            .video-desc {
                font-size: 1rem;
            }

            .video-label {
                font-size: 0.75rem;
                padding: 0.4rem 1rem;
            }

            .social-links {
                gap: 1rem;
            }

            .social-link {
                width: 55px;
                height: 55px;
                font-size: 1.2rem;
            }

            /* Footer mobile */
            footer {
                padding: 3rem 1.5rem;
            }

            .footer-container {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 2.5rem;
            }

            .footer-col h4 {
                font-size: 1.3rem;
                margin-bottom: 1rem;
            }

            .footer-col p,
            .footer-col ul li a {
                font-size: 0.9rem;
            }

            .footer-social {
                justify-content: center;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 1.5rem;
            }

            .footer-bottom-links {
                flex-direction: column;
                gap: 0.8rem;
            }
        }

        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 1.7rem;
                letter-spacing: 2px;
            }

            .hero-content p {
                font-size: 0.9rem;
            }

            .mobile-nav-links a {
                font-size: 2rem;
                letter-spacing: 5px;
            }

            .about-content h2 {
                font-size: 1.6rem;
            }

            .about-stats {
                grid-template-columns: repeat(2, 1fr);
            }

            .stat-number {
                font-size: 1.8rem;
            }

            .stat-label {
                font-size: 0.75rem;
            }

            .category-card {
                height: 250px;
            }
        }

        /* Prevent scroll when mobile nav is open */
        body.nav-open {
            overflow: hidden;
        }


        /* Tablet - do 1024px */
@media (max-width: 1024px) {
    .about-container {
        flex-direction: column;
        gap: 3rem;
        padding: 4rem 2rem;
    }
    
    .about-image {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .about-image video {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
        object-fit: cover;
    }
    
    .about-content {
        width: 100%;
        text-align: center;
        padding: 0 1rem;
    }
    
    .about-content h2 {
        font-size: 2.5rem;
    }
    
    .about-content p {
        font-size: 1rem;
        max-width: 600px;
        margin: 0 auto 1.5rem auto;
    }
    
    .about-stats {
        justify-content: center;
        gap: 2rem;
        flex-wrap: wrap;
    }
    
    .stat-item {
        min-width: 120px;
    }
}

/* Mobile - do 768px */
@media (max-width: 768px) {
    .about {
        padding: 3rem 0;
    }
    
    .about-container {
        padding: 2rem 1.5rem;
        gap: 2.5rem;
    }
    
    .about-image {
        padding: 0 0.5rem;
    }
    
    .section-label {
        font-size: 0.75rem;
        letter-spacing: 3px;
    }
    
   
    
    .about-content h2 span {
        display: block;
    }
    
    .about-content p {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1.2rem;
    }
    
    .about-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .stat-item {
        min-width: unset;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
        letter-spacing: 2px;
    }
}

/* Small Mobile - do 480px */
@media (max-width: 480px) {
    .about-container {
        padding: 1.5rem 1rem;
        gap: 2rem;
    }
    
  
    
    .about-content h2 {
        font-size: 3.6rem;
        text-align: left;
        line-height: 50px;
    }
    
    .about-content p {
        font-size: 0.9rem;
        text-align: left;
        line-height: 1.6;
    }
    
    .about-stats {
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.65rem;
    }
}



          /* Quote of the Day Section */
        .quote-section {
            padding: 10rem 4rem;
            background: linear-gradient(180deg, #0a0a0a 0%, #0d0d12 50%, #0a0a0a 100%);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 80vh;
        }

        .quote-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 50% 50%, rgba(59, 68, 75, 0.08) 0%, transparent 60%);
            pointer-events: none;
        }

        .quote-container {
            text-align: center;
            max-width: 1000px;
            position: relative;
            z-index: 1;
        }

        .quote-icon {
            font-size: 3rem;
            color: #3B444B;
            margin-bottom: 2rem;
            opacity: 0;
            transform: scale(0.5);
        }

        .quote-icon.visible {
            opacity: 0.5;
            transform: scale(1);
        }

        .quote-text {
            /*font-family: 'Bebas Neue', sans-serif;*/
            font-size: clamp(2rem, 5vw, 4rem);
            /* letter-spacing: 8px; */
            text-transform: uppercase;
            
            font-weight:700;
            line-height: 1.4;
            margin-bottom: 3rem;
            color: #fff;
        }

        .quote-text .letter {
            display: inline-block;
            opacity: 0;
        }

        .quote-author {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 2rem;
            opacity: 0;
            transform: translateY(20px);
        }

        .quote-author.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .author-line {
            width: 60px;
            height: 1px;
            background: linear-gradient(90deg, transparent, #3B444B, transparent);
        }

        .author-name {
            font-size: 1rem;
            letter-spacing: 4px;
            color: #3B444B;
            font-weight: 500;
        }

        .quote-date {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.8rem;
            font-size: 0.85rem;
            letter-spacing: 2px;
            opacity: 0;
            color: rgba(255, 255, 255, 0.4);
        }

        .quote-date.visible {
            opacity: 1;
        }

        .quote-date i {
            color: #3B444B;
        }

        .quote-decoration {
            position: absolute;
            bottom: 3rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 0.8rem;
        }

        .quote-decoration span {
            width: 8px;
            height: 8px;
            background: #3B444B;
            border-radius: 50%;
            opacity: 0.3;
            animation: pulse-dot 2s ease-in-out infinite;
        }

        .quote-decoration span:nth-child(2) {
            animation-delay: 0.3s;
        }

        .quote-decoration span:nth-child(3) {
            animation-delay: 0.6s;
        }

        @keyframes pulse-dot {
            0%, 100% { 
                opacity: 0.3; 
                transform: scale(1);
            }
            50% { 
                opacity: 0.8; 
                transform: scale(1.3);
            }
        }

 
        
  /* ============================================
   PAGE TRANSITIONS OVERLAY
   ============================================ */

#page-transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    clip-path: circle(0% at 50% 50%);
}

.transition-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.transition-circle {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 3px solid #3B444B;
    border-radius: 50%;
    opacity: 0.5;
    animation: rotate-circle 3s linear infinite;
}

@keyframes rotate-circle {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.transition-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 8px;
    color: #3B444B;
    z-index: 1;
    opacity: 0;
}

/* Prevent body scroll during transition */
body.transitioning {
    overflow: hidden;
}



/* Enhanced Category Cards */
.category-card {
    transform-style: preserve-3d;
    perspective: 1000px;
    will-change: transform;
}

.category-info h3 span {
    display: inline-block;
}

.stat-item {
    will-change: transform;
}

.about-image {
    will-change: transform, box-shadow;
}

/* Smooth transitions */
.category-image,
.about-image img {
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}



/* ============================================
   PAGE TRANSITIONS - SLIDE RIGHT TO LEFT
   ============================================ */

.page-transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
}

.page-transition-overlay.active {
    display: flex;
}

.transition-content {
    text-align: center;
    position: relative;
}

.transition-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    letter-spacing: 8px;
    color: #3B444B;
    margin-bottom: 2rem;
    opacity: 0;
}

.transition-line {
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #3B444B, transparent);
    margin: 0 auto;
    transform: scaleX(0);
}

/* Prevent body scroll during transition */
body.transitioning {
    overflow: hidden;
}

/* Loading indicator (optional) */
.transition-loading {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.loading-dot {
    width: 8px;
    height: 8px;
    background: #3B444B;
    border-radius: 50%;
    animation: loading-pulse 1.4s ease-in-out infinite;
}

.loading-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.loading-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes loading-pulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(0.8);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .transition-logo {
        font-size: 2rem;
        letter-spacing: 4px;
    }
    
    .transition-line {
        width: 150px;
    }
}



/* Dodaj u main.css */

/* Magnetic Cursor Effect */
.magnetic-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid #3B444B;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10001;
    transition: transform 0.15s ease;
    mix-blend-mode: difference;
}

.magnetic-cursor-follower {
    position: fixed;
    width: 8px;
    height: 8px;
    background: #3B444B;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10002;
    transition: transform 0.3s cubic-bezier(0.75, -0.5, 0.25, 1.5);
}

.magnetic-cursor.hover {
    transform: scale(2);
    background: rgba(59, 68, 75, 0.1);
}

/* Parallax Text Layers */
.parallax-text-section {
    padding: 15rem 4rem;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-layers {
    position: relative;
    width: 100%;
    max-width: 1400px;
}

.parallax-layer {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 10vw, 12rem);
    letter-spacing: 0.1em;
    position: absolute;
    width: 100%;
    text-align: center;
    white-space: nowrap;
    user-select: none;
}

.parallax-layer:nth-child(1) {
    color: transparent;
    -webkit-text-stroke: 1px rgba(59, 68, 75, 0.3);
    z-index: 1;
}

.parallax-layer:nth-child(2) {
    color: rgba(59, 68, 75, 0.2);
    z-index: 2;
}

.parallax-layer:nth-child(3) {
    color: #3B444B;
    z-index: 3;
}

/* Morphing Blob Background */
.blob-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0;
    filter: blur(100px);
}

.blob {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, #3B444B 0%, transparent 70%);
    animation: morph 20s ease-in-out infinite;
}

.blob:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.blob:nth-child(2) {
    top: 60%;
    right: 10%;
    animation-delay: 5s;
}

.blob:nth-child(3) {
    bottom: 10%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes morph {
    0%, 100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
        transform: translate(50px, 50px) rotate(90deg);
    }
    50% {
        border-radius: 50% 60% 30% 60% / 30% 60% 70% 40%;
        transform: translate(-50px, 100px) rotate(180deg);
    }
    75% {
        border-radius: 60% 40% 60% 40% / 70% 30% 50% 60%;
        transform: translate(100px, -50px) rotate(270deg);
    }
}

/* Infinite Marquee */
.marquee-section {
    padding: 4rem 0;
    background: #0a0a0a;
    overflow: hidden;
   
   
}

.marquee {
    display: flex;
    white-space: nowrap;
    animation: marquee 40s linear infinite;
}

.marquee-content {
    display: flex;
    padding: 2rem 0;
}

.marquee-item {
    /*font-family: 'Bebas Neue', sans-serif;*/
    font-size: 4rem;
    /*letter-spacing: 0.1em;*/
    font-weight: 700;
    padding: 0 3rem;
    color: #3B444B;
    opacity: .4;
  
    transition: all 0.3s ease;
}

.marquee-item:hover {
    color: #3B444B;
    -webkit-text-stroke: 0px;
}

.marquee-item::before {
    content: '●';
    margin-right: 3rem;
    color: #3B444B;
}

@keyframes marquee {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, #3B444B 0%, #5a6570 100%);
    transform-origin: left;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(59, 68, 75, 0.5);
}

/* Glitch Text Effect */
.glitch-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 8vw, 8rem);
    letter-spacing: 0.1em;
    position: relative;
    display: inline-block;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch-text::before {
    animation: glitch-1 2.5s infinite;
    color: #3B444B;
    z-index: -1;
}

.glitch-text::after {
    animation: glitch-2 2.5s infinite;
    color: #5a6570;
    z-index: -2;
}

@keyframes glitch-1 {
    0%, 100% {
        transform: translate(0);
        opacity: 0;
    }
    20% {
        transform: translate(-2px, 2px);
        opacity: 1;
    }
    40% {
        transform: translate(-2px, -2px);
        opacity: 1;
    }
    60% {
        transform: translate(2px, 2px);
        opacity: 1;
    }
    80% {
        transform: translate(2px, -2px);
        opacity: 1;
    }
}

@keyframes glitch-2 {
    0%, 100% {
        transform: translate(0);
        opacity: 0;
    }
    20% {
        transform: translate(2px, -2px);
        opacity: 0.8;
    }
    40% {
        transform: translate(2px, 2px);
        opacity: 0.8;
    }
    60% {
        transform: translate(-2px, -2px);
        opacity: 0.8;
    }
    80% {
        transform: translate(-2px, 2px);
        opacity: 0.8;
    }
}

/* 3D Card Hover */
.card-3d {
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.card-3d:hover {
    transform: translateZ(50px);
}

/* Responsive */
@media (max-width: 768px) {
    .parallax-layer {
        font-size: 3rem;
    }
    
    .marquee-item {
        font-size: 2rem;
        padding: 0 1.5rem;
    }
    
    .glitch-text {
        font-size: 2.5rem;
    }
    
    .blob {
        width: 300px;
        height: 300px;
    }
    
   .magnetic-cursor-follower, .magnetic-cursor{
        visibility: hidden;
    }
}


/* ============================================
   CREATIVE PAGE TRANSITION
   ============================================ */

.page-transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    pointer-events: none;
    overflow: hidden;
}

.transition-liquid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.transition-liquid svg {
    width: 100%;
    height: 100%;
}

.liquid-blob {
    transform-origin: center;
}

.transition-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
}

.transition-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
}

.transition-category {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    letter-spacing: 10px;
    color: #fff;
    opacity: 0;
    transform: scale(0.8);
    margin-bottom: 2rem;
}

.transition-loader {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
}

.transition-loader span {
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    opacity: 0;
}




/* ============================================
   VIDEO PAUSE INDICATOR
   ============================================ */

.video-pause-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 15;
    opacity: 0;
    scale: 0.8;
    pointer-events: none;
}

.pause-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.pause-icon svg {
    width: 40px;
    height: 40px;
    color: #fff;
}

/* Mobile optimizacija */
@media (max-width: 768px) {
    .pause-icon {
        width: 60px;
        height: 60px;
    }
    
    .pause-icon svg {
        width: 30px;
        height: 30px;
    }
}

/* Dodatni styling za video kontrole */
.media-main {
    cursor: pointer;
    position: relative;
}

.media-main:hover {
    cursor: pointer;
}

/* Animacija za play overlay fade */
.video-play-overlay {
    transition: opacity 0.5s ease;
}

.video-play-overlay.hidden {
    opacity: 0;
    pointer-events: none;
    display: none;
}



/* Mobile - TEKST GORE, VIDEO DOLJE */
@media (max-width: 768px) {
    .hero-split {
        min-height: 100vh;
        padding: 0;
        display: block;
    }
    
    .hero-container {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 0;
        min-height: 100vh;
        justify-content: center;
    }
    
      .section-title {
                font-size: 2rem;
                letter-spacing: 3px;
                margin-bottom: 2.5rem;
            }
    
    /* CONTENT FIRST - Tekst Gore */
    .split-left {
        width: 100%;
        padding: 6rem 1.5rem 2rem; /* Više padding-top zbog nav-a */
        order: 1; /* 🔥 PRVO - TEKST */
        text-align: center;
    }
    
    .split-content {
        width: 100%;
    }
    
    /* VIDEO SECOND - Video Dolje */
    .split-right {
        width: 100%;
        padding: 0 1rem 2rem;
        order: 2; /* 🔥 DRUGO - VIDEO */
    }
    
    .media-wrapper {
        width: 100%;
        height: 50vh;
        max-height: none;
    }
    
    .media-main {
        border-radius: 20px;
    }
    
    /* Label */
    .hero-label-wrap {
        margin-bottom: 1.5rem;
    }
    
    .hero-label {
        font-size: 0.6rem;
        letter-spacing: 3px;
        padding: 0.6rem 1.5rem;
    }
    
    /* Title - Veći i čitljiviji */
    .title-line {
        font-size: 2.8rem;
        letter-spacing: 4px;
        line-height: 0.9;
    }
    
    .title-line.sub {
        font-size: 2.2rem;
        letter-spacing: 3px;
        margin-left: 0;
        margin-top: 0.3rem;
    }
    
    .split-title {
        margin-bottom: 1.5rem;
    }
    
    /* Description - sakrij */
    .hero-description {
        display: none;
    }
    
    /* CTA Button */
    .hero-cta-btn {
        padding: 1rem 2.5rem;
        font-size: 0.85rem;
        margin-top: 1rem;
        margin-bottom: 2rem; /* Space prije videa */
    }
    
    /* Play Button */
    .play-btn-circle {
        width: 90px;
        height: 90px;
    }
    
    .play-icon {
        width: 28px;
        height: 28px;
    }
    
    .play-btn-text {
        font-size: 0.7rem;
        letter-spacing: 1.5px;
    }
    
    .play-btn-pulse {
        width: 90px;
        height: 90px;
    }
    
    /* Scroll Indicator */
    .scroll-indicator {
        display: none;
    }
}

/* Small Mobile - Extra Optimizacija */
@media (max-width: 480px) {
    .hero-split {
        min-height: 100svh; /* Safe viewport height za iOS */
    }
    
    .hero-container {
        min-height: 100svh;
    }
    
    /* Content */
    .split-left {
        padding: 5rem 1rem 1.5rem;
    }
    
    .hero-label {
        font-size: 0.55rem;
        letter-spacing: 2.5px;
        padding: 0.55rem 1.3rem;
    }
    
    /* Title - kompaktniji */
    .title-line {
        font-size: 2.4rem;
        letter-spacing: 3px;
    }
    
    .title-line.sub {
        font-size: 1.9rem;
        letter-spacing: 2px;
    }
    
    /* CTA */
    .hero-cta-btn {
        padding: 0.9rem 2rem;
        font-size: 0.8rem;
        letter-spacing: 1.5px;
        margin-bottom: 1.5rem;
    }
    
    /* Video */
    .split-right {
        padding: 0 0.8rem 1.5rem;
    }
    
    .media-wrapper {
        height: 45vh;
    }
    
    .media-main {
        border-radius: 16px;
    }
    
    /* Play Button - manji */
    .play-btn-circle {
        width: 75px;
        height: 75px;
    }
    
    .play-icon {
        width: 24px;
        height: 24px;
    }
    
    .play-btn-text {
        font-size: 0.65rem;
    }
    
    .play-btn-pulse {
        width: 75px;
        height: 75px;
    }
}

/* Landscape Mobile */
@media (max-width: 896px) and (orientation: landscape) {
    .hero-split {
        min-height: auto;
        padding: 2rem 0;
    }
    
    .hero-container {
        min-height: auto;
        flex-direction: row;
        gap: 2rem;
    }
    
    .split-left {
        width: 50%;
        order: 1;
        padding: 2rem 1.5rem;
    }
    
    .split-right {
        width: 50%;
        order: 2;
        padding: 2rem 1rem;
    }
    
    .media-wrapper {
        height: 60vh;
    }
    
    .title-line {
        font-size: 2rem;
    }
    
    .title-line.sub {
        font-size: 1.6rem;
    }
}

/* iPhone SE i mali ekrani */
@media (max-width: 375px) {
    .split-left {
        padding: 4.5rem 1rem 1.5rem;
    }
    
    .title-line {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }
    
    .title-line.sub {
        font-size: 1.7rem;
        letter-spacing: 1.5px;
    }
    
    .hero-cta-btn {
        padding: 0.85rem 1.8rem;
        font-size: 0.75rem;
    }
    
    .media-wrapper {
        height: 42vh;
       
       
    }
}












/* ===================================
   COOKIE CONSENT STYLES - ORBIS.EXMACHINA
   =================================== */

:root {
    --primary-color: #3B444B;
    --bg-dark: #0a0a0a;
    --bg-card: #0d0d12;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --border: rgba(59, 68, 75, 0.2);
}

/* Cookie Consent Popup */
.cookie-consent {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    max-width: 600px;
    background: linear-gradient(135deg, rgba(13, 13, 18, 0.98) 0%, rgba(10, 10, 10, 0.98) 100%);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    
    backdrop-filter: blur(20px);
    z-index: 9999;
    padding: 2rem;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: none;
}

.cookie-consent.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cookie-icon {
    font-size: 3rem;
    color: var(--primary-color);
    text-align: center;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.cookie-text {
    text-align: center;
}

.cookie-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 4px;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.cookie-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.cookie-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-transform: uppercase;
}

.cookie-btn i {
    font-size: 1rem;
}

.cookie-btn-accept {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 5px 20px rgba(59, 68, 75, 0.3);
}

.cookie-btn-accept:hover {
    background: #4a5562;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(59, 68, 75, 0.5);
}

.cookie-btn-decline {
    background: rgba(244, 67, 54, 0.1);
    color: #F44336;
    border: 2px solid rgba(244, 67, 54, 0.3);
}

.cookie-btn-decline:hover {
    background: rgba(244, 67, 54, 0.2);
    border-color: #F44336;
    transform: translateY(-2px);
}

.cookie-btn-settings {
    background: rgba(59, 68, 75, 0.15);
    color: var(--primary-color);
    border: 2px solid rgba(59, 68, 75, 0.3);
}

.cookie-btn-settings:hover {
    background: rgba(59, 68, 75, 0.25);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Cookie Settings Modal */
.cookie-settings-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
}

.cookie-settings-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.cookie-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
}

.cookie-modal-container {
    position: relative;
    background: linear-gradient(135deg, #0d0d12 0%, #0a0a0a 100%);
    border: 1px solid rgba(59, 68, 75, 0.3);
    border-radius: 30px;
    max-width: 700px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.8);
    animation: slideUp 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1;
}

/* Custom Scrollbar */
.cookie-modal-container::-webkit-scrollbar {
    width: 8px;
}

.cookie-modal-container::-webkit-scrollbar-track {
    background: rgba(59, 68, 75, 0.1);
    border-radius: 10px;
}

.cookie-modal-container::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.cookie-modal-container::-webkit-scrollbar-thumb:hover {
    background: #4a5562;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.cookie-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(59, 68, 75, 0.15);
    border: 1px solid rgba(59, 68, 75, 0.3);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.cookie-modal-close:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: rotate(90deg);
}

.cookie-modal-close i {
    font-size: 1.3rem;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.cookie-modal-close:hover i {
    color: #fff;
}

.cookie-modal-header {
    text-align: center;
    padding: 3rem 2rem 2rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #495660 100%);
    color: #fff;
    border-radius: 30px 30px 0 0;
    position: relative;
    overflow: hidden;
}

.cookie-modal-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 20px,
        rgba(255, 255, 255, 0.03) 20px,
        rgba(255, 255, 255, 0.03) 40px
    );
    animation: pattern-move 30s linear infinite;
}

@keyframes pattern-move {
    0% { transform: translateX(0); }
    100% { transform: translateX(40px); }
}

.cookie-modal-header i {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
    position: relative;
    z-index: 1;
}

.cookie-modal-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    letter-spacing: 4px;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.cookie-modal-header p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.cookie-modal-body {
    padding: 2rem;
}

/* Cookie Categories */
.cookie-category {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(59, 68, 75, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(59, 68, 75, 0.2);
    transition: all 0.3s ease;
}

.cookie-category:hover {
    background: rgba(59, 68, 75, 0.08);
    box-shadow: 0 5px 20px rgba(59, 68, 75, 0.2);
    border-color: rgba(59, 68, 75, 0.3);
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.cookie-category-info {
    flex: 1;
}

.cookie-category-info h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    letter-spacing: 1px;
}

.cookie-category-info h3 i {
    font-size: 1.3rem;
}

.cookie-category-info p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.cookie-examples {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-style: italic;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(59, 68, 75, 0.15);
}

.cookie-examples strong {
    color: var(--primary-color);
    font-style: normal;
}

/* Toggle Switch */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
    flex-shrink: 0;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(59, 68, 75, 0.3);
    border: 1px solid rgba(59, 68, 75, 0.4);
    transition: 0.4s;
    border-radius: 30px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 3px;
    background: #fff;
    transition: 0.4s;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

input:checked + .toggle-slider {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

input:checked + .toggle-slider:before {
    transform: translateX(30px);
}

input:focus + .toggle-slider {
    box-shadow: 0 0 0 3px rgba(59, 68, 75, 0.2);
}

.toggle-disabled {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-style: italic;
    letter-spacing: 0.5px;
}

/* Modal Footer */
.cookie-modal-footer {
    padding: 1.5rem 2rem 2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid rgba(59, 68, 75, 0.2);
}

.cookie-btn-save {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 5px 20px rgba(59, 68, 75, 0.3);
}

.cookie-btn-save:hover {
    background: #4a5562;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(59, 68, 75, 0.5);
}

.cookie-privacy-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.cookie-privacy-link:hover {
    opacity: 0.7;
    gap: 0.7rem;
}

.cookie-privacy-link i {
    transition: transform 0.3s ease;
}

.cookie-privacy-link:hover i {
    transform: rotate(360deg);
}

/* Floating Cookie Button */
.floating-cookie-btn {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(59, 68, 75, 0.4);
    transition: all 0.3s ease;
    z-index: 9998;
    display: none;
}

.floating-cookie-btn.show {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInScale 0.5s ease;
}

.floating-cookie-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(59, 68, 75, 0.6);
    background: #4a5562;
}

.floating-cookie-btn i {
    animation: wiggle 2s infinite;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-consent {
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
        padding: 1.5rem;
    }

    .cookie-title {
        font-size: 1.7rem;
        letter-spacing: 3px;
    }

    .cookie-description {
        font-size: 0.85rem;
    }

    .cookie-actions {
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
        justify-content: center;
    }

    .cookie-modal-container {
        width: 95%;
    }

    .cookie-modal-header {
        padding: 2rem 1.5rem 1.5rem 1.5rem;
    }

    .cookie-modal-header h2 {
        font-size: 2rem;
        letter-spacing: 3px;
    }

    .cookie-modal-body {
        padding: 1.5rem;
    }

    .cookie-category-header {
        flex-direction: column;
        gap: 1rem;
    }

    .cookie-modal-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .floating-cookie-btn {
        bottom: 1rem;
        left: 1rem;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .cookie-icon {
        font-size: 2.5rem;
    }

    .cookie-title {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }

    .cookie-modal-close {
        width: 40px;
        height: 40px;
        top: 1rem;
        right: 1rem;
    }

    .cookie-modal-header i {
        font-size: 2.5rem;
    }

    .cookie-modal-header h2 {
        font-size: 1.8rem;
    }

    .cookie-category {
        padding: 1rem;
    }

    .cookie-category-info h3 {
        font-size: 1rem;
    }

    .cookie-category-info p {
        font-size: 0.85rem;
    }
}

/* Dark Mode Native Optimization */
@media (prefers-color-scheme: dark) {
    .cookie-consent {
        background: linear-gradient(135deg, rgba(13, 13, 18, 0.99) 0%, rgba(10, 10, 10, 0.99) 100%);
    }

    .cookie-modal-container {
        background: linear-gradient(135deg, #0d0d12 0%, #0a0a0a 100%);
    }
}

/* Accessibility */
.cookie-btn:focus,
.toggle-slider:focus,
.cookie-modal-close:focus,
.floating-cookie-btn:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 3px;
}

/* Print Styles */
@media print {
    .cookie-consent,
    .cookie-settings-modal,
    .floating-cookie-btn {
        display: none !important;
    }
}


/* Floating Cookie Button */
.floating-cookie-btn {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(59, 68, 75, 0.3);
    transition: all 0.3s ease;
    z-index: 9998;
    display: none;
}

.floating-cookie-btn.show {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInScale 0.5s ease;
}

.floating-cookie-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 30px rgba(59, 68, 75, 0.4);
}

.floating-cookie-btn i {
    animation: wiggle 2s infinite;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .floating-cookie-btn {
        bottom: 1rem;
        left: 1rem;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}




/* ============================================
   COMMISSIONS BANNER
   ============================================ */

.commissions-banner {
    padding: 6rem 4rem;
    background: linear-gradient(135deg, rgba(59, 68, 75, 0.08) 0%, transparent 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.commissions-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 68, 75, 0.3), transparent);
}


.commission-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 2px solid #3B444B;
    border-radius: 50%;
    font-size: 2rem;
    color: #3B444B;
    transition: all 0.5s ease;
}

.commission-icon:hover {
    background: #3B444B;
    color: #fff;
    transform: rotate(360deg);
}

.commission-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 6px;
    margin-bottom: 1.5rem;
    color: #fff;
}

.commission-description {
    font-size: 1.05rem;
    line-height: 1.8;
    opacity: 0.8;
    margin-bottom: 2rem;
}

.commission-email {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2.5rem;
    background: rgba(59, 68, 75, 0.2);
    border: 2px solid rgba(59, 68, 75, 0.4);
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 2px;
    transition: all 0.4s ease;
    font-size: 1rem;
}

.commission-email:hover {
    background: #3B444B;
    border-color: #3B444B;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(59, 68, 75, 0.4);
}

.commission-email i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.commission-email:hover i {
    transform: scale(1.2) rotate(15deg);
}


















