@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap");
* {
  margin: 0px;
  box-sizing: border-box;
}

.hero {
  font-family: "Poppins", sans-serif;
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url(../img/banner.jpg);
  height: 100vh;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  color: white;
  /* height: 850px; */
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 300px;
}
.hero-content {
  text-align: left;
  margin-top: 100px;
  padding: 30px 300px;
}
.outline {
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px rgb(255, 255, 255);
  font-size: 90px;
}
.hero-content pre {
  font-size: 20px;
  text-wrap-mode: wrap;
  width: 700px;

  font-family: sans-serif;
}

.left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.left img {
  width: 30px;
  height: auto;
}

.left h1 {
  color: white;
  font-size: 30px;
  margin: 0;
}

.right a {
  color: white;
  margin-left: 20px;
  font-size: 20px;
  text-decoration: none;
}

.right a:hover {
  color: orange;
}
.delight {
  font-size: 50px;
  font-weight: 600;
}
.See-Menu {
  /* width: 90px ;
  height: 50px  */
  padding: 10px 20px;
  background-color: orange;
  text-align: center;
  color: #000;
  font-size: 20px;

  display: inline-block;
  text-decoration: none;
  border: 1px solid orange;
  border-radius: 7px;
}
.See-Menu:hover {
  background-color: transparent;
  color: orange;
}
.Book {
  padding: 10px 20px;
  font-size: 20px;

  border: 1px solid orange;
  background-color: transparent;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  color: orange;
  box-sizing: border-box;
  border-radius: 7px;
}
.Book:hover {
  color: black;

  background-color: orange;
}

.categories {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 25px ;
  background-color: rgb(239 239 239);
  gap: 20px;
  /* height: 350px; */
  font-family:  sans-serif;
}
.categories h2 {
  line-height: 50px;
}
.categories p {
  line-height: 25px;
}
.categories a {
  line-height: 50px;
  text-decoration: none;
  color: black;
  font-size: 20px;
  font-weight: bold;

}
.categories div {
  width: 300px;
  height: 350px;
  /* margin: 20px; */
  padding: 30px;
  text-align: center;
  background-color: white;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.features {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.list-items {
  list-style: none;
  padding: 0;
}

.list-items li::before {
  content: "♡ ";

  color: orange;
}

.list,
.image {
  display: inline-block;
  vertical-align: middle;
}

.list {
  width: 45%;
  text-align: left;
  line-height: 50px;
  margin-left: 120px;
}
.list-items {
  padding-left: 250px;
}

.list-items li {
  font-size: 30px;
  font-family: sans-serif;
  line-height: 80px;
  color: #696666;
  font-weight: bold;
}

.image {
  width: 45%;
}

.image img {
  max-width: 100%;
}
.contact {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url(../img/bg.jpg);
  height: 100vh;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  font-family: sans-serif;

  display: flex;
  align-items: center;
  justify-content: center;
  height: 350px;
  flex-direction: column;
}
.contact-text {
  color: white;
  font-size: 45px;
  font-weight: bold;
}
.contact-num {
  color: orange;
  font-size: 45px;
  font-weight: bold;
}

footer {
  background-color: rgb(33, 32, 32);
  height: 50px;
}
footer p {
  color: gray;
  text-align: center;
  padding: 20px 0;
  font-family: "Poppins", sans-serif;
}
