html {
  scroll-behavior: smooth;
}

/* ---------------------------------------------------------- */

body, ul {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'AGForeignerBoldItalic';
  color: #fff;
  overflow-x: hidden;
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  /* background-color: rgba(104, 104, 104, 0.85); */
  backdrop-filter: blur(10px);
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  box-sizing: border-box;
  z-index: 1;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  width: auto;
  display: block;
}

.nav {
  position: relative;
  right: 0;
  overflow: visible;
}

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

.nav li {
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.nav li:hover {
  color: #ff0000;
}

.banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.banner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-overlay {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.cover {
  position: relative;
  padding: 150px 80px;
  min-height: 100vh;
}

.cover h1 {
  font-size: 60px;
}

.cover p {
  font-size: 20px;
}

.content {
  position: relative;
  height: 3000px;
  width: 100%;
  background-color: #fff;
  color: black;
}

.footer {
  position: relative;
  background-color: #fff;
  color: black;
}



/* --------------------------------------------------------- */


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


@font-face {
  font-family: 'AGForeignerBoldItalicMedium';
  src: url('/fonts/AGForeignerBoldItalicMedium.ttf');
}
  
.menu-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.menu-spacer {
  height: 40px;
}

.menu-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 20px 20px;
}

.menu-card {
  position: relative;
  height: 470px;
  width: 310px;
  overflow: hidden;
  display: block;
  text-decoration: none;
}

.menu-card-large {
  position: relative;
  height: 670px;
  width: 510px;
  overflow: hidden;
  display: block;
  text-decoration: none;
}

.menu-poster {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 100%;
  width: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.menu-poster-large {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 100%;
  width: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.menu-poster-cover {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #00000040;
  /* backdrop-filter: blur(2px);  */
}

.menu-text-container {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.menu-text {
  font-family: 'AGForeignerBoldItalic';
  color: #ffffff;
  text-shadow: 2px 2px #000000ff;
  font-size: 50px;
  font-weight: bold;
  text-wrap: wrap;
  line-height: 1;
}

.menu-card:hover .menu-text,
.menu-card-large:hover .menu-text {
  color: #ff0000;
}

.wrld {
  font-family: 'AGForeignerBoldItalic';
  text-align: center;
  font-size: 60px;
  line-height: 1.4;
}

@media only screen and (max-width: 1300px) {
  .menu-container {
    flex-wrap: wrap;
  }
  .wrld {
    font-size: 30px !important;
  }
  .menu-card {
    height: 500px !important;
    width: 400px !important;
  }
  .menu-card-large {
    height: 500px !important;
    width: 400px !important;
  }
}
