.content-wrapper {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  padding: 20px;
  color: white;
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.welcome {
  display: flex;
  flex-direction: column;
  height: 100vh;
  width: 100%;
  padding: 1rem 1rem 0 1rem;
  gap: 5rem;
  align-self: center;
  align-items: center;
  justify-content: flex-start;
}

.title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.logo {
  height: 300px;
  width: 300px;
  border: solid 2px black;
  border-radius: 50%;
}

.description {
  text-align: center;
  font-size: 40px;
}

.menu {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.menu-item {
  font-size: 32px;
  text-align: center;
  padding: 1rem 5rem;
  border: solid 2px white;
  border-radius: 12px;
  text-decoration: none;
  color: white;
  transition: background-color 0.3s ease;
}

.menu-item:hover {
  opacity: 60%;
  cursor: pointer;
}

.content {
  margin-top: 2rem;
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.rooms-section {
  display: flex;
  flex-direction: column;
  width: 80%;
  gap: 3rem;
  padding-top: 3rem;
  text-align: center;
}

.rooms-images {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.image {
  width: 70%;
  align-self: center;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.house-section {
  display: flex;
  flex-direction: column;
  width: 80%;
  padding: 3rem;
  text-align: center;
  margin-top: 3rem;
}

.house-content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding-top: 3rem;
}

.house-description {
  flex: 1;
  padding: 2rem;
  min-width: 300px;
  font-size: 32px;
}

.house-image {
  flex: 1;
  min-width: 300px;
}

.section-header {
  font-size: 48px;
}

.location {
  display: flex;
  flex-direction: column;
  width: 80%;
  gap: 1rem;
  padding-top: 2rem;
  min-height: 100vh;
  text-align: center;

  iframe {
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  }
}

.footer {
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  justify-items: center;
}

@media screen and (max-width: 1100px) {
  .gallery {
    width: 75%;
  }

  .header {
    width: 80%;
  }
}

@media screen and (max-width: 900px) {
  .gallery {
    width: 80%;
  }

  .header {
    width: 85%;
  }
}

@media screen and (max-width: 500px) {
  .gallery {
    width: 85%;
  }

  .header {
    width: 90%;
  }
}

@media (max-width: 768px) {
  .background-container {
      background-attachment: scroll;
      position: absolute;
      height: auto;
      min-height: 100%;
  }

  .house-description {
    font-size: 28px;
  }

  .house-content {
    padding-top: 2rem;
  }

  .image {
    width: 100%;
  }
}

