:root {
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #da9f5b;
  --secondary: #33211d;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #fffbf2;
  --dark: #111111;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: "Montserrat", sans-serif;
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #555555;
  text-align: left;
  background-color: #fffbf2;
}

a {
  text-decoration: none;
}

.container {
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
}

@media (min-width: 990px) {
  .container {
    width: 1200px;
  }
}

.head-section {
  position: relative;
  width: 100%;
  height: 100vh;
  margin-bottom: 48px;
}

.head-section::before {
  content: "";
  width: 100%;
  height: 30px;
  position: absolute;
  bottom: -17px;
  left: 0;
  background: url("./assets/overlay-bottom.png");
  z-index: 20;
}
.head-section::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(51, 33, 29, 0.7);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.bg-image {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: top;

  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 20px 40px;
  z-index: 4;
}

.logo {
  color: white;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  font-size: 55px;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  list-style: none;
}

.nav-bar li a {
  color: white;
  font-size: 20px;
  font-weight: 600;
  transition: all 0.2s ease-in;
}
.nav-bar li a:hover {
  color: #da9f5b;
}

.nav-bar li a:active {
  color: #da9f5b;
}

.hero {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 2;
  display: grid;
  place-content: center;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: center;
  justify-content: center;
  color: white;
}

.text-yellow {
  color: var(--warning);
  font-size: 30px;
  font-weight: 600;
}

.hero-text h2 {
  color: white;
  font-size: 150px;
  font-weight: bold;
}

.time-text {
  font-size: 30px;
  font-weight: 600;
}

/* about us section */

.section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: start;
  justify-content: center;
  position: relative;
  margin-top: 100px;
}

.section-headers {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 120px;
  width: 100%;
}

.section-headers::before {
  content: "";
  width: 3px;
  height: 100px;
  border-radius: 50px;
  background-color: #da9f5b;
  position: absolute;
  top: 0;
}

.section-title {
  color: #da9f5b;
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
}
.section-desc {
  font-size: 55px;
  color: black;
  font-weight: bolder;
}

.section-body {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
  width: 100%;
}

.about-image {
  width: 100%;
}

.image-article {
  width: 100%;
  flex: 0 0 40%;
}

.article {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  gap: 20px;
  width: 100%;
  flex: 0 0 27%;
}
.article-title {
  font-size: 50px;
  color: #33211d;
  font-weight: bolder;
}

.article-desc {
  color: black;
  font-weight: 700;
  font-size: 18px;
  text-align: justify;
}
.article-desc2 {
  font-size: 18px;
}

.article-button {
  background-color: #33211d;
  color: white;
  font-weight: 700;
  font-size: 18px;
  padding: 10px 20px;
  border: none;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.article-button:hover {
  background-color: #da9f5b;
  scale: 1.1;
}

.article-button2 {
  background-color: #da9f5b;
  color: white;
  font-weight: 700;
  font-size: 18px;
  padding: 10px 20px;
  border: none;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.article-button2:hover {
  background-color: #33211d;
  scale: 1.1;
}
.article-features {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: start;
  justify-content: center;
}

.features-info {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 15px;
}

.icon {
  font-size: 30px;
  color: #da9f5b;
  font-weight: bolder;
}

.icon-desc {
  font-size: 18px;
  color: black;
  font-weight: 600;
}

/* services section */

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.service-article {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 30px;
}

.service-image {
  width: 210px;
  box-shadow: 0px 0px 5px #33211d;
}

.service-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 10px;
}
.service-icons {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
}

.icon-title {
  font-size: 20px;
  font-weight: bolder;
  color: black;
}
.service-icon {
  background-color: #da9f5b;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: black;
  font-size: 20px;
}

.service-desc {
  color: #33211d;
}

/* discount section */

.discount {
  position: relative;
}

.discount::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 14px;
  z-index: 20;
  background: url("./assets/overlay-top.png");
}
.discount::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 21px;
  z-index: 20;
  background: url("./assets/overlay-bottom.png");
}
.discount-container {
  width: 100%;
  position: relative;
}
.discount-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(51, 33, 29, 0.9);
  width: 100%;
  height: 500px;
}

.discount-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: top;
}

.discount-info {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.discount-title {
  font-size: 70px;
  font-weight: bolder;
  color: #da9f5b;
}
.discount-text {
  font-size: 35px;
  font-weight: bold;
  color: white;
}
.discount-desc {
  font-size: 25px;
  color: white;
}

.button-box {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.discount-input {
  padding: 20px 40px;
  outline: none;
  border: none;
  font-size: 20px;
  font-weight: 500;
}

.discount-button {
  padding: 20px 35px;
  outline: none;
  border: none;
  font-size: 20px;
  font-weight: 500;
  background-color: #da9f5b;
  cursor: pointer;
  transition: all 0.3s ease-in;
}

.discount-button:hover {
  background-color: #ffc107;
}

/* menu section */
.menu-body {
  display: flex;
  gap: 40px;
  align-items: start;
  justify-content: center;
  margin-top: 20px;
}

.menu-article {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 20px;
  padding: 0px 10px;
}
.menu-images-container {
  position: relative;
}
.menu-image {
  width: 100px;
  border-radius: 50%;
}

.menu-price {
  font-size: 18px;
  background-color: #da9f5b;
  position: absolute;
  top: -8px;
  right: -8px;
  padding: 10px;
  color: black;
  font-weight: bolder;
  border-radius: 50%;
}

.menu-title {
  font-size: 22px;
  font-weight: bolder;
  color: #33211d;
}

.menu {
  display: flex;
  flex-direction: column;
  gap: 45px;
  align-items: start;
  justify-content: center;
}

/* contact section */

.contact {
  background: url("./assets/bg.jpg") center/cover no-repeat;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: start;
  position: relative;
  margin-top: 100px;
}

.contact::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(51, 33, 29, 0.8);
  width: 100%;
  height: 100%;
  z-index: 1;
}
.top-overlay {
  position: absolute;
  top: 0;
  left: 0;
  background: url("./assets/overlay-top.png");
  width: 100%;
  height: 15px;
  z-index: 5;
}

.bottom-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  background: url("./assets/overlay-bottom.png");
  width: 100%;
  height: 15px;
  z-index: 5;
}

.contact-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
  z-index: 4;
}

.contact-info {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 20px;
  width: 100%;
}

.contact-title {
  font-size: 60px;
  font-weight: bolder;
  color: #da9f5b;
}
.contact-reservation {
  color: white;
  font-size: 25px;
  font-weight: 600;
}
.contact-info {
  color: white;
  font-size: 19px;
  font-weight: 600;
  padding: 100px 60px;
}

.white {
  color: white;
}

.contact-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  background-color: rgba(51, 33, 29, 0.8);
  padding: 100px 60px;
}

.contact-form h3 {
  font-size: 40px;
  color: white;
  font-weight: bolder;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.input {
  padding: 20px 40px;
  width: 100%;
  outline: none;
  font-size: 18px;
  color: white;
  border: #da9f5b 3px solid;
  background-color: transparent;
}

.input::placeholder {
  color: rgba(211, 211, 211, 0.5);
}
.form-button {
  width: 100%;
  padding: 20px 40px;
  background-color: #da9f5b;
  color: black;
  font-size: 20px;
  border: none;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease-in;
}

.form-button:hover {
  background-color: #a1723d;
  color: white;
}

/* testimoonial section */

.testimonail-articles {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 25px;
  align-items: center;
  justify-content: center;
}

.feedback {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 20px;
}
.article-header {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: start;
}
.feedback-image {
  box-shadow: 0px 0px 5px #33211d;
}

.feedback-title {
  font-size: 30px;
  color: #33211d;
  font-weight: bold;
}

.feedback-profession {
  font-style: italic;
  font-size: 19px;
}

.feedback-desc {
  font-size: 17px;
}

/* footer */
.footer {
  background: url("./assets/bg.jpg") center/cover no-repeat;
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  justify-content: center;
  margin-top: 150px;
}

.footer::before {
  content: "";
  background: url("./assets/overlay-top.png");
  width: 100%;
  height: 15px;
  top: 0;
  left: 0;
  position: absolute;
  z-index: 2;
}

.footer::after {
  content: "";
  background-color: rgba(51, 33, 29, 0.9);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.articles {
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 100px 20px;
  color: white;
  width: 100%;
}

.footer-article {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 20px;
  padding: 30px;
}
.footer-title {
  font-size: 30px;
  font-weight: bolder;
}
.touch-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 20px;
}

.media-box {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: start;
  justify-content: center;
}

.media-box p {
  font-size: 20px;
  width: 80%;
  text-wrap: wrap;
}

.social-media {
  display: flex;
  list-style: none;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.social-icon {
  font-size: 25px;
  padding: 10px 15px;
  color: white;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 3px solid white;
}

.social-icon:hover {
  background-color: white;
  color: #33211d;
}

.touch-desc {
  color: white;
  font-size: 22px;
  font-weight: bold;
}

.copyrights {
  display: flex;
  flex-direction: column;
  padding: 50px 20px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: white;
  font-size: 22px;
  width: 100%;
  z-index: 3;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
}
.copyrights span {
  color: #da9f5b;
  font-weight: bolder;
  font-size: 23px;
}
