/* ============================================================
   FORTVEST — main.css
   @import MUST be first, before any other rules
   ============================================================ */

/* app.css is loaded via a direct <link> tag in the HTML — no @import needed */

/* ─── Reset & Base ─── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  background-color: #FAFAF9;
  color: #111;
  line-height: 1.6;
  min-width: 320px;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: 'Poppins', system-ui, sans-serif;
  border: none;
  cursor: pointer;
  outline: none;
}

img {
  max-width: 100%;
  display: block;
}

:root {
  --color-brand:      #F23813;
  --color-brand-dark: #d93010;
  --color-dark:       #000000;
  --color-bg:         #FAFAF9;
}
