@font-face {
  font-family: Arboria-Book;
  src: url(fonts/Arboria-Book/Arboria-Book.ttf);
}

@font-face {
  font-family: Magnat;
  src: url(fonts/Magnat/NeueMagnatTest-Regular-BF63e99ffa8a6c3.otf);
}

body,
html {
  height: 100%;
  margin: 0;
  color: #1e1e1e;
  position: relative;
  overflow-x: hidden;
  background: linear-gradient(360deg,#fffbf1 0%,rgba(255, 251, 241, 0) 47.11%,#fffbf1 94.23%);
}
.row {
  width: 50%;
  gap: 56px;
}

.vector-icon {
  position: absolute;
  left: 54%;
  transform: translate(-46%, 0);
}

.bg-video {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 100vw;
  min-height: 100vh;
  object-fit: cover;
  z-index: -1;
}

/* Top menu bar */
.contain-menu {
  position: absolute;
  right: 24px;
  top: 24px;
  gap: 10px;
}
.contain {
  margin-top: 125px;
  gap: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.menu {
  font-family: Arboria-Book;
  font-weight: 400;
  font-size: 15px;
  line-height: 16px;
  letter-spacing: 4px;
  text-align: center;
  text-transform: uppercase;
  color: #747474;
}

.menu-icon {
  width: 32px;
  height: 32px;
}

.logo-container {
  gap: 40px;
}

/* Main logo */
.main-logo {
  width: 80px;
  height: auto;
}

/* Headline */
.landing-title {
  font-family: Magnat;
  font-weight: 400;
  font-size: 40px;
  line-height: 100%;
  text-align: center;
  color: #02212c;
}

/* Location info */
.location-title {
  font-family: Magnat;
  font-weight: 400;
  font-size: 24px;
  line-height: 100%;
  text-align: center;
  color: #02212c;
}

.location-sub {
  font-family: Arboria-Book;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 1px;
  text-align: center;
  color: #747474;
}

/* Social icons */
.social-icons .icon {
  width: 28px;
  margin: 0 8px;
}
.social-icons a {
  text-decoration: none;
}

/* Divider */
.divider {
  border-left: 1px solid rgba(0, 0, 0, 0.3);
  height: 80px;
}

/* Content wrapper for spacing */
.content-wrapper {
  margin-top: 10vh;
  position: relative;
  z-index: 1;
}

@media (max-width: 530px) {
  .row {
    width: 100%;
  }
  .bg-video{
    top: -200px;
  }
}

/* MENU */
.side-menu {
  position: fixed;
  top: 0;
  right: -100%;
  height: 100%;
  width: 340px;
  background-color: #065671;
  color: white;
  z-index: 1000;
  transition: right 0.3s ease-in-out;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  border-top-left-radius: 48px;
  border-bottom-left-radius: 48px;
  overflow-y: scroll;
}

.side-menu.active {
  right: 0;
}

.menu-header {
  font-family: Arboria-Book;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 4px;
  text-align: center;
  text-transform: uppercase;
}

.close-btn {
  cursor: pointer;
  letter-spacing: 2px;
}

.close-icon {
  width: 32px;
  height: 32px;
  cursor: pointer;
}

.menu-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.menu-location {
  text-align: right;
}

.menu-location h4 {
  font-family: Magnat;
  font-weight: 400;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: right;
  color: #FFFFFF;
  opacity: 50%;

}

.menu-location a {
  font-family: Arboria-Book;
  font-size: 14px;
  text-decoration: none;
  color: #ffffff;
  line-height: 1.5;
}

.menu-location p {
  font-family: Arboria-Book;
  font-size: 14px;
  color: #ffffff;
  line-height: 1.5;
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.3);
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
}

.menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
