@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap");

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Quicksand", sans-serif;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

/* Utility Classes */
.primary-text {
  color: #e4b95b;
}

.btn {
  display: inline-block;
  padding: 15px 30px;
  border: none;
  border-radius: 15px;
}

.btn-primary {
  color: #fff;
  border: 1px solid #fff;
}

.btn-primary:hover,
.btn-secondary:hover {
  background-color: #e4b95b;
  color: #fff;
  transition: all 0.3s ease-in-out;
}

.btn-secondary {
  background: #383838;
  color: #fff;
  margin-top: 2rem;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Start Header */
header {
  height: 100vh;
  background: url("../img/home_bg.jpeg") center center/cover no-repeat;
  position: relative;
}

#navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#navbar img {
  margin-left: 100px;
  width: 80px;
}

#navbar ul {
  display: flex;
  margin-right: 100px;
  gap: 20px;
}

#navbar ul li a {
  padding: 15px 20px;
  color: #fff;
  font-weight: 600;
}

#navbar ul li a:hover {
  border-bottom: 2px solid #e4b95b;
  transition: 0.3s ease-in-out;
}

header .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* background-color: #044c76; */
  height: 75%;
}

header .content h1 {
  font-size: 40px;
  color: #fff;
}

header .content p {
  margin: 20px 0 40px;
  color: #fff;
}

header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0, 0.6);
  z-index: 1;
}

header * {
  z-index: 2;
}
/* End Header */

/* Start About Section */
#about {
  display: flex;
  height: 80vh;
  justify-content: center;
  align-items: center;
  background: f4f4f4;
}

#about .title,
#offers .title,
#menu .title {
  text-align: center;
  margin-bottom: 4rem;
}

#about h2,
#offers h2,
#menu h2,
#gallery h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

#about h2,
#menu h2 {
  color: #383848;
}

#about .title p,
#menu .title p {
  font-size: 14px;
  color: #9a9a9a;
  font-weight: 600;
}

#about .about-content {
  display: flex;
  justify-content: space-between;
}

#about .about-content img {
  width: 450px;
}

#about .about-content p {
  color: 9a9a9a;
  margin-right: 7rem;
  font-weight: 500;
  line-height: 1.6;
}
/* End About Section */

/* Start Offers Section */
#offers {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80vh;
  background: url("../img/offer-background.jpg") center center/cover fixed;
}

#offers h2 {
  color: #e4b95b;
}

#offers .title .p {
  color: #fff;
  font-weight: 500;
}

#offers .offers-items {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

#offers .offers-items .img {
  width: 200px;
}

#offers .offers-items h3 {
  font-size: 25px;
  margin: 15px 0;
}

#offers .offers-items p {
  font-size: 14px;
  padding: 0 20px;
  font-weight: 300;
  margin-bottom: 15px;
}

#offers .offers-items span {
  font-size: 18px;
  font-weight: 600;
  margin-left: 5px;
}
/* End Offers Section */

/* Start Menu Section */
#menu {
  background-color: #f4f4f4;
  padding: 5rem 0;
}

#menu .menu-items {
  display: flex;
  justify-content: center;
  align-items: center;
}

#menu .menu-items .menu-item {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px;
}

#menu .menu-items .menu-item img {
  width: 80px;
  border-radius: 50%;
  margin-right: 20px;
}

#menu .menu-items .menu-item h3 {
  color: #383848;
  border-bottom: 1px dashed #c2bdbd;
  padding-bottom: 10px;
  margin-bottom: 10px;
  position: relative;
}

#menu .menu-items .menu-item span {
  position: absolute;
  top: 0;
  right: 0;
}

#menu .btn {
  display: block;
  margin: 20px auto 0;
  background: #e4b95b;
  color: #fff;
  cursor: pointer;
}

#menu .btn:hover {
  background: #383848;
  transition: all 0.3s ease-in-out;
}
/* End Menu Section */

/* Start daytime Section */
#daytime {
  background: url("../img/daytime_bg.jpeg") center center/cover fixed no-repeat;
  color: #fff;
  text-align: center;
}

#daytime .daytime-items {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  height: 40vh;
}

#daytime .daytime-items h3 {
  font-size: 32px;
  margin: 20px 0 10px;
}

#daytime .daytime-items p {
  font-weight: 500;
}
/* End daytime Section */

/* Start Gallery Section */
#gallery {
  background: url("../img/offer-background.jpg") center center/cover no-repeat;
  padding: 8rem 0 6rem;
}

#gallery h2 {
  color: #fff;
  text-align: center;
}

#gallery .img-gallery {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

#gallery .img-gallery img {
  width: 280px;
  height: 200px;
  border-radius: 15px;
  margin: 20px;
  opacity: 0.8;
}

#gallery .img-gallery img:hover {
  opacity: 1;
  transition: all 0.3s ease-in-out;
}
/* End Gallery Section */

/* Start Contact Section */
#contact {
  background: #f4f4f4;
  padding: 5rem 0;
}

#contact .container {
  max-width: 900px;
}

#contact .contact-contect {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

#contact .contact-contect .contact-info {
  width: 50%;
}

#contact .contact-contect .contact-info div {
  margin: 30px 0;
  line-height: 1.7;
}

#contact .contact-contect .contact-info h3 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #383848;
}

#contact .contact-contect .contact-info p,
#contact .contact-contect .contact-info div p a {
  color: #9a9a9a;
}

#contact .contact-contect .contact-info i {
  color: #e4b95b;
  margin-right: 5px;
}

#contact .contact-contect .contact-info a i{
  color: #fff;
  background-color: #383848;
  padding: 15px;
  border-radius: 50%;
  font-size: 20px;
}

#contact .contact-contect .contact-info a i:hover {
  background-color: #e4b95b;
  transition: all 0.3s ease-in-out;
}

form {
  width: 50%;
}

form input,
form textarea {
  display: block;
  width: 100%;
  padding: 20px 15px;
  border-radius: 10px;
  border: none;
  margin-bottom: 20px;
}

#contact .btn {
  background: #e4b95b;
  color: #fff;
  cursor: pointer;
}

#contact .btn:hover {
  background: #383848;
  transition: all 0.3s ease-in-out;
}
/* Finish Contact Section */

/* Start Footer Section */
#footer {
  background: #383848;
  text-align: center;
  color: #fff;
  padding: 22px 0;
  font-size: 14px;
}

#footer a {
  color: #fff;
}
/* End Footer Section */
