/* css/_base.css */

/* Basic Reset & Body Styles */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%; /* Ensures HTML and BODY elements take the full height of the viewport */
    min-height: 100vh; /* Ensures the body stretches to at least the viewport height */
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color-app);
    color: var(--text-color-default);
    line-height: 1.5;
    display: flex; /* Keeps the main layout as a flex container */
}

/* Container Utility */
.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--spacing-md);
    padding-right: var(--spacing-md);
}

@media (min-width: 640px) { /* sm */
    .container { max-width: 640px; }
}
@media (min-width: 768px) { /* md */
    .container { max-width: 768px; }
}
@media (min-width: 1024px) { /* lg */
    .container { max-width: 1024px; }
}
@media (min-width: 1280px) { /* xl */
    .container { max-width: 1280px; }
}
@media (min-width: 1536px) { /* 2xl */
    .container { max-width: 1536px; }
}
