/* Base Overrides */
html {
    scroll-behavior: smooth;
}

body {
    -webkit-font-smoothing: antialiased;
    background-image: radial-gradient(circle at 50% 0%, rgba(217, 70, 239, 0.05) 0%, transparent 50%);
}

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

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

/* On-scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.17, 0.55, 0.55, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Glass Morphism */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Neon Glow */
.text-glow {
    text-shadow: 0 0 15px rgba(217, 70, 239, 0.4);
}

.glow-bg {
    background: linear-gradient(45deg, #d946ef, #7c3aed);
}

/* Nav Link */
.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: #d946ef;
    transition: width 0.3s ease;
}

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

/* Inputs */
.form-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
    color: white;
    outline: none;
    transition: border-color 0.3s ease;
    border-radius: 2px;
}

.form-input:focus {
    border-color: #d946ef;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #05050a;
}

::-webkit-scrollbar-thumb {
    background: #222;
    border: 3px solid #05050a;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #d946ef;
}

/* Gallery Hover */
.gallery-item::after {
    content: 'VERGROOT';
    position: absolute;
    inset: 0;
    background: rgba(217, 70, 239, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.3em;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* Sticky Nav Styles */
nav.scrolled {
    background: rgba(5, 5, 10, 0.85);
    backdrop-filter: blur(20px);
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}