@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
/* Light mode variables */
:root {
    --brand-main: #1f4bd5;
    --brand-secondary: rgba(31, 75, 213, 0.1);
    --brand-secondary-opaque: #e9edfb;

    --background-tertiary: #ffffff;

    --primary-text: #1e1e1e;
    --secondary-text: rgba(0, 0, 0, 0.4);
    --secondary-text-opaque: #999999;
    --primary-text-white: #fcfcfc;

    --border-color: #00000036;

    --negative-text: #d70015;
    --positive-text: #248a3d;

    --background-gray: #f8f9fa; /* Light mode background */
    --brand-gradient: linear-gradient(90deg, #8711c1, #2472fc);

    --blurBackground: rgba(255, 255, 255, 0.88);

    --footer-background-gray: #1d1f22;
    --footer-foreground-white: #fcfcfc;

    /* Font sizes (Material Design standards) */
    --font-family: "Montserrat", sans-serif;
    --font-heading1: 3rem;
    --font-heading2: 2.25rem;
    --font-heading3: 1.875rem;
    --font-body: 1rem;
    --font-small: 0.875rem;

    /* Spacing */
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 2rem;
}

/* Dark mode variables */
@media (prefers-color-scheme: dark) {
    :root {
        --brand-main: #3c65df;
        --primary-text: #fcfcfc;
        --secondary-text: rgba(255, 255, 255, 0.7);
        --secondary-text-opaque: #cccccc;
        --background-gray: #1d1f22; /* Dark mode background */
        --border-color: #ffffff23;
        --blurBackground: #1d1f22cd;
        --background-tertiary: #2f2e364b;

    }
}
