* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
    "Lucida Sans", Arial, sans-serif;
}
html::-webkit-scrollbar {
  width: 15px;
}
html::-webkit-scrollbar-track {
  background-color: black;
}
html::-webkit-scrollbar-thumb {
  border-radius: 20px;
  background-color: #ffd90080;
}
html::-webkit-scrollbar-thumb:hover {
  background-color: #ffd900;
}
.container {
  width: 85%;
  margin: 0 auto;
}
.offers {
  background: url(../src/offer-background.jpg) center center/cover;
  padding-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
}
.offers button {
  border: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #f4f2ed;
  background-color: black;
  padding: 15px 25px;
  border-radius: 10px;
  font-size: 25px;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}
.offers button:hover {
  background-color: gold;
  color: black;
}
.next {
  right: 20px;
}
.prev {
  left: 20px;
}
.offers-title {
  text-align: center;
}
.offers-title h1 {
  color: gold;
  font-size: 40px;
  margin-bottom: 20px;
}
.offers-title p,
.offers-item p {
  color: gray;
}
.offers-items {
  display: flex;
  transition: all 0.5s ease-in-out;
}
.offers-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 100%;
  color: #f4f2ed;
}
.offers-item img {
  width: 250px;
}
.offers-item h2 {
  font-size: 30px;
}
.offers-item span {
  margin-left: 10px;
  color: gold;
}
.offers-wrapper {
  overflow: hidden;
  height: 70vh;
  display: flex;
  align-items: center;
}
#menu {
  background-color: #f4f2ed;
  padding: 5rem 0;
}
#menu .title {
  text-align: center;
  margin-bottom: 20px;
}
#menu .title h3 {
  color: gold;
  font-size: 40px;
  margin-bottom: 20px;
}
#menu .title p {
  color: gray;
  font-weight: bold;
}
.menu-items {
  display: flex;
  justify-content: center;
  align-items: center;
}
.menu-item {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px;
}
.menu-item img {
  width: 100px;
  margin-right: 20px;
  border-radius: 50%;
}
.menu-item h4 {
  border-bottom: dashed 1px gray;
  padding-bottom: 10px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
}
.menu-item h4 span {
  color: gold;
}
.menu-item p {
  color: gray;
}
.btn {
  display: block;
  margin: auto;
  border: none;
  margin-top: 30px;
  font-size: 20px;
  padding: 20px;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  background-color: black;
  color: #f4f2ed;
}
.btn:hover {
  color: black;
  background-color: gold;
}
#gallery {
  background: url("../src/offer-background.jpg") center center/cover;
  padding: 3rem 0;
  color: #fff;
}
#gallery h5 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 30px;
}
.img-gallery {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.img-gallery img {
  width: 300px;
  height: 200px;
  border-radius: 20px;
  margin: 15px;
  cursor: pointer;
  opacity: 0.7;
  transition: all 0.3s ease-in-out;
}
.img-gallery img:hover {
  transform: scale(1.1);
  opacity: 1;
}
#boxContainer {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 10;
}
#boxItem {
  width: 85%;
  height: 85%;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  position: relative;
}
#boxItem i {
  color: #f4f2ed;
  cursor: pointer;
  position: absolute;
  transition: color 0.3s;
}
#boxItem i:hover {
  color: gold;
}
#close {
  top: 20px;
  right: 20px;
}
#prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}
#next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
#contact {
  background: #f4f2ed;
  padding: 5rem 0;
}
#contact .container {
  max-width: 900px;
}
#contact .contact-content {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
#contact .contact-info {
  width: 50%;
}
form {
  width: 50%;
}
#contact .contact-info div {
  margin: 30px 0;
  line-height: 1.7;
}
#contact .contact-info h3 {
  font-size: 28px;
  color: #383848;
  margin-bottom: 10px;
}
#contact .contact-info p {
  color: gray;
}
#contact .contact-info p i {
  color: gold;
  margin-right: 5px;
}
#contact .contact-info a i {
  color: #f4f2ed;
  background: #383848;
  padding: 10px;
  font-size: 20px;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}
#contact .contact-info a i:hover {
  background-color: gold;
  color: #383848;
}
form input,
textarea {
  display: block;
  width: 100%;
  padding: 20px;
  margin: 20px 0;
  border: none;
  background-color: #e3e2dd;
  transition: all 0.5s ease-in-out;
}
form input:focus,
textarea:focus {
  outline: none;
  background-color: gold;
}
form .bttn {
  color: #fff;
  background-color: #383848;
  padding: 20px;
  border: none;
  cursor: pointer;
  font-size: 20px;
  border-radius: 20px;
  transition: all 0.3s ease;
}
form .bttn:hover {
  background-color: gold;
  color: #383848;
}
