/* ============================================
   VISORIA LANDING PAGE - BASE STYLES
   ============================================ */

/* CSS Variables */
:root {
    --primary-purple: #8E70FF;
    --purple-light: #a78bfa;
    --purple-dark: #8b5cf6;
    --lavender: #F4F0FF;
    --mint: #E0F7FA;
    --pink: #FFF0F6;
    --white: #ffffff;
    --text-dark: #2d1b69;
    --text-light: #6b5b95;
    --shadow-purple: rgba(142, 112, 255, 0.1);
    --shadow-strong: rgba(142, 112, 255, 0.2);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Quicksand', 'Nunito', sans-serif;
    background: linear-gradient(135deg, #fdfcfb 0%, #e2d1f9 50%, #e0f7fa 100%);
    background-attachment: fixed;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Shared Animations */
@keyframes glow-ring {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Smooth scroll behavior */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}
