* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  cursor: default;
}

body {
  background-image: url("assets/img/start-background.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100vh;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 160px;
}

.menuContainer {
  background-color: #7fbcf1eb;
  box-shadow:
    0 4px 8px 0 rgba(0, 0, 0, 0.6),
    0 6px 20px 0 rgba(142, 243, 245, 0.6);
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 60px;
  padding: 40px 64px;
  width: 100%;
  height: 100%;
  position: relative;
}

.navBtnContainer {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 40px;
}

h1 {
  color: white;
  text-shadow: 4px 2px black;
  font-size: 58px;
}

h3 {
  color: white;
  text-shadow: 2px 2px black;
  font-size: 32px;
  padding-bottom: 12px;
  padding-top: 24px;
}

ul {
  padding-left: 10%;
  color: rgb(254, 252, 255);
  font-size: 24px;
}

p {
  font-size: 24px;
  color: rgb(254, 252, 255);
}

button {
  height: 52px;
  width: 250px;
  border-radius: 25px;
  font-size: 24px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.6);
  color: #004080;
  background-color: #efefef;
  border: none;
}

button:hover {
  cursor: pointer;
  background-color: #2494f5;
  color: white;
}

img {
  width: 60%;
}

.lang-menu {
  position: absolute;
  top: 24px;
  right: 24px;
}

.burger-btn {
  object-fit: cover;
  width: 100%;
  height: 28px;
}

.burger-btn:hover {
  cursor: pointer;
  padding: 2px;
  border-radius: 50px;
  background: white;
}

.lang-dropdown {
  display: none;
  position: absolute;
  top: 5%;
  right: 0;
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  z-index: 10;
  min-width: 100px;
}

.lang {
  width: 100%;
  padding: 8px 12px;
  cursor: pointer;
  color: #2494f5;
}

.lang:hover {
  background: rgba(0, 0, 0, 0.05);
}

.lang-dropdown.active {
  display: block;
}

@media (max-width: 900px) {
  section {
    padding: 40px 40px;
  }

  h1 {
    font-size: 42px;
  }

  h3 {
    font-size: 24px;
  }

  p,
  ul {
    font-size: 18px;
  }

  button {
    width: 200px;
    font-size: 18px;
    height: 44px;
  }

  .menuContainer {
    gap: 40px;
    padding: 32px;
  }

  img {
    width: 50%;
  }
}

@media (max-width: 600px) {
  body {
    padding: 24px;
  }

  section {
    padding: 10px;
    width: auto;
  }

  .menuContainer {
    border-radius: 20px;
    padding: 20px;
    gap: 24px;
  }

  .navBtnContainer {
    gap: 20px;
  }

  h1 {
    font-size: 28px;
    text-align: center;
  }

  h3 {
    font-size: 18px;
    text-align: center;
  }

  p,
  ul {
    font-size: 16px;
  }

  button {
    width: 180px;
    height: 40px;
    font-size: 16px;
  }
}

@media (max-width: 500px) {
  img {
    width: 70%;
  }
}

@media (max-width: 400px) {
  img {
    width: 90%;
  }
}

@media (max-height: 500px) and (orientation: landscape) {
  body {
    padding: 24px;
  }

  section {
    padding: 12px;
  }

  .menuContainer {
    padding: 12px;
    gap: 32px;
    border-radius: 16px;
  }

  .navBtnContainer {
    gap: 16px;
  }

  h1 {
    font-size: 32px;
    text-align: center;
  }

  h3 {
    font-size: 24px;
    padding: 12px 0;
  }

  p,
  ul {
    font-size: 16px;
  }

  button {
    width: 140px;
    height: 34px;
    font-size: 16px;
  }

  img {
    width: 35%;
  }
}
