@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500&display=swap');

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #10141c;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
}

/* NAVIGATION */

.navbar {
  position: fixed;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 24px;
  z-index: 100;
}

.navbar a {
  color: #d6d9df;
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 3px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  transition: all 0.25s ease;
}

.navbar a:hover {
  color: #ffffff;
  border-color: rgba(215, 25, 32, 0.5);
  background: rgba(215, 25, 32, 0.12);
  transform: translateY(-2px);
}

.navbar a.active {
  color: #ffffff;
  border-color: rgba(215, 25, 32, 0.45);
  background: rgba(215, 25, 32, 0.12);
}

/* HERO */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 20px 40px;
}

.logo {
  width: 500px;
  max-width: 80%;
  margin-bottom: -70px;
}

.wordmark {
  width: 500px;
  max-width: 90%;
  margin-bottom: 32px;
  animation: sway 8s ease-in-out infinite;
}

/* COLLECTION */

.collection {
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 180px;
  padding-left: 12vw;
  padding-right: 20px;
}

.collection-logo {
  width: 340px;
  max-width: 70%;
  opacity: 0.95;
}

/* ANIMATION */

@keyframes sway {
  0% {
    transform: rotate(-2deg);
  }

  50% {
    transform: rotate(2deg);
  }

  100% {
    transform: rotate(-2deg);
  }
}

/* MOBILE */

@media (max-width: 600px) {

  .navbar {
    top: 24px;
    gap: 10px;
  }

  .navbar a {
    font-size: 9px;
    letter-spacing: 2px;
    padding: 8px 10px;
  }

  .logo {
    width: 320px;
    margin-bottom: -40px;
  }

  .wordmark {
    width: 320px;
  }

  .collection {
    padding-top: 160px;
    padding-left: 8vw;
  }

  .collection-logo {
    width: 260px;
    max-width: 80%;
  }
}