* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    --main-color: #ffffff;
    --main-bg-color: #000000;
    --primary-color: #FF914D;
    --section-spacing: 8rem;
}

@font-face {
  font-family: "Glacial";
  src: url("fonts/GlacialIndifference-Regular.otf") format("opentype");
  font-weight: 400;  /* Regular */
  font-style: normal;
}

@font-face {
  font-family: "Glacial";
  src: url("fonts/GlacialIndifference-Bold.otf") format("opentype");
  font-weight: 700;  /* Bold */
  font-style: normal;
}

img {
    display: inline-block;
    max-width: 100%;
}

strong {
  font-weight: 700;
  font-family: "Glacial", sans-serif;
}

.bold {
    font-weight: 700;
}

html {
    font-family: "Glacial", Arial, Helvetica, sans-serif;
    background-color: var(--main-bg-color);
    color: var(--main-color);
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(2rem, 5vw, 4rem);
}

.underline{
    display: block;
    width: var(--section-spacing);
    height: 0.125rem;
    background-color: var(--primary-color);
    margin: 0 auto 1.5rem auto;
}

p, ul, ol {
    font-size: clamp(1rem, 3vw, 1.5rem);
}

header {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

header > a {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    align-items: center;
    height: 100%;
}

header > a > img {
    width: 4rem;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    text-transform: uppercase;
}

nav a {
    color: var(--main-color);
    text-decoration: none;
    font-size: clamp(0.75rem, 3vw, 1rem);
    letter-spacing: 0.05em;
}

nav a:hover {
    text-decoration: underline;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 1rem;
}

.anchor {
    position: relative;
    top: calc(var(--section-spacing) * -1);
}

.kicker {
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-size: 1rem;
    letter-spacing: 0.05em;
    color: var(--primary-color);
}

#hero {
    text-align: center;
    padding-top: var(--section-spacing);
    padding-bottom: var(--section-spacing);
}

#hero .container > img {
    max-width: clamp(256px, 20vw, 512px);
    margin-bottom: 2rem;
}

#hero .hero-images {
    margin-top: 4rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

#hero .hero-images div {
    flex: 1;
    overflow: hidden;
}

#hero .hero-images div img {
    object-fit: cover;
    transform: scale(1.25);
}

.a-propos {
    padding-bottom: var(--section-spacing);
    text-align: center;
}

#options {
    padding-top: var(--section-spacing);
    padding-bottom: var(--section-spacing);
    background-color: var(--main-color);
    color: var(--main-bg-color);
    text-align: center;
}

#options ul {
    list-style: none;
}

#options ul li {
    margin-top: 0.25rem;
}

#options .kicker {
    color: var(--main-bg-color);
}

hr {
    margin: 4rem auto;
    width: 25%;
    height: 1px;
    border: none;
    color: var(--primary-color);
    background-color: var(--primary-color);
}
.h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}


.contact {
    padding-top: var(--section-spacing);
    padding-bottom: var(--section-spacing);
    text-align: center;
}

.contact p {
    margin-top: 1rem;
}

.contact a {
    color: var(--main-color);
    text-decoration: none;
}

.contact a:hover {
    text-decoration: underline;
}

.caption {
    font-size: clamp(0.875rem, 3vw, 1.5rem);
    font-weight: 400;
}

@media (max-width: 768px) {
    * {
        --section-spacing: 4rem;
    }

    header {
        justify-content: end;
    }

    #hero .hero-images { 
        flex-direction: column;
    }
    hr {
        margin: 3rem auto;
    }
}