/*
Theme Name: Franc i Sinovi v1.2
Author: Sonder Innovations
Description: Custom Wordpress tema za Franc i Sinovi.
Version: 1.2
*/

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Encode+Sans:wght@100..900&family=Manrope:wght@200..800&family=Sora:wght@100..800&family=Wix+Madefor+Display:wght@400..800&display=swap');

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    user-select: none;
}

/* --- INITIAL INTRO --- */
.initial-intro {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: red; /* Matches your dark theme */
    z-index: 9999; /* Higher than everything else */
    display: flex;
    justify-content: center;
    align-items: center;
}

.intro-logo {
    opacity: 0; /* Hidden initially, we will fade it in with GSAP */
    transform: scale(2);
}

.transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #ff0000; /* Crna boja tranzicije */
    z-index: 9999;
    transform: translateY(100%); /* Sakriveno dolje */
    pointer-events: none; /* Da možemo klikati kroz njega dok ga nema */
}

html { scrollbar-width: none; } /* Firefox */
body { -ms-overflow-style: none; } /* IE and Edge */
body::-webkit-scrollbar, body::-webkit-scrollbar-button { display: none; } /* Chrome */

