@font-face {
  font-family: "mersad";
  src: url("/vagabund/fonts/Mersad.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "DM Sans", sans-serif;
  background-color: #000;
  color: #fff;
  overflow: hidden;
}

img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

.hero h1 {
  text-transform: uppercase;
  font-size: clamp(1rem, 5vw + 1rem, 10rem);
  font-family: de-fonte;
  letter-spacing: 2px;
  font-weight: 250;
}

p,
a {
  color: #fff;
  text-decoration: none;
  font-size: clamp(1rem, 0.5vw + 1rem, 10rem);
  font-weight: 100;
  line-height: 1;
  display: inline-block;
  padding-left: 50px;
}

nav,
footer {
  position: fixed;
  width: 100%;
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}

nav .logo {
  width: 15%;
  max-width: 150px;
}

nav .nav-links {
  display: flex;
  gap: 0.75rem;
}

.nav-links a {
  display: flex;
  align-items: center;
}
.nav-links a svg {
  width: 3rem;
  height: 3rem;
  align-self: center;
  justify-self: center;
}

footer {
  bottom: 0;
}

.carousel {
  position: relative;
  width: 100%;
  height: 100svh;
  overflow: hidden;
}

.carousel-images,
.carousel-images .img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.carousel-images .img {
  will-change: clip-path, transform;
}

.carousel-images {
  opacity: 0.85;
}

.slide-title-container {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.slide-title-container .title {
  position: relative;
  text-align: center;
  filter: url(#blur-matrix) blur(0.25px);
  -webkit-filter: url(#blur-matrix) blur(0.25px);
  z-index: 2;
  font-family: de-fonte;
  font-size: clamp(3rem, 5vw + 1rem, 10rem);
  font-weight: 300;
}

.slide-title-container .title .word {
  filter: blur(75px);
  -webkit-filter: blur(75px);
  will-change: filter, opacity;
  opacity: 0;
}

.slider-controls {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  z-index: 10;
}

.control-btn {
  padding: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: 0.075rem dashed rgba(255, 255, 255, 0.75);
  border-radius: 0.25rem;
  cursor: pointer;
  transition: all 200ms ease-in-out;
  border: none;
}

.control-btn img {
  width: 10rem;
  height: 10rem;
  stroke: #000;
  transition: fill 200ms ease-in-out;
}



