* {
  box-sizing: border-box;
}

.hidden {
  visibility: visible;
}

@font-face {
    font-family: "MetropolisBold";
    src: url("../fonts/ClarityCity-Bold.woff");
}
@font-face {
    font-family: "MetropolisRegular";
    src: url("../fonts/ClarityCity-Regular.woff");
}
@font-face {
    font-family: "MetropolisLight";
    src: url("../fonts/ClarityCity-Light.woff") ;
}

body {
  margin: 0;
  background: #000;
}

/* Hidden Items */

.main-container nav .menu-button,
.mobile-menu-items {
  display: none;
}

.main-container {
  font-family: "MetropolisBold", sans-serif;
  height: 100vh;
  width: 100%;
  max-width: 1000px;
  display: flex;
  align-items: center;
  margin: 0 auto;
  padding: 32px;
  color: #fff;
  z-index: 2;
  background: #000;
  transition: all 400ms ease;

  position: relative;
}

.main-container video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: flex;
  z-index: 0;
}

.main-container .bg-overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background: #000;
  opacity: 0.5;
}

.main-container nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  max-width: 1000px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding: 24px 32px;

  opacity: 0;

  animation: fadeIn 1000ms ease-in-out forwards;
  animation-delay: 1000ms;
}

.main-container nav .logo a {
  text-decoration: none;
  color: transparent;
  font-size: 24px;
}

.main-container nav ul {
  display: flex;
  gap: 40px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.main-container nav ul a {
  text-decoration: none;
  color: #fff;
  font-size: 15px;
  text-transform: uppercase;
  position: relative;
}

.main-container nav ul a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 1px;
  background: #fff;
  transition: all 400ms ease;
}

.main-container nav ul a:hover::after {
  width: 100%;
}

.main-container .hero-section {
  position: relative;
  z-index: 2;
}

h1 {
  font-weight: 100;
}
.main-container .hero-section h1 {
  font-family: "MetropolisBold", sans-serif;
  font-size: 52pt;
  margin: 0;
  transform: translateY(15px);
  opacity: 0;
  color: #FFB81C;
  font-weight: 100 !important;

  animation: fadeIn 1000ms ease-in-out forwards;
}

.light {
	font-family: "MetropolisLight", Roboto;
	color: #C1C6C8;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.main-container .hero-section p {
  font-size: 20px;
  margin-top: 8px;
  transform: translateY(15px);
  opacity: 0;
	font-family: "MetropolisRegular", sans-serif;
  animation: fadeIn 1000ms ease-in-out forwards;
  animation-delay: 400ms;
}

.main-container .hero-section a.btn {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  background: #FFB81C;
  padding: 10px 32px;
  border-radius: 15px;
  font-size: 16px;
  text-transform: uppercase;
  transition: all 400ms ease;

  opacity: 0;

  animation: fadeIn 1000ms ease-in-out forwards;
  animation-delay: 1000ms;
}

.main-container .hero-section a.btn:hover {
  background: #C1C6C8;
  color: #041E42;
}

.main-container .social {
  position: absolute;
  bottom: 60px;
  left: 0;
  padding: 32px;

  opacity: 0;

  animation: fadeIn 500ms ease-in-out forwards;
  animation-delay: 2000ms;
}

.main-container .social a {
  text-decoration: none;
  color: #fff;
  font-size: 30px;
  margin: 0 16px;
}

.main-container .social a:first-child {
  margin-left: 0;
}

@media (max-width: 950px) {

  
  .main-container nav .menu-items {
    display: none;
  }
  .hidden {
    visibility: hidden;
  }

  .main-container {
    max-width: 400px;
  }

  .content {
    max-width: 330px;
    margin-bottom: 72px;
  }
  .main-container nav .menu-button {
    display: block;
    width: 30px;
    height: 30px;
    transition: all 400ms ease;
  }

  .main-container .hero-section h1 {
    font-size: 32pt;
  }

  .main-container .hero-section p {
    font-size: 9pt;
    margin-top: 0px;
  }

  .main-container .hero-section a.btn {
    font-size: 14px;
  }

  .main-container.active {
    transform: translateX(-190px) rotateZ(-4deg) scale(1.1);
  }

  .main-container.active nav .menu-button {
    opacity: 0;
  }

  .mobile-menu-items {
    position: fixed;
    display: flex;
    align-items: center;
    height: 100vh;
    width: 190px;
    right: 0;
    top: 0;
    background: #131212;
  }

  .mobile-menu-items ul {
    list-style: none;
    padding-left: 60px;
  }

  .mobile-menu-items ul a {
    text-decoration: none;
    color: #fff;
    font-family: "Roboto", sans-serif;
    font-size: 20px;
    margin: 16px 0;
    display: inline-block;
  }

  .mobile-menu-items .close-button {
    position: fixed;
    width: 32px;
    height: 32px;
    top: 24px;
    right: 32px;
    color: #fff;
  }
}

.scroll-content {
  position: absolute;
  top: 100vh;
}

.content {
  /* border: 1px solid #FFB81C; */
  border-radius: 15px;
  padding: 35px;
  background: rgb(0,0,0, 0.7);
  color: #C1C6C8;
  margin: 0px auto 72px auto;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  box-shadow: 0 10px 15px rgba(255, 184, 28, 0.2);
}

.content h1 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #FFB81C;
}

.logo-font {
   font-family: "MetropolisBold", sans-serif;
}

.trademark {
  font-size: 9pt;
  font-family: sans-serif;
}

.gold {
  text-decoration: none;
  color: #FFB81C;
}

#main-nav {
  top: 0;
  z-index: 1000;

  background: #111;
  color: #fff;

  transition: transform 0.3s ease-in-out;
}

/* Hidden state */
#main-nav.nav-hidden {
  transform: translateY(-100%);
}

#main-nav ul {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  margin: 0;
  list-style: none;
}

