/* RESET STYLES*/
*, *::before, *::after {
  box-sizing: border-box;
}
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video, input, textarea, select, label, button, picture {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
html {
  line-height: 1;
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}
ol, ul {
  list-style: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}
q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}
a, img, picture, svg, video, canvas {
  border: 0;
}
img, picture, svg, video, canvas, input {
  max-width: 100%;
}
img, video { max-height: 100%; height: auto; }
a{
  text-decoration: none;
}
img, picture, svg, video, canvas,
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
  display: block;
}

html {
  scroll-behavior: smooth;
}

:where(h1) {
  margin-block: 0.67em;
  font-size: 2em;
}

@font-face {
  font-family: 'Cooper BT';
  src: local('Cooper BT Medium'), local('CooperBT-Medium'),
      url('../fonts/CooperBT-Medium.woff2') format('woff2'),
      url('../fonts/CooperBT-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* GENERAL STYLES, TEXT FORMATTING AND  TYPOGRAPHY */
:root {
  --color-white: #fff;
  --color-red: #54131b;
}

html, body {
  width: 100%;
  font: normal 16px "avenir-lt-pro", sans-serif;
  color: #000;
  background-color: var(--color-white);
}

strong {
  font-weight: 700;
}

strong.medium {
  font-weight: 500;
}

strong.black {
  font-weight: 800;
}

em {
  font-style: italic;
}

.flex {
  display: flex;
  justify-content: center;
}

/* HERO */
.hero {
  flex-direction: column;
  align-items: center;
  height: 1200px;
  background: transparent url(../img/hero.jpg) no-repeat center center;
}

.hero__img {
  display: block;
}

.hero__img img {
  aspect-ratio: 1920 / 1209;
}

.hero__heading,
.intro-text,
.body-heading,
.body-subheading,
.button-list > li {
  font-family: 'Cooper BT';
}

.hero__heading,
.hero__subheading {
  text-align: center;
  color: var(--color-white);
}

.hero__heading {
  font-size: clamp(4rem, calc(6.5vw + 1rem), 8.75rem);
}

.hero__subheading {
  font-size: clamp(1.25rem, calc(1vw + 1rem), 2rem);
}

/* MEDIA QUERIES */
@media (max-width: 1200px) {
  html, body {
    font-size: 14px;
  }

  .hero {
    height: 900px;
  }
}

@media (max-width: 992px) {
  html, body {
    font-size: 12px;
  }

  .hero {
    height: 700px;
    background-size: 1200px;
  }

  .hero__heading {
    margin-bottom: 12px;
  }
}