* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
  direction: ltr;
  text-align: left;
}

html,
body {
  width: 100%;
  background: #ffbd51;
}

header {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 10px 0 10px 0;
  width: 100%;
}

header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px;
  color: #ffffff;
    flex-wrap: wrap;
  }

#h1p1 {
  padding-left: 10px;
  padding-top: 10px;
  cursor: pointer;
  font-size: 2em;
  text-wrap: nowrap;
}

.name-icon {
  display: flex;
}

ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin: 0 10px;

}

nav ul li a {
  color: #ffffff;
  text-decoration: none;
  padding: 10px 15px;
  font-size: 1.2em;
}


ul li a:hover {
  color: #ffbd51;
  border-radius: 5px;
}

ul .libooking a {
  background-color: #ffbc5184;
  color: #ffffff;
  border-radius: 5px;
}

ul .libooking a:hover {
  background-color: rgba(255, 255, 255, 0);
  color: #ffbd51;
  border-radius: 5px;
}

.container {
  padding: 5vh 0;
  margin: 0 auto;
  width: 95vw;
}

#h1p2 {
  position: relative;
  margin-bottom: 45px;
  font-family: "Oswald", sans-serif;
  font-size: 44px;
  text-transform: uppercase;
  color: #ffffff;
  text-align: center;
}

.gallery-wrap {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 70vh;
  flex-wrap: wrap;
}

.item {
  flex: 1;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: none;
  transition: flex 0.8s ease;
  filter: blur(0px);
  border-radius: 25px;
}

.item:hover {
  flex: 7;
  filter: blur(0px);
}

.item-1 {
  background-image: url("room1.jpg");
}

.item-2 {
  background-image: url("room2.jpg");
}

.item-3 {
  background-image: url("room3.jpg");
}

.item-4 {
  background-image: url("room4.jpg");
}

.item-5 {
  background-image: url("room5.jpg");
}
img {
  display: block;
  width: 32px;
}

.text-overlay,
.text-Suite,
.text-Deluxe,
.text-Comfortable,
.text-Budget {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #ffbc5184;
  color: #fff;
  padding: 15px;
  font-size: 20px;
  border-radius: 10px;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

footer {
  display: grid;
  grid-template-columns: auto 800px;
  justify-content: space-between;
  text-align: center;
  align-items: center;
  padding: 25px;
  background-color: rgba(0, 0, 0, 0.7);
  color: #ffffff;
}

footer div a {
  padding: 20px;
}