
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html.lenis, html.lenis body {
            height: auto;
            overflow-x: hidden;
        }

        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 !important; /* Force flex */
    flex-direction: column;
    align-items: center !important; /* Force center */
    justify-content: center !important; /* Force center */
    clip-path: circle(150% at 50% 50%);
    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: white;
            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: 1;
            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: 50vh;
    background: #0a0a0a;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-container {
    max-width: 1400px;
    width: 100%;
   
    margin: 0 auto;
    padding: 0 4rem;
    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;
    text-transform: uppercase;
}

.title-stack {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.title-line {
    display: block;
    font-size: clamp(3rem, 4vw, 6rem);
    /*letter-spacing: 8px;*/
    line-height: 0.85;
    font-weight: 600;
}

.title-line.main {
    color: #fff;
    width: 180%;
}

.title-line.sub {
    color: white;
    margin-left: 2rem;
    width: 180%;
    font-size: clamp(2.5rem, 6vw, 6rem);
}

@media (max-width: 768px) {
    .title-line.main {
        width: 100%;
        font-size: 2.5rem;
    }
    .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: auto;
    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: auto;
    height: 100%;
    object-fit: contain;
}

/* 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 {
       display: flex;
        flex-direction: column-reverse;
        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: 100vh;
    }
    
    .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: 100vh;
    }
    
     .play-btn-circle {
       
    opacity: 1;
    }
}


 
 
 
 
 
 
 /* ============================================
   VIDEO SHOWCASE - BEZ SCROLL ANIMACIJA
   ============================================ */

.video-showcase {
    padding: 8rem 4rem;
    background: #0a0a0a;
}

.video-showcase-wrapper {
    max-width: 1600px;
    margin: 0 auto;
}

/* NASLOV IZNAD VIDEA */
.video-header {
    text-align: center;
    margin-bottom: 3rem;
}

.video-title {
    font-size: clamp(1.5rem, 3vw, 1.8rem);
    line-height: 1.4;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
    max-width: 900px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
}

/* VIDEO CONTAINER - STATIČAN */
.video-container {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 600px;
    border-radius: 20px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.showcase-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* OVERLAY - hover efekt */
.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.video-container:hover .video-overlay {
    opacity: 1;
}

.video-content {
    text-align: center;
    z-index: 3;
}

/* BUTTON */
.video-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    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);
    opacity: 0;
    transform: translateY(20px);
}

.video-cta:hover {
    background: #4a5562;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(59, 68, 75, 0.6);
}

.video-cta i {
    transition: transform 0.3s ease;
}

.video-cta:hover i {
    transform: translateX(5px);
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    .video-showcase {
        padding: 6rem 3rem;
    }
    
    .video-header {
        margin-bottom: 2.5rem;
    }
    
    .video-title {
        font-size: 1.8rem;
    }
    
    .video-container {
        height: 70vh;
        min-height: 500px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .video-showcase {
        padding: 4rem 1.5rem;
    }
    
    .video-header {
        margin-bottom: 2rem;
    }
    
    .video-title {
        font-size: 1.3rem;
        line-height: 1.5;
        letter-spacing: 0.5px;
    }
    
    .video-container {
        height: 60vh;
        min-height: 400px;
        border-radius: 16px;
    }
    
    /* Overlay uvijek vidljiv na mobile */
    .video-overlay {
        opacity: 1;
    }
    
    .video-cta {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .video-showcase {
        padding: 3rem 1rem;
    }
    
    .video-title {
        font-size: 1.1rem;
    }
    
    .video-container {
        height: 50vh;
        min-height: 350px;
        border-radius: 12px;
    }
    
    .video-cta {
        padding: 0.9rem 1.8rem;
        font-size: 0.85rem;
        letter-spacing: 1px;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .video-container {
        height: 85vh;
    }
}
 
 

/* 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 - Offset Layout Style */
.about {
    
    background: linear-gradient(180deg, #0a0a0a 0%, #0d0d12 50%, #0a0a0a 100%);
    position: relative;
    margin: 7rem 0;
    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 1rem;
    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(1.8rem, 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-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: 100%;
        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 a {
    display: block;
    text-decoration: none;
    color: inherit;
}
/* 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);
}

.category-image-wrapper {
    position: relative;
    height: 520px; /* fiksna visina za sve kartice */
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    /*background: #1a1a1a; */
}

.category-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* cijeli video vidljiv, bez rezanja */
    display: block;
}









/* 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 */


/* Desktop - 2 kolone */
/*@media (max-width: 1200px) {*/
/*    .grid {*/
/*        grid-template-columns: repeat(2, 1fr);*/
/*        gap: 2.5rem;*/
/*    }*/
/*}*/


@media (min-width: 1305px) {
    .category-image-wrapper {
        height: 650px !important;
    }
}
/* Tablet */
@media (max-width: 1024px) {
    .categories {
        padding: 6rem 3rem;
    }
    
    .section-title {
        margin-bottom: 4rem;
    }
    
    .grid {
        gap: 2.5rem;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .category-image-wrapper {
        height: 650px;
        margin-bottom: 1.3rem;
    }
    
    .category-info h3 {
        font-size: 1.6rem;
        letter-spacing: 2px;
    }
    
    .category-info p {
        font-size: 0.9rem;
    }
}


@media (min-width: 1600px) {
    .grid {
        max-width: 1600px;
        gap: 3.5rem;
    }
    
    .category-image-wrapper {
        height: 750px;
    }
}



/* 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: auto;
        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: auto;
        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: 210px;
    }
    
    .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: 600px;
    }
}



/* ============================================
   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: white;
    opacity:1;
    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;
    }
}





/* ============================================
   SOCIAL SECTION - ISTA VELIČINA KAO CATEGORIES ✅
   ============================================ */

.social {
    padding: 8rem 4rem;
    background: #0a0a0a;
}

.social-container {
    max-width: 1400px; /* ✅ ISTO KAO CATEGORIES */
    margin: 0 auto;
}

/* Title */
.social .section-title {
    text-align: center;
    font-size: clamp(2rem, 2rem, 2rem); /* ✅ ISTO KAO CATEGORIES */
    margin-bottom: 6rem; /* ✅ ISTO KAO CATEGORIES */
   
    color: #3B444B;
}

/* Grid - 3 KOLONE kao categories */
.social-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* ✅ 3 KOLONE */
    gap: 3rem; /* ✅ ISTI GAP KAO CATEGORIES */
    max-width: 1400px; /* ✅ OGRANIČENJE */
    margin: 0 auto;
}

/* Card Wrapper */
.social-card-wrapper {
    position: relative;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 1;
    transform: translateY(50px);
}

.social-card-wrapper.visible {
    opacity: 1;
    transform: translateY(0);
}


.social-card {
    position: relative;
    width: 100%; 
    display: block;
    text-decoration: none;
    margin-bottom: 1.5rem; 
}


.social-video-wrapper {
    position: relative;
    width: 100%;
    /*height: 750px; */
    max-height: 750px;
    border-radius: 20px; 
    overflow: hidden;
    /*background: #111;*/
    transition: all 0.5s ease;
}




.social-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}



/* Overlay */
.social-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.social-card-wrapper:hover .social-overlay {
    opacity: 1;
}


.social-icon-bottom {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0 auto; 
}

.social-card-wrapper:hover .social-icon-bottom {
    background: #3B444B;
    border-color: #fff;
    transform: scale(1.1);
}

.social-icon-bottom i {
    font-size: 1.8rem;
    color: #fff;
}

/* Platform Colors */
.social-card-wrapper:nth-child(1):hover .social-icon-bottom { /* Twitter */
    background: #000;
    border-color: #fff;
}

.social-card-wrapper:nth-child(2):hover .social-icon-bottom { /* Instagram */
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #e6683c;
}

.social-card-wrapper:nth-child(3):hover .social-icon-bottom { /* YouTube */
    background: #FF0000;
    border-color: #FF0000;
}

/* ============================================
   RESPONSIVE - ISTI BREAKPOINTI KAO CATEGORIES
   ============================================ */

/* Large Desktop */
@media (min-width: 1600px) {
    .social-container,
    .social-grid {
        max-width: 1600px;
    }
    
    .social-grid {
        gap: 3.5rem;
    }
    
    .social-video-wrapper {
        height: 750px;
    }
}

/* Desktop - 2 kolone */
/*@media (max-width: 1200px) {*/
/*    .social-grid {*/
/*        grid-template-columns: repeat(2, 1fr);*/
/*        gap: 2.5rem;*/
/*    }*/
/*}*/

/* Tablet */
@media (max-width: 1024px) {
    .social {
        padding: 6rem 3rem;
    }
    
    .social .section-title {
        margin-bottom: 4rem;
    }
    
    .social-grid {
        gap: 2.5rem;
    }
    
    .social-video-wrapper {
        height: 400px; /* ✅ ISTA VISINA KAO CATEGORIES */
        margin-bottom: 1.3rem;
    }
}

/* Mobile - 2 kolone kao categories */
@media (max-width: 768px) {
    .social {
        padding: 5rem 1.5rem;
    }
    
    .social .section-title {
        font-size: 2.5rem;
        letter-spacing: 3px;
        margin-bottom: 3rem;
    }
    
    .social-grid {
        grid-template-columns: repeat(2, 1fr) !important; /* ✅ 2 KOLONE NA MOBILE */
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .social-video-wrapper {
        height: auto; /* ✅ ISTA VISINA KAO CATEGORIES */
        border-radius: 12px;
        margin-bottom: 1.2rem;
    }
    
    .social-icon-bottom {
        width: 50px;
        height: 50px;
    }
    
    .social-icon-bottom i {
        font-size: 1.4rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .social {
        padding: 4rem 1rem;
    }
    
    .social .section-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }
    
    .social-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.8rem;
        padding: 0 0.8rem;
    }
    
    .social-video-wrapper {
        height: 245px; /* ✅ ISTA VISINA KAO CATEGORIES */
        border-radius: 10px;
        margin-bottom: 1rem;
    }
    
    .social-icon-bottom {
        width: 45px;
        height: 45px;
    }
    
    .social-icon-bottom i {
        font-size: 1.2rem;
    }
}

/* Extra Small */
@media (max-width: 375px) {
    .social-video-wrapper {
        height: auto;
    }
    
    .social-icon-bottom {
        width: 40px;
        height: 40px;
    }
    
    .social-icon-bottom i {
        font-size: 1rem;
    }
}

/* Landscape Mobile */
@media (max-width: 896px) and (orientation: landscape) {
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .social-video-wrapper {
        height: 300px;
    }
}



        

        
        
        
        
        
        
        
        

        /* 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.2rem;
            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: 9999;
            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: 9999;
            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;
           
            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: 580px;
                border-radius: 15px;
            }

            .category-info h3 {
                font-size: 1rem;
            }

            /* 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-container {
                width: 100%;
                height: 40%;
            }

            .video-title {
                font-size: 1.6rem;
                line-height: 35px;
                
            }

            .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: 0;
            }

            .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;
    }
    
.quote-section {
    padding: 10rem 1rem;
 
}


}

/* 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-text {
          
            font-size: 1.6rem;
         
        }
        
        .author-name {
    font-size: 1rem;
   
}
}



          /* 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, 2rem);
            /* 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: 1.5rem;
            letter-spacing: 4px;
            color: white;
            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);
            }
        }

 
 @media (max-width: 768px){
        .quote-text {
          
            font-size: 1.6rem;
         
        }
        
        .author-name {
    font-size: 1rem;
   
}

.quote-section {
    padding: 10rem 1rem;
 }
}
  /* ============================================
   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: 50vh;
        padding: 0;
        display: block;
    }
    
    .hero-container {
        display: flex;
        flex-direction: column-reverse;
        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 {
        display:block;
        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: auto;
        max-height: none;
    }
    
    .media-main {
        
        display: flex;
            border-radius: 20px;
            justify-content: center;
    }
    
    /* 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: 50svh; /* Safe viewport height za iOS */
    }
    
    .hero-container {
        min-height: 100svh;
    }
    
    /* Content */
    .split-left {
        padding: 1rem 1rem 1.5rem;
        text-align: center;
        display: flex;
        justify-content: center;
    }
    
    .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: auto;
    }
    
    .media-main {
        border-radius: 16px;
        display: flex;
        height: 50vh;
        flex-direction: column;
    }
    
    /* 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: 1rem 1rem 1.5rem;
        text-align: center;
        display: flex;
    justify-content: center;
        
    }
    
    .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: auto;
        border-radius: 20px;
       
       
    }
}


















/* ============================================
   LARGE VIDEO SECTION - FULL WIDTH
   ============================================ */

.large-video-section {
    width: 100%;
    height: 100vh;
    min-height: 600px;
    position: relative;
    /*overflow: hidden;*/
    background: #000;
}

.large-video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Video */
.large-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Overlay - može se isključiti ako ne trebaš tekst */
.large-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.large-video-section:hover .large-video-overlay {
    opacity: 1;
}

/* Content */
.large-video-content {
    text-align: center;
    padding: 2rem;
    max-width: 800px;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.6s ease 0.2s;
}

.large-video-section:hover .large-video-content {
    transform: translateY(0);
    opacity: 1;
}

.video-badge {
    display: inline-block;
    padding: 0.6rem 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);
    color: #fff;
}

.large-video-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    letter-spacing: 4px;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #fff;
}

.large-video-title span {
    color: #3B444B;
}

.large-video-subtitle {
    font-size: 1.2rem;
    letter-spacing: 2px;
    opacity: 0.9;
    color: #fff;
}

/* ============================================
   VERZIJA 2 - BEZ OVERLAY-a (čisti video)
   ============================================ */

/* Ako želiš samo čisti video bez teksta, koristi ovo: */
.large-video-section.clean {
    padding: 0;
}

.large-video-section.clean .large-video-overlay {
    display: none;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    .large-video-section {
        height: 70vh;
        min-height: 500px;
    }
    
    .large-video-title {
        font-size: 3rem;
        letter-spacing: 3px;
    }
    
    .large-video-subtitle {
        font-size: 1rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .large-video-section {
        height: 60vh;
        min-height: 400px;
    }
    
    .video-badge {
        font-size: 0.65rem;
        padding: 0.5rem 1.2rem;
        letter-spacing: 2px;
        margin-bottom: 1.5rem;
    }
    
    .large-video-title {
        font-size: 2rem;
        letter-spacing: 2px;
        margin-bottom: 1rem;
    }
    
    .large-video-subtitle {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
    
    .large-video-content {
        padding: 1.5rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .large-video-section {
        height: 50vh;
        min-height: 350px;
    }
    
    .large-video-title {
        font-size: 1.8rem;
    }
    
    .large-video-subtitle {
        font-size: 0.85rem;
    }
}

/* Landscape Mobile */
@media (max-width: 896px) and (orientation: landscape) {
    .large-video-section {
        height: 100vh;
        min-height: auto;
    }
}







/* ============================================
   LARGE VIDEO PLAY CONTROLS - SAMO OVDJE!
   ============================================ */

/* Play Overlay */
.large-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.2);
    z-index: 15;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.large-video-play-overlay.hidden {
    opacity: 0;
    pointer-events: none;
    display: none;
}

/* Play Button */
.large-video-play-btn {
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    padding: 0;
    outline: none;
}

.large-play-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.large-video-play-btn:hover .large-play-circle {
    background: rgba(59, 68, 75, 0.9);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.large-play-circle .play-icon {
    width: 40px;
    height: 40px;
    color: #fff;
    margin-left: 5px; /* Centriranje triangle-a */
}

/* Pause Indicator */
.large-video-pause-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
    opacity: 0;
    scale: 0.8;
    pointer-events: none;
}

.large-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);
}

.large-pause-icon svg {
    width: 40px;
    height: 40px;
    color: #fff;
}

/* Video cursor */
.large-video {
    cursor: pointer;
}

/* Hero video - bez kontrola */
.hero-video {
    cursor: default;
    pointer-events: none; /* Onemogući klik na hero video */
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .large-play-circle {
        width: 90px;
        height: 90px;
    }
    
    .large-play-circle .play-icon {
        width: 32px;
        height: 32px;
    }
    
    .large-pause-icon {
        width: 60px;
        height: 60px;
    }
    
    .large-pause-icon svg {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 480px) {
    .large-play-circle {
        width: 75px;
        height: 75px;
    }
    
    .large-play-circle .play-icon {
        width: 28px;
        height: 28px;
    }
    
    .large-pause-icon {
        width: 50px;
        height: 50px;
    }
    
    .large-pause-icon svg {
        width: 25px;
        height: 25px;
    }
}
    /* ============================================
   HERO ANIMATED PARAGRAPH - ELEGANT STYLING
   ============================================ */

.hero-animated-paragraph {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.9rem, 1.2vw, 1.1rem);
    line-height: 1.9;
    font-weight: 400;
    letter-spacing: 1px;
    /*color: rgba(255, 255, 255, 0.85);*/
    text-align: left;
    /*max-width: 550px;*/
    margin: 2.5rem 0 !important;
    padding: 2rem 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    opacity: 0; /* Animacija će ga pokazati */
}



/* Emphasis on • symbols */
.hero-animated-paragraph {
    text-transform: uppercase;
}

/* ============================================
   ABOUT SECTION PARAGRAPH - ELEGANT STYLING
   ============================================ */

.about {
    padding: 8rem 4rem;
    background: linear-gradient(180deg, #0a0a0a 0%, #0d0d12 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-text-wrap {
    /*max-width: 900px;*/
    margin: 0 auto;
    text-align: left;
}

.animated-paragraph {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.1rem, 1.8rem, 1.8rem);
    /*line-height: 2;*/
    /*font-weight: 300;*/
    letter-spacing: 0.5px;
    

    /*padding: 3rem 4rem;*/
    /*background: rgba(59, 68, 75, 0.03);*/
    /*border: 1px solid rgba(59, 68, 75, 0.15);*/
    /*border-radius: 20px;*/
    position: relative;
    margin: 0 auto;
   
}

/* Quote-like styling */
.animated-paragraph::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 2rem;
    font-family: 'Bebas Neue', serif;
    font-size: 6rem;
    line-height: 1;
    color: rgba(59, 68, 75, 0.15);
    z-index: 0;
}

/*.animated-paragraph::after {*/
/*    content: '"';*/
/*    position: absolute;*/
/*    bottom: 1rem;*/
/*    right: 2rem;*/
/*    font-family: 'Bebas Neue', serif;*/
/*    font-size: 6rem;*/
/*    line-height: 1;*/
/*    color: rgba(59, 68, 75, 0.15);*/
/*    z-index: 0;*/
/*}*/

/* Subtle gradient border effect */
.animated-paragraph {
    position: relative;
    isolation: isolate;
}

.animated-paragraph::before {
    z-index: -1;
}

/* ============================================
   RESPONSIVE - MOBILE OPTIMIZED
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    .hero-animated-paragraph {
        max-width: 100%;
        margin: 2rem 0 !important;
        padding: 1.8rem 2rem;
        font-size: 1rem;
        line-height: 1.8;
    }
    
    .animated-paragraph {
        /*padding: 2.5rem 3rem;*/
        font-size: 1.8rem;
        line-height: 1.9;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hero-animated-paragraph {
        padding: 1.5rem 1.5rem;
        font-size: 0.9rem;
        line-height: 1.7;
        letter-spacing: 0.5px;
        margin: 2rem 0 !important;
        border-left-width: 2px;
    }
    
    .about {
        padding: 0rem 1.5rem;
    }
    
    .animated-paragraph {
        padding: 2rem 1.5rem;
        font-size: 1.5rem;
        line-height: 1.5;
        border-radius: 16px;
    }
    
    .animated-paragraph::before,
    .animated-paragraph::after {
        font-size: 4rem;
    }
    
    .animated-paragraph::before {
        top: 0.5rem;
        left: 1rem;
    }
    
    .animated-paragraph::after {
        bottom: 0.5rem;
        right: 1rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-animated-paragraph {
        padding: 1.2rem 1.2rem;
        font-size: 1.3rem;
        line-height: 1.6;
        text-align: center;
        margin: 1.5rem 0 !important;
    }
    
    .animated-paragraph {
        padding: 1.5rem 0rem;
        font-size: 1.1rem;
        text-align:left;
        line-height: 1.7;
    }
    
    .animated-paragraph::before,
    .animated-paragraph::after {
        font-size: 3rem;
        opacity: 0.1;
    }
}




/* ============================================
   LARGE VIDEO SECTION - WITH PADDING
   ============================================ */

.large-video-section {
    padding: 8rem 4rem;
    background: #0a0a0a;
    position: relative;
}

.large-video-container {
    max-width: 1600px;
    margin: 0 auto;
}

.large-video-wrapper {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 600px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* Video */
.large-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Overlay - Prikazuje se na hover */
.large-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.large-video-wrapper:hover .large-video-overlay {
    opacity: 1;
}

/* Content */
.large-video-content {
    text-align: center;
    padding: 2rem;
    max-width: 800px;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.6s ease 0.2s;
}

.large-video-wrapper:hover .large-video-content {
    transform: translateY(0);
    opacity: 1;
}

.video-badge {
    display: inline-block;
    padding: 0.6rem 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);
    color: #fff;
    text-transform: uppercase;
}

.large-video-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    letter-spacing: 4px;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #fff;
    font-weight: 700;
}

.large-video-title span {
    color: #3B444B;
}

.large-video-subtitle {
    font-size: 1.2rem;
    letter-spacing: 2px;
    opacity: 0.9;
    color: #fff;
    margin-bottom: 2rem;
}

.video-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    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 ease;
    box-shadow: 0 10px 30px rgba(59, 68, 75, 0.4);
}

.video-cta-btn:hover {
    background: #4a5562;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(59, 68, 75, 0.6);
}

.video-cta-btn i {
    transition: transform 0.3s ease;
}

.video-cta-btn:hover i {
    transform: translateX(5px);
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    .large-video-section {
        padding: 6rem 3rem;
    }
    
    .large-video-wrapper {
        height: 70vh;
        min-height: 500px;
    }
    
    .large-video-title {
        font-size: 3rem;
        letter-spacing: 3px;
    }
    
    .large-video-subtitle {
        font-size: 1rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .large-video-section {
        padding: 4rem 1.5rem;
    }
    
    .large-video-wrapper {
        height: 60vh;
        min-height: 400px;
        border-radius: 20px;
    }
    
    /* Na mobile overlay je uvijek vidljiv */
    .large-video-overlay {
        opacity: 1;
        background: linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(0, 0, 0, 0.6) 100%
        );
    }
    
    .large-video-content {
        opacity: 1;
        transform: translateY(0);
    }
    
    .video-badge {
        font-size: 0.65rem;
        padding: 0.5rem 1.2rem;
        letter-spacing: 2px;
        margin-bottom: 1.5rem;
    }
    
    .large-video-title {
        font-size: 2rem;
        letter-spacing: 2px;
        margin-bottom: 1rem;
    }
    
    .large-video-subtitle {
        font-size: 0.9rem;
        letter-spacing: 1px;
        margin-bottom: 1.5rem;
    }
    
    .large-video-content {
        padding: 1.5rem;
    }
    
    .video-cta-btn {
        padding: 0.9rem 2rem;
        font-size: 0.85rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .large-video-section {
        padding: 3rem 1rem;
    }
    
    .large-video-wrapper {
        height: 50vh;
        min-height: 350px;
        border-radius: 16px;
    }
    
    .large-video-title {
        font-size: 1.8rem;
    }
    
    .large-video-subtitle {
        font-size: 0.85rem;
    }
    
    .video-cta-btn {
        padding: 0.85rem 1.8rem;
        font-size: 0.8rem;
    }
}

/* Landscape Mobile */
@media (max-width: 896px) and (orientation: landscape) {
    .large-video-wrapper {
        height: 85vh;
        min-height: auto;
    }
}








/* ============================================
   HERO PARAGRAPH - FIXED WORD WRAPPING
   ============================================ */

.hero-paragraph-section {
    padding: 6rem 4rem;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

.paragraph-container {
    max-width: 1400px;
    margin: 0 auto;
}

.hero-animated-paragraph {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.8rem, 1.5rem, 3rem);
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
    color: #fff;
    opacity: 0; /* ✅ Nevidljivo na početku */
    transform: translateY(30px);
}

/* ✅ WORD WRAPPER - KLJUČNO ZA PRAVILNO PRELAMANJE */
.hero-animated-paragraph .word-wrapper {
    display: inline-block;
    white-space: nowrap; /* ✅ Spriječava prelamanje unutar riječi */
    margin: 0 0.15em;
}

/* ✅ SLOVA UNUTAR RIJEČI */
.hero-animated-paragraph .word-wrapper .letter {
    display: inline-block;
    opacity: 0;
}

/* ✅ SIMBOLI (●) */
.hero-animated-paragraph .word-wrapper.symbol {
    color: #3B444B;
    margin: 0 0.3em;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-paragraph-section {
        padding: 4rem 1.5rem;
    }
    
    .hero-animated-paragraph {
        font-size: 1.5rem;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .hero-paragraph-section {
        padding: 3rem 1rem;
    }
    
    .hero-animated-paragraph {
        font-size: 1.1rem;
        text-align: left;
    }
}




/* ============================================
   COMMISSIONS BANNER
   ============================================ */

.commissions-banner {
    padding: 5rem 2rem;
    text-align: center;
   
}

.commissions-content {
    max-width: 600px;
    margin: 0 auto;
}

.commission-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(59, 68, 75, 0.6);
    border-radius: 50%;
    font-size: 1.4rem;
    color: #3B444B;
    transition: all 0.5s ease;
}

.commission-icon:hover {
    background: #3B444B;
    color: #fff;
    transform: rotate(360deg);
}

.commission-title {
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 4px;
    color: #fff;
    margin-bottom: 1.2rem;
}

.commission-description {
    font-size: 0.95rem;
    line-height: 1.8;
    color: white;
    margin-bottom: 2rem;
    font-weight: 400;
}

.commission-email {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1rem 2rem;
    border: 1px solid rgba(59, 68, 75, 0.5);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    transition: all 0.4s ease;
}

.commission-email:hover {
    background: rgba(59, 68, 75, 0.2);
    border-color: #3B444B;
    color: #fff;
    transform: translateY(-2px);
}

.commission-email i {
    color: #3B444B;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .commissions-banner {
        padding: 3.5rem 2rem;
    }
    .commission-title {
        font-size: 1.3rem;
        letter-spacing: 3px;
        text-align: left;
    }
    .commission-description {
        font-size: 0.9rem;
    }
}



.statement-content{
    max-width:900px;
}










































