/* CSS/styles.css */
/* Modern Black & Purple Theme */

/* --- Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* --- Shared Utilities --- */
.glass-panel {
    background: rgba(10, 10, 12, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(139, 92, 246, 0.15);
    /* Violet-500 at 15% */
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.glass-header {
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}

.text-balance {
    text-wrap: balance;
}

/* --- Motion System Base --- */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Orb Animation --- */
@keyframes float {

    0%,
    100% {
        transform: translateY(0) scale(1);
        filter: blur(100px);
    }

    50% {
        transform: translateY(-20px) scale(1.1);
        filter: blur(120px);
    }
}

.animate-float {
    animation: float 10s ease-in-out infinite;
}

/* --- Scrollbar --- */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #000000;
}

::-webkit-scrollbar-thumb {
    background: #4c1d95;
    /* Violet 900 */
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #6d28d9;
    /* Violet 700 */
}

::selection {
    background: #8b5cf6;
    /* Violet 500 */
    color: #ffffff;
}

/* --- Accessibility --- */
@media (prefers-reduced-motion: reduce) {

    *,
    ::before,
    ::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .reveal-on-scroll {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* --- Responsive Overrides --- */
@media (max-width: 767px) {
    .-ml-5 {
        margin-left: -5.4rem !important;
    }
}