/* ITCSS Manifest */
@import url('1-settings/_variables.css');
@import url('3-generic/_reset.css');
@import url('4-elements/_base.css');

/* Objects (Layout) */
@import url('5-objects/_layout.css');

/* Components */
@import url('6-components/_buttons.css');
@import url('6-components/_badges.css');

/* Components (Moved to top) */
@import url('6-components/_links.css');
@import url('6-components/_cards.css');
@import url('6-components/_accordion.css');
@import url('6-components/_navbar.css');
@import url('6-components/_footer.css');
@import url('6-components/_background.css');
@import url('6-components/_auth.css');

:root {
    --c-primary: #14b8a6;
    /* Teal 500 */
    --c-primary-dark: #0f766e;
    /* Teal 700 */
    --c-secondary: #6366f1;
    /* Indigo 500 */
    --c-bg-main: #020617;
    /* Slate 950 */
    --c-bg-alt: #0f172a;
    /* Slate 900 */
    --c-text-main: #f8fafc;
    /* Slate 50 */
    --c-text-muted: #94a3b8;
    /* Slate 400 */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    view-transition-name: root;
}

::view-transition-old(root) {
    animation: 90ms cubic-bezier(0.4, 0, 1, 1) both fade-out;
}

::view-transition-new(root) {
    animation: 210ms cubic-bezier(0, 0, 0.2, 1) 90ms both fade-in;
}

@keyframes fade-in {
    from {
        opacity: 0;
    }
}

@keyframes fade-out {
    to {
        opacity: 0;
    }
}

/* Sections (Specific Page Styles) */
/* Ideally, page-specifics are minimized in favor of components */