/* ---------------------------------------------
   ABDA Website - Base Styles
   --------------------------------------------- */

/* Optional Google Fonts (you can remove if you prefer system fonts) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&family=Montserrat:wght@600;800&family=Pacifico&display=swap');

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: var(--text-base);
  color: var(--ink);
  background: var(--surface-alt);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--navy);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding: 0 var(--space-4);
}

h1, h2, h3, h4 {
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  margin: 0 0 var(--space-4);
}

h1 {
  font-size: var(--text-3xl);
}

h2 {
  font-size: var(--text-2xl);
}

h3 {
  font-size: var(--text-xl);
}

/* ------------------------------
   IMPORT BUTTONS LAST
   ------------------------------ */
@import url('./buttons.css');
