
@tailwind base;
@tailwind components;
@tailwind utilities;

:root {
    --accent-blue: #0056D2;
    --text-main: #334155;
    --text-muted: #64748b;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: var(--text-main);
    overflow-x: hidden;
}

.text-accent { color: var(--accent-blue); }
.bg-accent { background-color: var(--accent-blue); }
.border-accent { border-color: var(--accent-blue); }

/* Custom parallax helper */
.parallax-container {
    perspective: 1px;
    height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
}

/* Smooth transitions */
.fade-up {
    animation: fadeUp 0.8s ease-out forwards;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Hide scrollbar for clean look but keep functionality */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #e2e8f0; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #cbd5e1; }
