/* main.css - Основные стили лендинга Aura */

/* ИМПОРТЫ МОДУЛЕЙ */
@import 'themes.css';
@import 'base/reset.css';
@import 'base/typography.css';
@import 'base/layout.css';
@import 'components/copyright.css';
@import 'pages/home.css';

/* ===== BASE STYLES ===== */
* {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
}

body {
	font-family:
		-apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
	background-color: var(--color-background);
	color: var(--color-text);
	transition:
		background-color 0.3s ease,
		color 0.3s ease;
	display: flex;
	flex-direction: column;
	min-height: 100%;
}

/* FOOTER - прижимается к низу */
.site-footer {
	margin-top: auto;
}
