/* roboto-300 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  src: url("fonts/roboto-v51-latin-300.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */ }
/* roboto-regular - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url("fonts/roboto-v51-latin-regular.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */ }
/* roboto-500 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  src: url("fonts/roboto-v51-latin-500.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */ }
*,
*::before,
*::after {
  box-sizing: border-box; }

p {
  margin: 0;
  padding: 0; }

a {
  color: #ffffff; }

body {
  font-family: "Roboto";
  font-weight: 300;
  margin: 0;
  padding: 0; }

.container {
  width: 100%;
  max-width: 100%;
  height: 100dvh;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  -webkit-overflow-scrolling: touch;
  display: flex;
  flex-direction: column;
  justify-content: space-between; }

section {
  position: relative;
  height: 100dvh;
  min-height: 100svh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  isolation: isolate;
  /* Keep blend/filters contained */ }

.home,
.about {
  width: 100%;
  height: 100dvh;
  max-height: 100sdh; }

.home {
  display: flex;
  flex-direction: column;
  justify-content: space-between; }

header {
  padding: 1.5rem 2rem;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  font-size: clamp(1.2rem, 2vw, 3rem); }
  header > * {
    text-align: center;
    padding: .5rem 0; }
  @media (min-width: 576px) {
    header {
      flex-direction: row;
      justify-content: space-between; }
      header > * {
        text-align: inherit; } }

button {
  background-color: #B7312C;
  color: #ffffff;
  padding: 0.2rem 1rem;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: 10px;
  letter-spacing: 0.3rem;
  font-weight: 300;
  font-size: clamp(1.2rem, 2vw, 3rem); }
  button:hover {
    background-color: #962824; }

.logo img {
  width: 100%;
  height: auto; }
  @media (min-width: 576px) {
    .logo img {
      margin-bottom: 1rem; } }

.scrolldown {
  margin-bottom: 10dvh;
  text-align: center; }
  @media (min-width: 576px) {
    .scrolldown {
      display: none; } }

.scrolldown img {
  width: 30px;
  height: auto; }

.bg-taupe {
  background-color: #C5B9AC; }

.bg-red {
  background-color: #B7312C;
  color: #ffffff; }

.copy {
  font-size: clamp(1.3rem, 2.5vw, 5rem);
  line-height: 1.2em; }

.about {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between; }

footer {
  text-transform: uppercase;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
  margin-bottom: .5rem;
  font-size: clamp(0.9rem, 1.5vw, 2rem); }
  footer > * {
    margin-top: 1rem;
    display: flex; }
  @media (min-width: 576px) {
    footer {
      flex-direction: row;
      justify-content: space-between; } }

.custom-cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  background-color: #FF6110;
  transform: rotate(45deg);
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.08s linear; }
