@import url('https://fonts.googleapis.com/css2?family=Fira+GO:wght@300;400;500;700;900&display=swap');



:root {
    /* შენი ძირითადი იისფერი */
    --accent-purple: #7c3aed; 
    /* ნაზი იისფერი ჰოვერებისთვის ან ფონისთვის */
    --accent-purple-light: rgba(124, 58, 237, 0.1);
    /* ნეონური ნათებისთვის */
    --accent-glow: rgba(124, 58, 237, 0.5);
}
/* :root {
    --primary: #4f46e5;
    --dark: #0f172a;
} */
#chatbot {
    z-index: 9999 !important; /* ყველაზე მაღალი პრიორიტეტი */
}

#chatbot button {
    cursor: pointer !important;
    pointer-events: all !important;
}

/* თუ Quick Exit ღილაკი ეფარება, ჩათბოტი ოდნავ ზემოთ აწიე */
@media (max-width: 768px) {
    #chatbot {
        bottom: 100px; /* მობილურზე მეტი ადგილი დავუტოვოთ */
    }
}

body {
    font-family: 'Fira GO', sans-serif;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

.glass-nav {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.nav-link {
    position: relative;
    transition: color 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out forwards;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(100px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-slide-up {
    animation: slideUp 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.workshop-card {
    transition: all 0.5s ease;
}

.workshop-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #7c3aed; 
    border-radius: 10px;
}


    /* მენიუს ლინკები */
    .nav-ultra-link {
        font-size: 10px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.15em;
        color: rgba(255, 255, 255, 0.6);
        position: relative;
        transition: all 0.3s ease;
        padding: 5px 0;
    }

    .nav-ultra-link:hover {
        color: #ffffff;
        text-shadow: 0 0 10px rgba(168,85,247,0.5);
    }

    /* ანიმაციური ხაზი ქვემოთ */
    .nav-ultra-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, #9333ea, #ec4899);
        box-shadow: 0 0 10px #9333ea;
        transition: width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .nav-ultra-link:hover::after {
        width: 100%;
    }

    /* სმარტ დამალვის კლასი */
    .nav-hidden {
        transform: translate(-50%, -160%) !important;
        opacity: 0;
    }



    .lang-node {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 10px;
        font-weight: 900;
        color: #9ca3af;
        transition: all 0.3s ease;
        letter-spacing: 0.05em;
        position: relative;
    }

    /* როცა ენა აქტიურია */
    .lang-node.active {
        color: #7c3aed; /* შენი იისფერი */
    }

    .lang-node.active img {
        filter: grayscale(0);
        box-shadow: 0 0 8px rgba(124, 58, 237, 0.3);
    }

    /* ჰოვერის ეფექტი */
    .lang-node:hover {
        color: #7c3aed;
    }

    /* პატარა წერტილი აქტიური ენის ქვეშ */
    .lang-node.active::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 50%;
        transform: translateX(-50%);
        width: 4px;
        height: 4px;
        background-color: #7c3aed;
        border-radius: 50%;
    }

    /* ლოგოების (დროშების) საწყისი მდგომარეობა */
    .lang-node img {
        filter: grayscale(1);
        border: 1px solid rgba(0,0,0,0.05);
    }


