@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #2D7F83;
    --primary-light: rgba(45, 127, 131, 0.1);
    --secondary: #F59E0B;
    --secondary-light: rgba(245, 158, 11, 0.1);
    --background: #F8FAFC;
    --card-bg: #FFFFFF;
    --text: #0F172A;
    --text-secondary: #64748B;
    --accent: #3B82F6;
    --white: #FFFFFF;
    --glass: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
}

html {
    scroll-behavior: auto;
    /* Handled by JS */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Global Transitions */
.reveal-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}