.main-header {
  height: 48rem;
}

@keyframes slide-in-left {
  0% {
    transform: translateX(-10%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slide-in-right {
  0% {
    transform: translateX(10%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes appear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 48rem;
  object-fit: cover;
  z-index: -1;
}

.hero {
  position: relative;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.hero-content {
  width: 80%;
  max-width: 56.25rem;
  background-color: rgb(51, 47, 47, 0.8);
  box-shadow: 2px 4px 8px #434343;
  border-radius: 0.5rem;
  text-align: center;
  padding: 3rem 0.625rem;
  margin: 0 auto;
}

.hero-content h1 {
  color: var(--color-white);
  text-transform: uppercase;
  font-size: 3rem;
  font-family: helvetica, sans-serif;
  margin: 0;
  animation: slide-in-left 2s ease-in-out;
}

.hero-content p {
  color: var(--color-white);
  text-transform: uppercase;
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 2rem;
  animation: slide-in-right 2s ease-in-out;
}

.hero-content .btn {
  animation: appear 2s ease;
}
.highlights {
  display: block;
  padding: 1.5rem 0;
  background: linear-gradient(0deg, #cff8cc, #cfffdd);
}

.highlights h2 {
  text-transform: uppercase;
  text-align: center;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.875rem;
  color: var(--color-black);
  margin: 1.5rem 0;
}

.destination-container {
  display: flex;
  width: 90%;
  margin: 1.5rem auto 2.5rem auto;
}

.destination {
  padding: 1.25rem 0;
  width: 100%;
  margin: 0 1.25rem;
}

.destination p {
  text-align: center;
  text-transform: uppercase;
  font-size: 1.5rem;
  color: var(--color-black);
  width: fit-content;
  margin: 1rem auto;
  cursor: pointer;
  transition: all 0.5s ease;
}
.destination a {
  text-decoration: none;
  cursor: inherit;
}
.destination p:hover {
  color: var(--color-skyblue);
}
.destination img {
  width: 100%;
  height: 12.5rem;
  box-shadow: 2px 4px 10px #434343;
  border-radius: 0.5rem;
  object-fit: cover;
  cursor: pointer;
  transition: all 0.3s ease;
}

.destination img:hover {
  transform: translateY(7px);
}

.cuisine {
  padding: 1.5rem;
  overflow: hidden;
  position: relative;
}

.cuisine p {
  color: var(--color-black);
  font-size: 1.5rem;
  padding: 0 3rem;
  font-weight: 600;
  text-transform: uppercase;
}

.cuisine h1 {
  color: var(--color-black);
  font-size: 2.25rem;
  padding: 0 3rem;
  text-transform: uppercase;
}

.cuisine-bg {
  opacity: 0.6;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: auto;
}

.cuisine-content {
  position: relative;
}

@media (max-width: 67.5rem) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .hero-content p {
    font-size: 1.25rem;
  }
}

@media (max-width: 48rem) {
  .main-header {
    width: 100%;
    height: 100vh;
  }

  .hero {
    top: 40%;
  }

  .hero-bg {
    height: 100%;
  }

  .highlights h2 {
    font-size: 1.75rem;
  }

  .highlights p {
    font-size: 1.25rem;
  }

  .destination-container {
    flex-direction: column;
  }

  .destination {
    padding: 0.625rem 0;
    margin: 0;
  }

  .destination a {
    line-height: 1.25rem;
  }

  .hero-content h1 {
    font-size: 1.875rem;
  }

  .hero-content p {
    font-size: 1.25rem;
  }

  .cuisine {
    padding: 0.5rem;
    margin: 0;
  }

  .cuisine h1 {
    margin-top: 0.125rem;
    font-size: 1.5rem;
    padding: 0 0.5rem;
  }

  .cuisine p {
    font-size: 1.25rem;
    padding: 0 0.5rem;
  }

  .cuisine-content p {
    width: 100%;
    height: auto;
  }
}
