@font-face {
  font-family: 'Outfit';
  src: url('./assets/fonts/outfit-300.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Outfit';
  src: url('./assets/fonts/outfit-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Outfit';
  src: url('./assets/fonts/outfit-900.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Special Elite';
  src: url('./assets/fonts/special-elite-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: only light;

  --color-bg: #fff;
  --color-paper: #dca;
  --color-sand: #a98;
  --color-sand-button: rgba(170, 152, 136, 0.35);
  --color-sand-dim: rgba(170, 152, 136, 0.1);
  --color-text: #333;
  --color-text-dim: rgba(51, 51, 51, 0.5);
  --color-danger: #a66;
  --color-win: #687;
  --color-gold: #c9a66d;

  --font-modern: 'Outfit', sans-serif;
  --font-typewriter: 'Special Elite', serif;

  --font-size-xs: 12px;
  --font-size-sm: 14px;
  --font-size-md: 16px;
  --font-size-lg: 18px;
  --font-size-xl: 38px;
  --font-size-xxl: 56px;

  --line-height-sm: 20px;
  --line-height-md: 20px;
  --line-height-lg: 25px;
  --line-height-xl: 40px;
  --line-height-xxl: 50px;

  --insanity-intensity: 0;
  --vignette-opacity: 0;

  --gap-xs: 5px;
  --gap-sm: 10px;
  --gap-md: 20px;
  --gap-lg: 40px;

  --dur-fast: 0.2s;
  --dur-transition: 0.5s;
  --dur-slow: 1s;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

:focus {
  outline: none;
}

::-webkit-scrollbar {
  width: 2px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--color-sand);
}

body {
  background-color: var(--bg-color);
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('./assets/images/the-last-path-bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: -1;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-modern);
  font-style: normal;
  font-weight: 500;
  color: var(--color-text);
}

h1 {
  font-size: var(--font-size-xl);
  line-height: var(--line-height-xl);
  text-transform: uppercase;
}

h2,
h3 {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-lg);
}

p {
  font-family: var(--font-modern);
  font-style: normal;
  font-weight: 300;
  font-size: var(--font-size-md);
  line-height: var(--line-height-md);
  color: var(--color-text);
}

a {
  color: var(--color-text);
  display: inline-block;
}

a::after {
  text-decoration: none;
}

img {
  display: block;
}

ul,
ol {
  list-style: none;
}

strong {
  font-weight: 500;
}

.headline {
  font-family: var(--font-modern);
  font-size: var(--font-size-xxl);
  line-height: var(--line-height-xxl);
  text-transform: uppercase;
  font-weight: 700;
}

.tagline {
  font-family: var(--font-typewriter);
  font-size: var(--font-size-lg);
  line-height: var(--line-height-lg);
}

.container {
  padding: 40px;
  min-height: 100dvh;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--gap-lg);
}

.logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-items: center;
  gap: var(--gap-sm);
}

.logo-container::after {
  margin-top: 30px;
  width: 100%;
  height: 2px;
  content: '';
  background-image: url('./assets/images/btn-line.webp');
  background-size: 100% 2px;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
}

.logo-icon {
  max-width: 50px;
  height: auto;
}

.logo {
  max-width: 300px;
  height: auto;
}

.info-container {
  display: flex;
  flex-direction: column;
  gap: var(--gap-xs);
}

.info-container img {
  margin: 0 auto;
  width: 100%;
  height: 60px;
  object-fit: contain;
  display: block;
}

.gallery {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--gap-md);
}

.gallery img {
  width: 400px;
  height: auto;
  object-fit: contain;
  display: block;
}

.gallery img:first-of-type {
  margin-right: -140px;
  width: 320px;
  z-index: -1;
}

.gallery img:last-of-type {
  margin-left: -140px;
  width: 320px;
  z-index: -1;
}

footer {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--gap-sm);
}

footer::before {
  margin-bottom: 30px;
  width: 100%;
  height: 2px;
  content: '';
  background-image: url('./assets/images/btn-line.webp');
  background-size: 50% 2px;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
}

footer ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--gap-md);
}

.privacy-container {
  padding: 40px;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--gap-lg);
}

.privacy-content {
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: var(--gap-md);
}

.privacy-content ul {
  padding-left: 20px;
  list-style: disc;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 767px) {
  :root {
    --font-size-xl: 24px;
    --font-size-xxl: 34px;

    --line-height-xl: 20px;
    --line-height-xxl: 30px;
  }

  .logo {
    max-width: 250px;
  }

  .container {
    padding: 20px;
    gap: var(--gap-md);
  }

  .logo-container::after {
    margin-top: 10px;
  }

  .privacy-container {
    padding: 20px;
    gap: var(--gap-md);
  }

  .gallery img {
    width: 220px;
  }

  .gallery img:first-of-type {
    width: 180px;
  }

  .gallery img:last-of-type {
    width: 180px;
  }

  footer::before {
    margin-bottom: 10px;
  }

  footer ul {
    flex-direction: column;
    gap: var(--gap-xs);
  }
}
