﻿@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500&family=Montserrat:wght@700;800;900&display=swap');

html {
    scroll-behavior: smooth;
    cursor: auto;
}

body {
    background-color: #050505 !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    cursor: auto;
    
}

/* Nav Link Hover */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #22c55e;
    transition: width 0.3s ease;
}

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

::selection {
    background: #22c55e;
    color: #000;
}
/* Animated Premium Background */
.premium-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #050505;
    z-index: -5;
    overflow: hidden;
}
.premium-glow-1 {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(34,197,94,0.15) 0%, rgba(5,5,5,0) 70%);
    border-radius: 50%;
    animation: float1 15s infinite alternate ease-in-out;
}
.premium-glow-2 {
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(21,128,61,0.15) 0%, rgba(5,5,5,0) 70%);
    border-radius: 50%;
    animation: float2 12s infinite alternate ease-in-out;
}
@keyframes float1 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(10%, 10%) scale(1.2); }
}
@keyframes float2 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-10%, -10%) scale(1.3); }
}
/* Native Reveal Animations */
.reveal-item {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.gsap-fade-right.reveal-item {
    transform: translateX(-50px);
}
.gsap-fade-right.is-visible {
    transform: translateX(0);
}
.gsap-fade-left.reveal-item {
    transform: translateX(50px);
}
.gsap-fade-left.is-visible {
    transform: translateX(0);
}
/* Animations for Background and Preloader */
@keyframes float-1 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(15%, 15%) scale(1.2); }
}
.animate-float-1 {
    animation: float-1 12s infinite alternate ease-in-out;
}

@keyframes float-2 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-15%, -15%) scale(1.3); }
}
.animate-float-2 {
    animation: float-2 15s infinite alternate ease-in-out;
}

@keyframes loader-bar {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}
.animate-loader-bar {
    animation: loader-bar 1.5s infinite cubic-bezier(0.65, 0, 0.35, 1);
}

.fade-out-up {
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 1s cubic-bezier(0.85, 0, 0.15, 1), opacity 0.8s ease-in;
}