* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  background-color: white;
}

header {
  width: 100%;
}

.overflow-y-hidden {
  overflow-y: hidden;
}

.container {
  max-width: 1430px !important;
  margin: 0 auto;
  padding: 7px 2em 0;
  display: flex;
}

.menu-btn {
  display: none;
  flex-direction: column;
  gap: 4px;
  position: absolute;
  right: 24px;
  top: 28px;
  background-color: rgb(0, 0, 0);
  border-radius: 4px;
  padding: 0.3rem;
  z-index: 999;
}

.menu-btn div {
  width: 22px;
  height: 3px;
  background-color: white;
}
.left.menu {
  display: flex;
  flex-grow: 1;
  height: 100%;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  margin-left: 0;
  margin-right: 15px;
  max-width: 91%;
  z-index: 2;
}

.right.menu {
  display: flex;
  margin-left: auto !important;
  z-index: 2;
}

h1 {
  color: white;
  font-weight: 700;
  font-size: 16px;
  margin: 0;
}

h2 {
  color: rgb(179, 179, 179);
  font-size: 16px;
  font-weight: 500;
  margin-top: 20px;
}

h3 {
  color: black;
  font-size: 40px;
  font-weight: 1000;
  margin-top: 20px;
  margin-bottom: 40px;
}

h4 {
  color: white;
  font-weight: 700;
  font-size: 40px;
  margin-bottom: 4px;
  margin-top: 0;
}

h5 {
  color: rgb(56, 56, 56);
  font-size: 14px;
  font-weight: 300;
  margin-top: 0px;
}

h6 {
  color: black;
  font-size: 20px;
  font-weight: 800;
  margin-top: 40px;
  margin-bottom: 20px;
}

p {
  color: rgb(134, 134, 134);
  font-size: 16px;
  font-weight: 300;
  margin-top: 0px;
  letter-spacing: 1.5;
  line-height: 1.5;
}

nav {
  display: flex;
  justify-content: center;
}

nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  align-items: center;
}

nav li {
  margin-left: 30px;
}

nav a {
  text-decoration: none;
  color: white;
  font-size: 18px;
  font-weight: 300;
}
nav ul li a {
  position: relative;
}

nav ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background-color: #4279df;
  transition: width 0.3s ease-in-out;
}

nav ul li a:hover::before {
  width: 100%;
}

.lang-switcher {
  display: flex;
  align-items: center;
  margin-left: 20px;
  gap: 4px;
}

.lang-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  color: white;
  cursor: pointer;
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 4px 8px;
  transition: background 0.2s, border-color 0.2s;
}

.lang-btn:hover,
.lang-btn.active {
  background: rgba(255, 255, 255, 0.25);
  border-color: white;
}

.booking {
  margin-left: 40px;
  display: flex;
  list-style: none;
  padding: 15px 5px 15px 5px;
}

.booking a {
  background-color: #4279df;
  border-radius: 25px;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: white;
  padding: 10px 20px;
  font-size: 18px;
  font-weight: 300;
}

.footer {
  background-color: rgb(46, 46, 46);
  height: 150px;
  align-items: center;
  justify-content: center;
  display: flex;
}

.legal {
  width: 400px;
}

.legal p {
  font-size: 12px;
  color: white;
  text-align: center;
}

.map-container iframe {
  max-width: 100%;
}

@media screen and (max-width: 1120px) {
  h4 {
    font-size: 28px;
  }
  h1 {
    font-size: 14px;
  }
}

@media screen and (max-width: 920px) {
  .menu-btn {
    display: flex;
  }

  .right.menu {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    height: 100%;
    flex-direction: column;
    background-color: white;
    transform: translateX(-100%);
    transition: transform 250ms;
  }
  .right.menu.active {
    transform: translateX(0);
  }
  .right.menu nav {
    flex-grow: 1;
  }
  .right.menu nav ul {
    flex-direction: column;
    justify-content: space-evenly;
  }
  .right.menu nav li {
    margin: 0;
  }
  .booking {
    margin-left: 20px;
    margin-right: 20px;
  }
  .lang-switcher {
    justify-content: center;
    margin: 8px 20px;
  }
  .lang-btn {
    color: black;
    border-color: rgba(0, 0, 0, 0.3);
  }
  .lang-btn:hover,
  .lang-btn.active {
    background: rgba(0, 0, 0, 0.08);
    border-color: black;
  }
  .right.menu nav ul a {
    color: black;
  }
  .left.menu {
    text-align: center;
    justify-content: center;
    margin: auto;
    padding-top: 1.4rem;
    max-width: 100%;
    flex-grow: unset;
  }
  header {
    background-size: cover;
    background-position: right;
  }
}

@media screen and (max-width: 460px) {
  .menu-btn {
    right: 2px;
  }
}
