/* =========================================
   BASE.CSS
   Global Foundation
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Permanent+Marker&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --bg: #0e1012;
    --bg-alt: #0c0e10;
    --text: #e8e5f0;
    --accent: #888;
    --border: rgba(232, 229, 240, 0.1);
    --gray-1: #e8e5f0bd;
    --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-raleway: "Raleway", sans-serif;
    --font-permanent: "Permanent Marker", cursive;
    --font-poppins: "Poppins", sans-serif;
    --font-josefin: "Josefin Sans", sans-serif;
    --transition-smooth: 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
    --transition-tilt: 0.15s ease-out;
    --transition-collab: 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

/* --- BASE STYLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font-sans);
    overflow-x: hidden;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    line-height: 1.5;
}

html {
    width: 100%;
    max-width: 100%;
}

html.js-pending [data-js-reveal] {
    opacity: 0 !important;
    visibility: hidden !important;
}

html.js-ready [data-js-reveal] {
    transition: opacity 0.45s ease-out;
}
