@font-face {
  font-family: 'Bradford';
  src: url('../assets/fonts/BradfordTrial-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
}


@font-face {
  font-family: 'Bradford';
  src: url('../assets/fonts/BradfordTrial-LightItalic.otf') format('opentype');
  font-weight: 300;
  font-style: italic;
}

@font-face {
  font-family: 'Bradford';
  src: url('../assets/fonts/BradfordLLWeb-Regular.ttf') format('opentype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Bradford';
  src: url('../assets/fonts/BradfordLLWeb-Italic.ttf') format('opentype');
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: 'REM';
  src: url('../assets/fonts/REM-VariableFont_wght.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

:root {
  --off-white: #EEECEC;
  --navy: #1E2935;
  --sea: #95A0A2;
  --khaki: #6F6A4D;
  --button-font-size: 0.8rem;
  --small-font-size: 1rem;
  --medium-font-size: 1.1875rem;
  --large-font-size: 1.3rem;
  --xl-font-size: 1.6rem;
  --nav-links-font-size: 1.1rem;
	--heading-spacing: 1px;
}

h1,
h2,
h3 {
  font-weight: 400;
  font-style: italic;
  text-transform: uppercase;
  font-size: var(--medium-font-size);
	letter-spacing: var(--heading-spacing);

}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

a, p, span, div {
  word-wrap: break-word;
  overflow-wrap: anywhere;
}


body {
  background-color: var(--off-white);
  color: var(--navy);
  font-family: 'Bradford', serif;
  font-weight: 400;
  font-size: var(--medium-font-size);
}

body:has(.front-page){
  background-color: #000;
}

.container {
  max-width: 1350px;
  width: 100%;
  margin: 0 auto;
  padding-inline: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.section {
  padding-block: 2.5rem;
}

.section:last-of-type {
  padding-bottom: 5rem;
}

a {
  all: unset;
  cursor: pointer;
}

li {
  list-style: none;
}