
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html.lenis, html.lenis body {
            height: auto;
        }

        a{
            text-decoration: none;
            color: inherit;
        }

        .lenis.lenis-smooth {
            scroll-behavior: auto !important;
        }

        .lenis.lenis-smooth [data-lenis-prevent] {
            overscroll-behavior: contain;
        }

        .lenis.lenis-stopped {
            overflow: hidden;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background: #0a0a0a;
            color: #ffffff;
            overflow-x: hidden;
        }

    .preloader{
        display: flex;
        flex-direction: column;
    }


      /* Preloader - Creative Circular Iris Wipe */
        .preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #000;
            display: flex;
            align-items: center;
            justify-content: center;
               clip-path: circle(150% at 50% 50%); /* Početno stanje - potpuno vidljiv */
            z-index: 10000;
        }

        .preloader-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            z-index: 3;
            transition: opacity 0.4s ease, transform 0.6s cubic-bezier(0.68, -0.6, 0.32, 1.0);
        }

        .preloader.hiding .preloader-content {
            opacity: 0;
            transform: scale(0.5) rotate(10deg);
        }

        .preloader-gif {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            overflow: hidden;
            position: relative;
            animation: pulse-glow 1.4s ease-in-out infinite;
        }

        .preloader-gif::before {
            content: '';
            position: absolute;
            top: -3px;
            left: -3px;
            right: -3px;
            bottom: -3px;
            border-radius: 50%;
            border: 2px solid transparent;
            border-top-color: #3B444B;
            border-bottom-color: #3B444B;
            animation: spin-border 1.5s linear infinite;
        }

        .preloader-gif video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }

        @keyframes pulse-glow {
            0%, 100% { 
                transform: scale(1);
                box-shadow: 0 0 30px rgba(59, 68, 75, 0.3);
            }
            50% { 
                transform: scale(1.03);
                box-shadow: 0 0 50px rgba(59, 68, 75, 0.5);
            }
        }

        @keyframes spin-border {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .preloader-subtitle {
            margin-top: 2rem;
            /* font-family: 'Bebas Neue', sans-serif; */
            font-size: 1rem;
            letter-spacing: 8px;
            color: #3B444B;
            height: 2.5rem;
            overflow: hidden;
        }

        .preloader-subtitle .letter {
            display: inline-block;
            opacity: 0;
            transform: translateY(20px);
            transition: none;
        }

        .preloader-subtitle .letter.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .preloader-subtitle .letter.dot {
            color: #3B444B;
        }

      .preloader-cursor {
    display: inline-block;
    width: 2px;
    height: 1.5rem;
    background: #3B444B;
    margin-left: 2px;
    animation: blink-cursor 0.6s ease-in-out infinite;
    vertical-align: middle;
    position: relative;
}

        @keyframes blink-cursor {
            0%, 100% { opacity: 1; }
            50% { opacity: 0; }
        }

        /* Iris Wipe Layers */
        .iris-wipe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 2;
        }

        .iris-wipe svg {
            width: 100%;
            height: 100%;
        }

        /* Particle effects during transition */
        .iris-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 4;
            overflow: hidden;
        }

        .iris-particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: #3B444B;
            border-radius: 50%;
            opacity: 0;
        }

        /* Multiple iris rings */
        .iris-ring {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            border: 2px solid rgba(59, 68, 75, 0.3);
            border-radius: 50%;
            width: 0;
            height: 0;
            z-index: 1;
        }

        /* After iris animation completes */
        .preloader.hidden {
            visibility: hidden;
            pointer-events: none;
        }



        /* About Section - Responsive */



        .preloader-gif video {
            width: 100%;
            height: 100%;
            opacity: 0.4;
            object-fit: cover;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.1); opacity: 0.8; }
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 2rem 4rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            background: linear-gradient(180deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
        }

        .logo {
            font-family: 'Montserrat', sans-serif;
            /* font-size: 2rem; */
            font-weight: 400;
            letter-spacing: 3px;
            color: #fff;
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }

        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #3B444B;
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        /* Hero Section */
        .hero {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.4;
            z-index: 0;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(59, 68, 75, 0.5) 0%, rgba(10, 10, 10, 0.7) 100%);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            padding: 2rem;
        }

        .hero-content h1 {
            font-family: 'Montserrat', sans-serif;
            font-size: clamp(3rem, 8vw, 7rem);
            font-weight: 400;
            letter-spacing: 6px;
            margin-bottom: 1rem;
            color: #ffffff;
         
        }

        /* Flicker letter animation */
        .hero-content h1 .letter {
            display: inline-block;
            opacity: 0;
        }

        .hero-content p {
            font-size: clamp(1.2rem, 2vw, 1.8rem);
            font-weight: 300;
            letter-spacing: 2px;
            margin-bottom: 2rem;
            opacity: 0;
        }
.about-image video{
    border-radius: 20px;
}
        .cta-button {
            display: inline-block;
            padding: 1rem 3rem;
            background: #3B444B;
            color: #fff;
            text-decoration: none;
            font-weight: 600;
            letter-spacing: 2px;
            border-radius: 50px;
            transition: all 0.3s ease;
        
            opacity: 0;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            background: #4a5562;
            box-shadow: 0 15px 40px rgba(59, 68, 75, 0.6);
        }
    

        

        /* About Section */
        .about {
            padding: 10rem 4rem;
            background: linear-gradient(180deg, #0a0a0a 0%, #111118 50%, #0a0a0a 100%);
            position: relative;
            overflow: hidden;
        }

      

        .about-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: center;
        }

      /* About Section - Offset Layout Style */
.about {
    padding: 200px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #0d0d12 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}


.about::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(59, 68, 75, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-bg 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulse-bg {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
    position: relative;
    z-index: 1;
}

/* Title Section - Offset Left */
.about-title-wrap {
    /* margin-left: 10%; */
    max-width: 935px;
    /* width: 60%; */
    margin-bottom: 8rem;
}

.section-label {
    font-size: 0.85rem;
    letter-spacing: 5px;
    color: white;
    margin-bottom: 2rem;
    text-transform: uppercase;
    display: inline-block;
    padding: 0.5rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards 0.2s;
}

/* Animated Title */
.about-animated-title {
    /*font-family: 'Bebas Neue', sans-serif;*/
    font-size: clamp(3rem, 5.5vw, 6rem);
    /*letter-spacing: 8px;*/
    line-height: 1.2;
    position: relative;
}

.title-word {
    display: inline-block;
    margin: 0 0.2em;
    opacity: 0;
    transform: translateY(50px);
    will-change: transform, opacity;
}

.title-word.highlight {
    color: #3B444B;
}

.title-word.animated {
    animation: wordFadeIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes wordFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Text Section - Offset Right */
.about-text-wrap {
    /* margin-left: 42%; */
    max-width: 620px;
    /* margin-bottom: 10rem; */
}

.animated-paragraph {
    font-size: 1.1rem;
    line-height: 2;
     text-align: right;
    opacity: 0;
    margin-bottom: 2rem;
    transform: translateY(30px);
}



.word {
    display: inline-block;
    margin-right: 0.3em;
    opacity: 0;
    transform: translateY(20px);
    will-change: opacity, transform;
}

.word.visible {
    animation: wordReveal 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes wordReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stats Section - Full Width */
.about-stats-wrap {
    width: 100%;
    padding: 4rem 0;
    border-top: 1px solid rgba(59, 68, 75, 0.2);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    position: relative;
    padding: 2rem 1rem;
    opacity: 0;
    transform: translateY(30px);
    transition: transform 0.3s ease;
}

.stat-item.visible {
    animation: fadeInUp 0.8s ease forwards;
}

.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(2) { animation-delay: 0.2s; }
.stat-item:nth-child(3) { animation-delay: 0.3s; }
.stat-item:nth-child(4) { animation-delay: 0.4s; }

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #3B444B;
    transition: width 0.5s ease;
}

.stat-item.visible::before {
    width: 60px;
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    color: #3B444B;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.85rem;
    letter-spacing: 3px;
    opacity: 0.7;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tablet - do 1024px */
@media (max-width: 1024px) {
    .about {
        padding: 150px 0;
    }
    
    .about-container {
        padding: 0 3rem;
    }
    
    .about-title-wrap {
        margin-left: 5%;
        width: 70%;
        margin-bottom: 6rem;
    }
    
    .about-animated-title {
        font-size: 4rem;
        letter-spacing: 6px;
    }
    
    .about-text-wrap {
        margin-left: 35%;
        max-width: 65%;
        margin-bottom: 8rem;
    }
    
    .animated-paragraph {
        font-size: 1rem;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 3.5rem;
    }
}

/* Mobile - do 768px */
@media (max-width: 768px) {
    .about {
        padding: 100px 0;
    }
    
    .about-container {
        padding: 0 2rem;
    }
    
    .about-title-wrap {
        margin-left: 0;
        width: 100%;
        margin-bottom: 4rem;
        text-align: center;
    }
    
    .about-animated-title {
        font-size: 3rem;
        letter-spacing: 4px;
    }
    
    .title-word {
        margin: 0 0.15em;
    }
    
    .about-text-wrap {
        margin-left: 0;
        max-width: 100%;
        margin-bottom: 6rem;
    }
    
    .animated-paragraph {
        font-size: 1rem;
        line-height: 1.8;
        text-align: left;
    }
    
    .about-stats-wrap {
        padding: 3rem 0;
    }
    
    .about-stats {
        gap: 2rem;
    }
    
    .stat-item {
        padding: 1.5rem 0.5rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }
}

/* Small Mobile - do 480px */
@media (max-width: 480px) {
    .about {
        padding: 80px 0;
    }
    
    .about-container {
        padding: 0 1.5rem;
    }
    
    .section-label {
        font-size: 0.75rem;
        letter-spacing: 3px;
        padding: 0.4rem 1.5rem;
    }
    
    .about-title-wrap {
        margin-bottom: 3rem;
    }
    
    .about-animated-title {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }
    
    .about-text-wrap {
        margin-bottom: 5rem;
    }
    
    .animated-paragraph {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
}

/* Letter Animation - Flicker Effect */
.letter {
    display: inline-block;
    opacity: 0;
    will-change: opacity;
}

/* Word Animation */
.word {
    position: relative;
    display: inline-block;
    opacity: 1;
    will-change: opacity;
}

/* Animated Paragraph */
.animated-paragraph {
    opacity: 1 !important;
    transform: translateY(0) !important;
    position: relative;
}

.animated-paragraph.flickered {
    min-height: 0;
}

.animated-paragraph.word-animated .word {
    will-change: auto;
}

/* Title Word Animation */
.title-word {
    display: inline-block;
    margin: 0 0.2em;
    opacity: 1;
}

/* Stat Item Visibility */
.stat-item.visible::before {
    width: 60px;
}


     /* ============================================
   CATEGORIES SECTION - INFO BELOW CARDS
   ============================================ */

.categories {
    padding: 8rem 4rem;
   
}

.section-title {
    /*font-family: 'Bebas Neue', sans-serif;*/
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-align: center;
    margin-bottom: 6rem;
    /*letter-spacing: 4px;*/
    color: #3B444B;
}

/* Grid Layout - 3 kolone */
.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Category Card Wrapper */
.category-card {
    position: relative;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    transform: translateY(50px);
}

.category-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Image Container */
.category-image-wrapper {
    position: relative;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    background: #111;
    margin-bottom: 1.5rem;
    transition: all 0.5s ease;
}

.category-card:hover .category-image-wrapper {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(59, 68, 75, 0.4);
}

/* Video */
.category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.category-card:hover .category-image {
    transform: scale(1.08);
}





/* Info Section - BELOW CARD */
.category-info {
    padding: 0 0.5rem;
    text-align: left;
    transition: all 0.3s ease;
}

.category-info h3 {
    /*font-family: 'Bebas Neue', sans-serif;*/
    font-size: 1.8rem;
    margin-bottom: 0.6rem;
    /*letter-spacing: 3px;*/
    color: #fff;
    transition: color 0.3s ease;
    line-height: 1.2;
}

.category-info p {
    font-size: 0.95rem;
    opacity: 0.6;
    line-height: 1.6;
    color: #fff;
    transition: all 0.3s ease;
}

/* Hover Effects */
.category-card:hover .category-info h3 {
    color: #3B444B;
}

.category-card:hover .category-info p {
    opacity: 0.9;
}



/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* Large Desktop */
@media (min-width: 1600px) {
    .grid {
        max-width: 1600px;
        gap: 3.5rem;
    }
    
    .category-image-wrapper {
        height: 500px;
    }
}

/* Desktop - 2 kolone */
@media (max-width: 1200px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .categories {
        padding: 6rem 3rem;
    }
    
    .section-title {
        margin-bottom: 4rem;
    }
    
    .grid {
        gap: 2.5rem;
    }
    
    .category-image-wrapper {
        height: 400px;
        margin-bottom: 1.3rem;
    }
    
    .category-info h3 {
        font-size: 1.6rem;
        letter-spacing: 2px;
    }
    
    .category-info p {
        font-size: 0.9rem;
    }
}

/* Mobile - 1 kolona */
@media (max-width: 768px) {
    .categories {
        padding: 5rem 1.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
        letter-spacing: 3px;
        margin-bottom: 3rem;
    }
    
    .grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .category-image-wrapper {
        height: 200px;
        margin-bottom: 1.2rem;
    }
    
    .category-info {
        padding: 0;
    }
    
    .category-info h3 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .category-info p {
        font-size: 0.9rem;
    }
    
    /* Disable hover effects on mobile */
    .category-card:hover .category-image-wrapper {
        transform: translateY(0);
    }
    
  
}

/* Small Mobile */
@media (max-width: 480px) {
    .categories {
        padding: 4rem 1rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }
    
    .grid {
        gap: 2.5rem;
    }
    
    .category-image-wrapper {
        height: 200px;
        border-radius: 16px;
        margin-bottom: 1rem;
    }
    
    .category-info h3 {
        font-size: 1.3rem;
        letter-spacing: 2px;
        margin-bottom: 0.4rem;
    }
    
    .category-info p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
}

/* Extra Small */
@media (max-width: 375px) {
    .category-image-wrapper {
        height: 200px;
    }
    
    .category-info h3 {
        font-size: 1.2rem;
    }
    
    .category-info p {
        font-size: 0.8rem;
    }
}

/* Landscape Mobile */
@media (max-width: 896px) and (orientation: landscape) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .category-image-wrapper {
        height: 300px;
    }
}



/* ============================================
   NEWS SECTION
   ============================================ */

.news-section {
    padding: 10rem 4rem;
    background: linear-gradient(180deg, #0a0a0a 0%, #0d0d12 50%, #0a0a0a 100%);
    /* position: relative; */
    overflow: hidden;
}

.news-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #3B444B, transparent);
}

.news-container {
    max-width: 1400px;
    margin: 0 auto;
}

.news-header {
    text-align: center;
    margin-bottom: 5rem;
}

.news-title {
    /*font-family: 'Bebas Neue', sans-serif;*/
    font-size: clamp(3rem, 6vw, 5rem);
    /*letter-spacing: 8px;*/
    margin-bottom: 1.5rem;
    color: #3B444B;
    position: relative;
    display: inline-block;
}

.news-title .letter {
    display: inline-block;
    opacity: 0;
}

.news-subtitle {
    font-size: 1.2rem;
    opacity: 0.7;
    letter-spacing: 2px;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
}

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.news-card {
    /* background: rgba(59, 68, 75, 0.05); */
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    transform: translateY(100px) scale(0.9);
    /* border: 1px solid rgba(59, 68, 75, 0.1); */
}

.news-card.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* .news-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 80px rgba(59, 68, 75, 0.3);
    border-color: rgba(59, 68, 75, 0.3);
} */

/* News Image */
.news-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: grayscale(30%);
}

.news-card:hover .news-image video {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.news-date {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(59, 68, 75, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.8rem 1rem;
    border-radius: 10px;
    text-align: center;
    z-index: 2;
}

.date-day {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    line-height: 1;
    color: #fff;
}

.date-month {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 2px;
    opacity: 0.8;
    margin-top: 0.2rem;
}

/* News Content */
.news-content {
    padding: 2rem;
}

.news-category {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: #3B444B;
    padding: 0.5rem 1rem;
    background: rgba(59, 68, 75, 0.1);
    border-radius: 20px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.news-card:hover .news-category {
    background: rgba(59, 68, 75, 0.2);
}

.news-card-title {
    /*font-family: 'Bebas Neue', sans-serif;*/
    font-size: 1.8rem;
    /*letter-spacing: 2px;*/
    margin-bottom: 1rem;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.news-card:hover .news-card-title {
    color: #3B444B;
}

.news-excerpt {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    letter-spacing: 2px;
    font-weight: 600;
    color: #3B444B;
    text-decoration: none;
    transition: all 0.3s ease;
}

.news-link i {
    transition: transform 0.3s ease;
}

.news-card:hover .news-link {
    gap: 1rem;
}

.news-card:hover .news-link i {
    transform: translateX(5px);
}

/* News CTA */
.news-cta {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
}

.news-cta .cta-button {
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .news-section {
        padding: 5rem 1.5rem;
    }
    
    .news-header {
        margin-bottom: 3rem;
    }
    
    .news-title {
        font-size: 2.5rem;
        /*letter-spacing: 4px;*/
    }
    
    .news-subtitle {
        font-size: 1rem;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .news-image {
        height: 220px;
    }
    
    .news-card-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .news-content {
        padding: 1.5rem;
    }
    
    .date-day {
        font-size: 1.5rem;
    }
    
    .news-card-title {
        font-size: 1.3rem;
    }
}









        /* Video Showcase Section - Pinned & Scaling */
        .video-showcase {
            position: relative;
            height: 300vh;
            background: #000;
        }

        .video-showcase-wrapper {
            position: sticky;
            top: 0;
            height: 100vh;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .video-container {
            position: relative;
            width: 50%;
            height: 50%;
            border-radius: 20px;
            overflow: hidden;
            will-change: transform, width, height, border-radius;
        }

        .showcase-video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(59, 68, 75, 0.3) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .video-content {
            text-align: center;
            padding: 2rem;
            transform: translateY(30px);
            opacity: 0;
        }

        .video-label {
            display: inline-block;
            font-size: 0.85rem;
            letter-spacing: 4px;
            color: white;
            margin-bottom: 1rem;
            padding: 0.5rem 1.5rem;
            border: 1px solid #fff;
            border-radius: 30px;
        }

        .video-title {
            /*font-family: 'Bebas Neue', sans-serif;*/
            font-size: clamp(2.5rem, 6vw, 5rem);
            /*letter-spacing: 6px;*/
            line-height: 1.1;
            margin-bottom: 1.5rem;
        }

        /* .video-title span {
            color: #3B444B;
        } */

        .video-desc {
            font-size: 1.2rem;
            opacity: 0.8;
            margin-bottom: 2rem;
            letter-spacing: 1px;
        }

        .video-cta {
            opacity: 1 !important;
        }

        /* Social Links Section */
        .social {
            padding: 6rem 4rem;
            background: #0a0a0a;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
            margin-top: 3rem;
        }

        .social-link {
            width: 70px;
            height: 70px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: transparent;
            border: 2px solid #3B444B;
            color: #fff;
            text-decoration: none;
            font-size: 1.5rem;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            overflow: hidden;
        }

        .social-link::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: #3B444B;
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: all 0.4s ease;
            z-index: -1;
        }

        .social-link:hover::before {
            width: 100%;
            height: 100%;
        }

        .social-link:hover {
            transform: translateY(-10px) rotate(360deg);
            border-color: transparent;
            box-shadow: 0 15px 40px rgba(59, 68, 75, 0.5);
        }

        /* Footer */
        footer {
            padding: 4rem;
            background: #000;
            border-top: 1px solid rgba(59, 68, 75, 0.2);
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 3rem;
        }

        .footer-col h4 {
        /* font-family: 'Bebas Neue', sans-serif; */
        font-size: 1.2rem;
        /* letter-spacing: 3px; */
        margin-bottom: 1.5rem;
        color: #3B444B;
        }

        .footer-col p {
            font-size: 0.95rem;
            line-height: 1.8;
            opacity: 0.7;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 0.8rem;
        }

        .footer-col ul li a {
            color: #fff;
            text-decoration: none;
            opacity: 0.7;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }

        .footer-col ul li a:hover {
            opacity: 1;
            padding-left: 10px;
            color: #3B444B;
        }

        .footer-social {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .footer-social a {
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(59, 68, 75, 0.5);
            border-radius: 50%;
            color: #fff;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-social a:hover {
            background: #3B444B;
            border-color: #3B444B;
            transform: translateY(-5px);
        }

        .footer-bottom {
            max-width: 1400px;
            margin: 3rem auto 0;
            padding-top: 2rem;
            border-top: 1px solid rgba(59, 68, 75, 0.2);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footer-bottom p {
            opacity: 0.6;
            font-size: 0.9rem;
            letter-spacing: 1px;
        }

        .footer-bottom-links {
            display: flex;
            gap: 2rem;
        }

        .footer-bottom-links a {
            color: #fff;
            text-decoration: none;
            opacity: 0.6;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .footer-bottom-links a:hover {
            opacity: 1;
            color: #3B444B;
        }

        /* Hamburger Menu Button */
        .hamburger {
            display: none;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 50px;
            height: 50px;
            cursor: pointer;
            z-index: 1001;
            background: transparent;
            border: none;
            position: relative;
        }

        .hamburger-box {
            width: 35px;
            height: 24px;
            position: relative;
        }

        .hamburger-inner {
            position: absolute;
            width: 100%;
            height: 3px;
            background: #fff;
            border-radius: 3px;
            transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
        }

        .hamburger-inner:nth-child(1) {
            top: 0;
            transform-origin: left center;
        }

        .hamburger-inner:nth-child(2) {
            top: 50%;
            transform: translateY(-50%);
            width: 70%;
            margin-left: auto;
            right: 0;
            left: auto;
        }

        .hamburger-inner:nth-child(3) {
            bottom: 0;
            transform-origin: left center;
        }

        /* Hamburger Animation - Morphing X */
        .hamburger.active .hamburger-inner:nth-child(1) {
            transform: rotate(45deg);
            top: 2px;
            left: 6px;
            width: 30px;
        }

        .hamburger.active .hamburger-inner:nth-child(2) {
            opacity: 0;
            transform: translateX(20px);
            width: 0;
        }

        .hamburger.active .hamburger-inner:nth-child(3) {
            transform: rotate(-45deg);
            bottom: -2px;
            left: 6px;
            width: 30px;
        }

        /* Glow effect on hover */
        .hamburger::before {
            content: '';
            position: absolute;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(59, 68, 75, 0.3) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .hamburger:hover::before {
            opacity: 1;
        }

        /* Mobile Navigation Overlay */
        .mobile-nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(10, 10, 10, 0.98);
            z-index: 999;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.5s cubic-bezier(0.68, -0.6, 0.32, 1.6);
            backdrop-filter: blur(20px);
        }

        .mobile-nav.active {
            opacity: 1;
            visibility: visible;
        }

        .mobile-nav-links {
            list-style: none;
            text-align: center;
            padding: 0;
        }

        .mobile-nav-links li {
            margin: 1.5rem 0;
            overflow: hidden;
        }

        .mobile-nav-links a {
            color: #fff;
            text-decoration: none;
            font-family: 'Bebas Neue', sans-serif;
            font-size: 3rem;
            letter-spacing: 8px;
            display: block;
            transform: translateY(100%);
            opacity: 0;
            transition: all 0.5s cubic-bezier(0.68, -0.6, 0.32, 1.6);
            position: relative;
        }

        .mobile-nav.active .mobile-nav-links a {
            transform: translateY(0);
            opacity: 1;
        }

        .mobile-nav-links li:nth-child(1) a { transition-delay: 0.1s; }
        .mobile-nav-links li:nth-child(2) a { transition-delay: 0.15s; }
        .mobile-nav-links li:nth-child(3) a { transition-delay: 0.2s; }
        .mobile-nav-links li:nth-child(4) a { transition-delay: 0.25s; }
        .mobile-nav-links li:nth-child(5) a { transition-delay: 0.3s; }

        .mobile-nav-links a::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            background: #3B444B;
            transition: width 0.3s ease;
        }

        .mobile-nav-links a:hover::before {
            width: 100%;
        }

        .mobile-nav-links a:hover {
            color: #3B444B;
        }

        /* Mobile social links in nav */
        .mobile-nav-social {
            display: flex;
            gap: 1.5rem;
            margin-top: 3rem;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.5s ease 0.4s;
        }

        .mobile-nav.active .mobile-nav-social {
            opacity: 1;
            transform: translateY(0);
        }

        .mobile-nav-social a {
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid rgba(59, 68, 75, 0.5);
            border-radius: 50%;
            color: #fff;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .mobile-nav-social a:hover {
            background: #3B444B;
            border-color: #3B444B;
            transform: scale(1.1);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .about-container {
                grid-template-columns: 1fr;
                gap: 4rem;
            }

            .about-image img {
                height: 450px;
            }

            .footer-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            nav {
                padding: 1rem 1.5rem;
                flex-direction: row;
                justify-content: space-between;
            }

            .nav-links {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .logo {
                font-size: 1.3rem;
                letter-spacing: 2px;
            }

            /* Hero mobile */
            .hero-content h1 {
                font-size: 2.5rem;
                letter-spacing: 3px;
            }

            .hero-content p {
                font-size: 1rem;
                letter-spacing: 1px;
            }

            .cta-button {
                padding: 0.8rem 2rem;
                font-size: 0.85rem;
            }

            /* About mobile */
            .about {
                padding: 5rem 1.5rem;
            }

            .about-container {
                gap: 3rem;
            }

            .about-image::before {
                display: none;
            }

            .about-image img {
                height: 350px;
                border-radius: 15px;
            }

            .about-content h2 {
                font-size: 2rem;
                letter-spacing: 2px;
            }

            .about-content p {
                font-size: 1rem;
                line-height: 1.8;
            }

            .about-stats {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }

            .stat-number {
                font-size: 2.2rem;
            }

            /* Categories mobile */
            .categories {
                padding: 4rem 1.5rem;
            }

          

            .grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .category-card {
                height: 280px;
                border-radius: 15px;
            }

            .category-info h3 {
                font-size: 1.5rem;
            }

            /* Shop mobile */
            .shop {
                padding: 4rem 1.5rem;
            }

            .shop-content p {
                font-size: 1rem;
                line-height: 1.7;
            }

            /* Social mobile */
            .social {
                padding: 4rem 1.5rem;
            }

            /* Video showcase mobile */
            .video-showcase {
                height: 250vh;
            }

            .video-container {
                width: 80%;
                height: 40%;
            }

            .video-title {
                font-size: 2rem;
                letter-spacing: 3px;
            }

            .video-desc {
                font-size: 1rem;
            }

            .video-label {
                font-size: 0.75rem;
                padding: 0.4rem 1rem;
            }

            .social-links {
                gap: 1rem;
            }

            .social-link {
                width: 55px;
                height: 55px;
                font-size: 1.2rem;
            }

            /* Footer mobile */
            footer {
                padding: 3rem 1.5rem;
            }

            .footer-container {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 2.5rem;
            }

            .footer-col h4 {
                font-size: 1.3rem;
                margin-bottom: 1rem;
            }

            .footer-col p,
            .footer-col ul li a {
                font-size: 0.9rem;
            }

            .footer-social {
                justify-content: center;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 1.5rem;
            }

            .footer-bottom-links {
                flex-direction: column;
                gap: 0.8rem;
            }
        }

        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 1.7rem;
                letter-spacing: 2px;
            }

            .hero-content p {
                font-size: 0.9rem;
            }

            .mobile-nav-links a {
                font-size: 2rem;
                letter-spacing: 5px;
            }

            .about-content h2 {
                font-size: 1.6rem;
            }

            .about-stats {
                grid-template-columns: repeat(2, 1fr);
            }

            .stat-number {
                font-size: 1.8rem;
            }

            .stat-label {
                font-size: 0.75rem;
            }

            .category-card {
                height: 250px;
            }
        }

        /* Prevent scroll when mobile nav is open */
        body.nav-open {
            overflow: hidden;
        }


        /* Tablet - do 1024px */
@media (max-width: 1024px) {
    .about-container {
        flex-direction: column;
        gap: 3rem;
        padding: 4rem 2rem;
    }
    
    .about-image {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .about-image video {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
        object-fit: cover;
    }
    
    .about-content {
        width: 100%;
        text-align: center;
        padding: 0 1rem;
    }
    
    .about-content h2 {
        font-size: 2.5rem;
    }
    
    .about-content p {
        font-size: 1rem;
        max-width: 600px;
        margin: 0 auto 1.5rem auto;
    }
    
    .about-stats {
        justify-content: center;
        gap: 2rem;
        flex-wrap: wrap;
    }
    
    .stat-item {
        min-width: 120px;
    }
}

/* Mobile - do 768px */
@media (max-width: 768px) {
    .about {
        padding: 3rem 0;
    }
    
    .about-container {
        padding: 2rem 1.5rem;
        gap: 2.5rem;
    }
    
    .about-image {
        padding: 0 0.5rem;
    }
    
    .section-label {
        font-size: 0.75rem;
        letter-spacing: 3px;
    }
    
   
    
    .about-content h2 span {
        display: block;
    }
    
    .about-content p {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1.2rem;
    }
    
    .about-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .stat-item {
        min-width: unset;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
        letter-spacing: 2px;
    }
}

/* Small Mobile - do 480px */
@media (max-width: 480px) {
    .about-container {
        padding: 1.5rem 1rem;
        gap: 2rem;
    }
    
  
    
    .about-content h2 {
        font-size: 3.6rem;
        text-align: left;
        line-height: 50px;
    }
    
    .about-content p {
        font-size: 0.9rem;
        text-align: left;
        line-height: 1.6;
    }
    
    .about-stats {
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.65rem;
    }
}



          /* Quote of the Day Section */
        .quote-section {
            padding: 10rem 4rem;
            background: linear-gradient(180deg, #0a0a0a 0%, #0d0d12 50%, #0a0a0a 100%);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 80vh;
        }

        .quote-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 50% 50%, rgba(59, 68, 75, 0.08) 0%, transparent 60%);
            pointer-events: none;
        }

        .quote-container {
            text-align: center;
            max-width: 1000px;
            position: relative;
            z-index: 1;
        }

        .quote-icon {
            font-size: 3rem;
            color: #3B444B;
            margin-bottom: 2rem;
            opacity: 0;
            transform: scale(0.5);
        }

        .quote-icon.visible {
            opacity: 0.5;
            transform: scale(1);
        }

        .quote-text {
            /*font-family: 'Bebas Neue', sans-serif;*/
            font-size: clamp(2rem, 5vw, 4rem);
            /* letter-spacing: 8px; */
            font-weight:700;
            line-height: 1.4;
            margin-bottom: 3rem;
            color: #fff;
        }

        .quote-text .letter {
            display: inline-block;
            opacity: 0;
        }

        .quote-author {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 2rem;
            opacity: 0;
            transform: translateY(20px);
        }

        .quote-author.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .author-line {
            width: 60px;
            height: 1px;
            background: linear-gradient(90deg, transparent, #3B444B, transparent);
        }

        .author-name {
            font-size: 1rem;
            letter-spacing: 4px;
            color: #3B444B;
            font-weight: 500;
        }

        .quote-date {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.8rem;
            font-size: 0.85rem;
            letter-spacing: 2px;
            opacity: 0;
            color: rgba(255, 255, 255, 0.4);
        }

        .quote-date.visible {
            opacity: 1;
        }

        .quote-date i {
            color: #3B444B;
        }

        .quote-decoration {
            position: absolute;
            bottom: 3rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 0.8rem;
        }

        .quote-decoration span {
            width: 8px;
            height: 8px;
            background: #3B444B;
            border-radius: 50%;
            opacity: 0.3;
            animation: pulse-dot 2s ease-in-out infinite;
        }

        .quote-decoration span:nth-child(2) {
            animation-delay: 0.3s;
        }

        .quote-decoration span:nth-child(3) {
            animation-delay: 0.6s;
        }

        @keyframes pulse-dot {
            0%, 100% { 
                opacity: 0.3; 
                transform: scale(1);
            }
            50% { 
                opacity: 0.8; 
                transform: scale(1.3);
            }
        }

 
        
  /* ============================================
   PAGE TRANSITIONS OVERLAY
   ============================================ */

#page-transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    clip-path: circle(0% at 50% 50%);
}

.transition-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.transition-circle {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 3px solid #3B444B;
    border-radius: 50%;
    opacity: 0.5;
    animation: rotate-circle 3s linear infinite;
}

@keyframes rotate-circle {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.transition-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 8px;
    color: #3B444B;
    z-index: 1;
    opacity: 0;
}

/* Prevent body scroll during transition */
body.transitioning {
    overflow: hidden;
}



/* Enhanced Category Cards */
.category-card {
    transform-style: preserve-3d;
    perspective: 1000px;
    will-change: transform;
}

.category-info h3 span {
    display: inline-block;
}

.stat-item {
    will-change: transform;
}

.about-image {
    will-change: transform, box-shadow;
}

/* Smooth transitions */
.category-image,
.about-image img {
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}



/* ============================================
   PAGE TRANSITIONS - SLIDE RIGHT TO LEFT
   ============================================ */

.page-transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
}

.page-transition-overlay.active {
    display: flex;
}

.transition-content {
    text-align: center;
    position: relative;
}

.transition-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    letter-spacing: 8px;
    color: #3B444B;
    margin-bottom: 2rem;
    opacity: 0;
}

.transition-line {
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #3B444B, transparent);
    margin: 0 auto;
    transform: scaleX(0);
}

/* Prevent body scroll during transition */
body.transitioning {
    overflow: hidden;
}

/* Loading indicator (optional) */
.transition-loading {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.loading-dot {
    width: 8px;
    height: 8px;
    background: #3B444B;
    border-radius: 50%;
    animation: loading-pulse 1.4s ease-in-out infinite;
}

.loading-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.loading-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes loading-pulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(0.8);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .transition-logo {
        font-size: 2rem;
        letter-spacing: 4px;
    }
    
    .transition-line {
        width: 150px;
    }
}



/* Dodaj u main.css */

/* Magnetic Cursor Effect */
.magnetic-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid #3B444B;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10001;
    transition: transform 0.15s ease;
    mix-blend-mode: difference;
}

.magnetic-cursor-follower {
    position: fixed;
    width: 8px;
    height: 8px;
    background: #3B444B;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10002;
    transition: transform 0.3s cubic-bezier(0.75, -0.5, 0.25, 1.5);
}

.magnetic-cursor.hover {
    transform: scale(2);
    background: rgba(59, 68, 75, 0.1);
}

/* Parallax Text Layers */
.parallax-text-section {
    padding: 15rem 4rem;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-layers {
    position: relative;
    width: 100%;
    max-width: 1400px;
}

.parallax-layer {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 10vw, 12rem);
    letter-spacing: 0.1em;
    position: absolute;
    width: 100%;
    text-align: center;
    white-space: nowrap;
    user-select: none;
}

.parallax-layer:nth-child(1) {
    color: transparent;
    -webkit-text-stroke: 1px rgba(59, 68, 75, 0.3);
    z-index: 1;
}

.parallax-layer:nth-child(2) {
    color: rgba(59, 68, 75, 0.2);
    z-index: 2;
}

.parallax-layer:nth-child(3) {
    color: #3B444B;
    z-index: 3;
}

/* Morphing Blob Background */
.blob-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0;
    filter: blur(100px);
}

.blob {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, #3B444B 0%, transparent 70%);
    animation: morph 20s ease-in-out infinite;
}

.blob:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.blob:nth-child(2) {
    top: 60%;
    right: 10%;
    animation-delay: 5s;
}

.blob:nth-child(3) {
    bottom: 10%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes morph {
    0%, 100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
        transform: translate(50px, 50px) rotate(90deg);
    }
    50% {
        border-radius: 50% 60% 30% 60% / 30% 60% 70% 40%;
        transform: translate(-50px, 100px) rotate(180deg);
    }
    75% {
        border-radius: 60% 40% 60% 40% / 70% 30% 50% 60%;
        transform: translate(100px, -50px) rotate(270deg);
    }
}

/* Infinite Marquee */
.marquee-section {
    padding: 4rem 0;
    background: #0a0a0a;
    overflow: hidden;
   
   
}

.marquee {
    display: flex;
    white-space: nowrap;
    animation: marquee 40s linear infinite;
}

.marquee-content {
    display: flex;
    padding: 2rem 0;
}

.marquee-item {
    /*font-family: 'Bebas Neue', sans-serif;*/
    font-size: 4rem;
    /*letter-spacing: 0.1em;*/
    font-weight: 700;
    padding: 0 3rem;
    color: #3B444B;
    opacity: .4;
  
    transition: all 0.3s ease;
}

.marquee-item:hover {
    color: #3B444B;
    -webkit-text-stroke: 0px;
}

.marquee-item::before {
    content: '●';
    margin-right: 3rem;
    color: #3B444B;
}

@keyframes marquee {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, #3B444B 0%, #5a6570 100%);
    transform-origin: left;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(59, 68, 75, 0.5);
}

/* Glitch Text Effect */
.glitch-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 8vw, 8rem);
    letter-spacing: 0.1em;
    position: relative;
    display: inline-block;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch-text::before {
    animation: glitch-1 2.5s infinite;
    color: #3B444B;
    z-index: -1;
}

.glitch-text::after {
    animation: glitch-2 2.5s infinite;
    color: #5a6570;
    z-index: -2;
}

@keyframes glitch-1 {
    0%, 100% {
        transform: translate(0);
        opacity: 0;
    }
    20% {
        transform: translate(-2px, 2px);
        opacity: 1;
    }
    40% {
        transform: translate(-2px, -2px);
        opacity: 1;
    }
    60% {
        transform: translate(2px, 2px);
        opacity: 1;
    }
    80% {
        transform: translate(2px, -2px);
        opacity: 1;
    }
}

@keyframes glitch-2 {
    0%, 100% {
        transform: translate(0);
        opacity: 0;
    }
    20% {
        transform: translate(2px, -2px);
        opacity: 0.8;
    }
    40% {
        transform: translate(2px, 2px);
        opacity: 0.8;
    }
    60% {
        transform: translate(-2px, -2px);
        opacity: 0.8;
    }
    80% {
        transform: translate(-2px, 2px);
        opacity: 0.8;
    }
}

/* 3D Card Hover */
.card-3d {
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.card-3d:hover {
    transform: translateZ(50px);
}

/* Responsive */
@media (max-width: 768px) {
    .parallax-layer {
        font-size: 3rem;
    }
    
    .marquee-item {
        font-size: 2rem;
        padding: 0 1.5rem;
    }
    
    .glitch-text {
        font-size: 2.5rem;
    }
    
    .blob {
        width: 300px;
        height: 300px;
    }
    
   .magnetic-cursor-follower, .magnetic-cursor{
        visibility: hidden;
    }
}


/* ============================================
   CREATIVE PAGE TRANSITION
   ============================================ */

.page-transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    pointer-events: none;
    overflow: hidden;
}

.transition-liquid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.transition-liquid svg {
    width: 100%;
    height: 100%;
}

.liquid-blob {
    transform-origin: center;
}

.transition-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
}

.transition-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
}

.transition-category {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    letter-spacing: 10px;
    color: #fff;
    opacity: 0;
    transform: scale(0.8);
    margin-bottom: 2rem;
}

.transition-loader {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
}

.transition-loader span {
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    opacity: 0;
}




/* ============================================
   VIDEO PAUSE INDICATOR
   ============================================ */

.video-pause-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 15;
    opacity: 0;
    scale: 0.8;
    pointer-events: none;
}

.pause-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.pause-icon svg {
    width: 40px;
    height: 40px;
    color: #fff;
}

/* Mobile optimizacija */
@media (max-width: 768px) {
    .pause-icon {
        width: 60px;
        height: 60px;
    }
    
    .pause-icon svg {
        width: 30px;
        height: 30px;
    }
}

/* Dodatni styling za video kontrole */
.media-main {
    cursor: pointer;
    position: relative;
}

.media-main:hover {
    cursor: pointer;
}

/* Animacija za play overlay fade */
.video-play-overlay {
    transition: opacity 0.5s ease;
}

.video-play-overlay.hidden {
    opacity: 0;
    pointer-events: none;
    display: none;
}
