/* ==========================================================================
   Base — Reset + Global Styles
   ========================================================================== */

/* @font-face — ITC Blair */
@font-face {
  font-family: 'ITC Blair';
  src: url('../fonts/ITC-Blair/ITC Blair Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'ITC Blair';
  src: url('../fonts/ITC-Blair/ITC Blair Light Italic.woff2') format('woff2');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'ITC Blair';
  src: url('../fonts/ITC-Blair/ITC Blair Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'ITC Blair';
  src: url('../fonts/ITC-Blair/ITC Blair Medium Italic.woff2') format('woff2');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'ITC Blair';
  src: url('../fonts/ITC-Blair/ITC Blair Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'ITC Blair';
  src: url('../fonts/ITC-Blair/ITC Blair Bold Italic.woff2') format('woff2');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/* @font-face — ITC Blair Condensed */
@font-face {
  font-family: 'ITC Blair Condensed';
  src: url('../fonts/ITC-Blair/ITC Blair Condensed Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'ITC Blair Condensed';
  src: url('../fonts/ITC-Blair/ITC Blair Condensed Light Italic.woff2') format('woff2');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'ITC Blair Condensed';
  src: url('../fonts/ITC-Blair/ITC Blair Condensed Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'ITC Blair Condensed';
  src: url('../fonts/ITC-Blair/ITC Blair Condensed Medium Italic.woff2') format('woff2');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'ITC Blair Condensed';
  src: url('../fonts/ITC-Blair/ITC Blair Condensed Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'ITC Blair Condensed';
  src: url('../fonts/ITC-Blair/ITC Blair Condensed Bold Italic.woff2') format('woff2');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

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

/* Body */
body {
  font-family: 'Nunito Sans', system-ui, -apple-system, sans-serif;
  font-size: var(--text-m);
  color: var(--color-text);
  background-color: var(--color-bg);
  position: relative;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  /* font-family: 'Bebas Neue', system-ui, sans-serif; */
  color: var(--color-black);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.1;
}

h1 { font-size: var(--h1); }
h2 { font-size: var(--h2); }
h3 { font-size: var(--h3); }
h4 { font-size: var(--h4); }
h5 { font-size: var(--h5); }
h6 { font-size: var(--h6); }

/* Links */
a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover { color: var(--color-secondary); }

/* Images */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Lists */
ul, ol { list-style: none; }

/* Forms */
input, textarea, select, button {
  font: inherit;
  color: inherit;
}

button { cursor: pointer; }
