@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Amatic+SC&display=swap");

* {
  box-sizing: border-box;
  user-select: none;
}

a {
  color: #fff;
  text-decoration: none;
}

body {
  margin: 0;
  padding: 0;
  height: 100vh;
  color: white;
  background: black;
  font-family: "", "Cormorant Garamond", serif;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(1rem, 5vw, 5rem);
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.5em;
  margin-right: -0.5em;
  color: #cccccc;
  width: 90vw;
  max-width: 1200px;
}

header {
  position: fixed;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0 5%;
  margin-top: 3em;
  width: 100%;
  z-index: 3;
  height: 7em;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1rem, 2vw, 1.3rem);
  letter-spacing: 0.5em;
}

header div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.5em;
}

footer {
  position: fixed;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  width: 100%;
  z-index: 3;
  height: 7em;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(0.66rem, 2vw, 1rem);
  letter-spacing: 0.3em;
}

footer .disclaimer a {
  font-size: 0.8em;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.15em;
}

section {
  height: 100%;
  width: 100%;
  top: 0;
  position: fixed;
  visibility: hidden;
}

section .outer,
section .inner {
  width: 100%;
  height: 100%;
  overflow-y: hidden;
}

section .bg {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  background-size: cover;
  background-position: center;
}

section .bg h2 {
  z-index: 2;
}

section .bg .semi {
  font-family: "Poppins", sans-serif;
  width: clamp(10vw, 60vw, 100vw);
  border-radius: 10px;
  padding: 10px calc(10px + 1em);
  background: var(--semiBackground);
  color: var(--semiColor);
  text-align: justify;
}

section .bg .clip-text {
  overflow: hidden;
}

.fa-brands {
  font-family: "Font Awesome 5 Brands";
  font-style: normal;
  font-weight: 900;
}

.fa-free {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
}

.first .bg {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%), url('images/Honker002m.jpg?w=1920');
}

.second .bg {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%), url('images/Honker003m.jpg?w=1920');
}

.third .bg {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%), url('images/Honker005m.jpg?w=1920');
}

.fourth .bg {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%), url('images/Honker008m.jpg?w=1920');
}

.fifth .bg {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%), url('images/Honker006m.jpg?w=1920');
  background-position: 50% 45%;
}

h2 * {
  will-change: transform;
}

.wrapper {
  height: 20%;
  width: 80%;
  background: var(--semiBackground);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 1rem;
}

.wrapper-controls {
  width: 80%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.5rem;
}

.wrapper-controls button {
  padding: 0.5rem 1rem 0.5rem 1rem;
  border: none;
  background: var(--semiBackground);
  color: var(--semiColor);
  text-transform: uppercase;
  font-weight: bold;
  cursor: pointer;
}

.box {
  --slides: 3;
  --gap: 20px;
  --gaps: calc((var(--slides) - 1) * var(--gap));
  width: calc((100% - (var(--gaps))) / var(--slides));
  margin-right: var(--gap);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--semiBackground);
  height: 80%;
  padding: 0;
  position: relative;
  flex-shrink: 0;
  color: black;
  font-size: 21px;
  cursor: pointer;
}

.box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

:root {
  --semiBackground: rgba(0, 0, 0, 0.4);
  --semiColor: rgba(255, 255, 255, 0.8);
}