html {
  scroll-behavior: smooth;
}

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

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

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

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

a {
  color: inherit;
  /* text-decoration: none; */
}

.accommodation-info {
  color:#ffffffb5
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  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: 40px 80px;
  min-height: 75vh;
}

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

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

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

.content-spacer {
  height: 600px;
}

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

#countdown {
  text-transform: uppercase;
  color: #ff0000;
}

.wrld {
  font-family: 'AGForeignerBoldItalic';
  text-align: center;
  font-size: 33px;
  line-height: 1.4;
  width: 100%;
}

/* -------------------------------------------------------------------------------- */
.menu-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.menu-spacer {
  height: 40px;
}

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

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

.menu-card:hover {
  box-shadow: 0 0 0 2px #BB2E33, 0 0 10px 2px #BB2E33;
}

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

.menu-card:hover .menu-poster {
  /* height: 110%;
  width: auto; */
  transform: translate(-50%, -50%) scale(1.1);
}

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

.menu-card:hover .menu-poster-cover {
  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: 33px;
  font-weight: bold;
  text-wrap: wrap;
  line-height: 1;
  transition: color 0.3s ease;
}

.menu-card:hover .menu-text {
  color: #d00000;
}
/* -------------------------------------------------------------------------------- */

@media only screen and (max-width: 1700px) {
  .menu-container {
    flex-wrap: wrap;
  }
}

@media only screen and (max-width: 1300px) {
  .content-spacer {
    height: 300px;
  }
  .wrld {
    font-size: 25px !important;
    width: 330px;
  }
  .menu-container {
    flex-wrap: wrap;
  }
  .menu-card {
    height: 200px;
    width: 400px;
  }
  .menu-poster {
    height: auto;
    width: 100%;
  }
  .menu-container {
    gap: 15px;
  }
}
