/* FONT IMPORTS */
@font-face {
  font-family: 'Sentient';
  src: url('../fonts/Sentient/TTF/Sentient-Variable.ttf') format('truetype');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Sentient';
  src: url('../fonts/Sentient/TTF/Sentient-VariableItalic.ttf') format('truetype');
  font-weight: 300 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Cabinet Grotesk';
  src: url('../fonts/CabinetGrotesk/TTF/CabinetGrotesk-Variable.ttf') format('truetype');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inria Serif';
  src: url('../fonts/Inria_Serif/InriaSerif-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inria Serif';
  src: url('../fonts/Inria_Serif/InriaSerif-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Zodiak';
  src: url('../fonts/Zodiak/TTF/Zodiak-Variable.ttf') format('truetype');
  font-weight: 700 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'GeneralSans';
  src: url('../fonts/GeneralSans/GeneralSans-Variable.ttf') format('truetype');
  font-weight: 200 700;
  font-style: normal;
  font-display: swap;
}

/* BASE STYLING */
body {
  margin: 0;
  padding: 0;
  background-color: #f9efdc;
  font-family: 'Sentient', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #000;
  color: white;
  padding: 8px;
  z-index: 100;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 0;
}

/* Focus States */
:focus {
  outline: 3px solid #000;
  outline-offset: 2px;
}

:focus:not(:focus-visible) {
  outline: none;
}

:focus-visible {
  outline: 3px solid #000;
  outline-offset: 2px;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  height: 143px;
  padding: 17px 20px 0 60px;
  background-color: #f9efdc;
}

.logo {
  font-size: 32px;
  font-weight: bold;
  color: #000;
  margin: 0;
  font-family: 'Sentient', serif;
  font-weight: 700;
}

/* Responsive Design */
@media (min-width: 1440px) {
  .container {
    max-width: 1440px;
    margin: 0 auto;
  }
}

@media (min-width: 1920px) {
  .container {
    max-width: 1920px;
  }
}
