* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Open Sans', sans-serif;
  background-color: #DAD7CD;
}

/* Navigation */
.nav-bar {
  background-color: #A3B18A;
  color: #344E41;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-links li {
  display: inline;
}

.nav-links a {
  color: #344E41;
  text-decoration: none;
  font-size: 1.2em;
}

.burger-menu {
  display: none;
  font-size: 2em;
  cursor: pointer;
  color: #344E41;
}

.mobile-nav {
  display: none;
  list-style: none;
  position: absolute;
  top: 60px;
  right: 10px;
  background-color: #A3B18A;
  padding: 10px;
  border-radius: 5px;
}

.mobile-nav li {
  margin: 10px 0;
}

.mobile-nav a {
  color: #344E41;
  text-decoration: none;
  font-size: 1.2em;
}

.show {
  display: block;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .burger-menu {
    display: block;
    z-index: 9999;
  }
}

/* Slideshow */
.slideshow-container {
  max-width: 100%;
  position: relative;
  margin: auto;
  z-index: -1;
  padding-top: 0;
}

.mySlides img {
  width: 100%;
  height: 80vh;
  display: block;
}

.mySlides {
  display: none;
}

img {
  vertical-align: middle;
  width: 100%;
}

.text {
  color: #344E41;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

.numbertext {
  color: #344E41;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

.dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #A3B18A;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active {
  background-color: #588157;
}

.logo {
  display: block;
  width: 3vw;
}

.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {
    opacity: .8
  }

  to {
    opacity: 1
  }
}

/* Grid Layout */
.container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 10px;
  width: 100%;
  margin: auto;
  margin-top: 20px;
  height: 50vh;
}

.item {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #A3B18A;
  border: 1px solid #344E41;
  font-size: 1.5em;
  font-weight: bold;
  text-align: center;
  padding: 20px;
  color: #344E41;
  font-size: 40px;
  border-radius: 5px;
}

.mobil {
  grid-column: span 2;
  grid-row: span 1;
  background-color: #A3B18A;
}

.mobil:hover {
  cursor: pointer;
}

.all-inclusive {
  grid-column: span 2;
  grid-row: span 2;
  background-color: #A3B18A;
}

.all-inclusive:hover {
  cursor: pointer;
}

.fernseher {
  grid-column: span 1;
  grid-row: span 1;
  background-color: #A3B18A;
}

.fernseher:hover {
  cursor: pointer;
}

.internet {
  grid-column: span 1;
  grid-row: span 1;
  background-color: #A3B18A;
}

.internet:hover {
  cursor: pointer;
}

.text-field {
  background-color: #f9f9f9;
  padding: 20px;
  text-align: center;
  margin: 20px auto;
  border: 1px solid #A3B18A;
  border-radius: 5px;
  font-size: 1.2em;
  width: 90%;
}