* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  font-style: normal;
  color: #000000;
}

/*Style for navbar begins here*/
header {
  background: linear-gradient(
      0deg,
      rgba(40, 27, 16, 0.7),
      rgba(40, 27, 16, 0.7)
    ),
    url("../images/other-images/daan-header-bg.jpeg");
  width: 100%;
  height: 100vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #ffffff;
  position: relative;
}
nav {
  width: 100%;
  height: 10vh;
  position: fixed;
  z-index: 1000;
  background-color: transparent;
  transition: background-color 0.5s ease-in-out;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  text-align: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 500;
  padding-top: 20px;
  padding-bottom: 10px;
  margin: 0 auto;
  user-select: none;
  grid-gap: 1rem;
}
nav.sticky {
  background-color: #000000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  height: 10vh;
}
.nav-logo {
  display: inline;
}
.nav-logo img {
  width: 100%;
  height: 45px;
  margin-top: -5px;
  object-fit: fill;
}
.fa-circle-user {
  font-size: 2rem;
}
.nav-icons {
  display: none;
}
.nav-drawer {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-around;
}
.close-btn {
  display: none;
}
.nav-logo-in-text {
  display: none;
}
.nav-menu-list ul,
.nav-user-info ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  text-align: center;
  grid-gap: 4.5rem;
  list-style-type: none;
  margin: 0rem 10.5rem;
}
@media only screen and (min-width: 1300px) and (max-width: 1800px) {
  .nav-menu-list ul {
    margin: 0rem 13rem;
  }
}
.nav-menu-list li a,
.nav-user-info li a,
.nav-cart-btn ul li,
.nav-cart-btn ul li a i,
.nav-account a {
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
  position: relative;
}
.nav-menu-list li a:after,
.nav-user-info li a:after,
.nav-cart-btn .my-cart:after,
.nav-account a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  border: none;
  border-radius: 25%;
  width: 0;
  height: 3px;
  background-color: #e45417;
  transition: width 0.3s ease-in-out;
}
.nav-menu-list li a:hover::after,
.nav-user-info li a:hover::after,
.nav-cart-btn .my-cart:hover::after,
.nav-account a:hover::after {
  width: 100%;
}
.nav-menu-list li a:active::after,
.nav-user-info li a:active::after,
.nav-cart-btn .my-cart:active::after,
.nav-account a:active::after {
  width: 100%;
}
.user-info-container {
  display: flex;
}
.nav-user-info ul {
  grid-gap: 0.5rem;
  margin: 0rem 0rem;
  margin-right: 2rem;
}
#user-line {
  margin-top: -0.8rem;
  font-size: 2.5rem;
  font-weight: bolder;
  color: #faff00;
}
.nav-cart-btn ul {
  line-height: 1;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  list-style-type: none;
  text-align: center;
}
.my-cart {
  font-size: 0.9rem;
}
.nav-cart-btn li a {
  color: #ffffff;
}
.nav-cart-btn li a:hover {
  cursor: pointer;
}
.nav-account {
  display: none;
}

/*Css for nav section begins here*/
.nav-hero-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0 auto;
  position: absolute;
  width: 100%;
  height: auto;
  padding: 4%;
  padding-right: 1rem;
  top: 21%;
}
.nav-hero-content {
  width: 45%;
  height: auto;
  padding-right: 3%;
}
.nav-hero-content h1 {
  font-family: "Josefin Sans", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  color: #d16e43;
}
#hero-paragraph1 {
  font-family: "Playfair Display", serif;
  font-style: normal;
  font-weight: 600;
  font-size: 28px;
  color: #ffffff;
  margin-top: 2rem;
  margin-bottom: 3rem;
}
.nav-hero-content h3 {
  font-family: "Josefin Sans", serif;
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: 30px;
  color: #d16e43;
  padding: 5% 20%;
}
#hero-paragraph2 {
  font-family: "Playfair Display", serif;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  color: #ffffff;
  padding: 0% 20%;
  padding-bottom: 9%;
  line-height: 27px;
}
.nav-hero-content button {
  font-family: Arial, Helvetica, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 28px;
  align-items: center;
  text-align: center;
  background-color: transparent;
  color: #ffffff;
  margin: 0% 20%;
  padding: 8px 40px;
  border-radius: 10px;
  border: 2px solid #ffffff;
}
.nav-hero-content button:hover {
  cursor: pointer;
  background-color: #c83e04;
  border: 2px outset #cfcaca;
  color: #cfcaca;
}

#wrapper {
  display: none;
}
.wrapper {
  width: 52%;
  height: auto;
  padding-top: 5%;
  position: relative;
}
.wrapper h1 {
  font-family: "Josefin Sans", serif;
  font-style: normal;
  font-size: 30px;
  font-weight: 600;
  text-decoration: underline;
  margin-bottom: 1.5rem;
}
.wrapper i {
  top: 60%;
  height: 50px;
  width: 50px;
  margin-left: -1.5rem;
  cursor: pointer;
  font-size: 1.25rem;
  position: absolute;
  text-align: center;
  line-height: 50px;
  background: #e7e5e5;
  border-radius: 50%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.23);
  transform: translateY(-50%);
  transition: transform 0.1s linear;
  color: black;
  user-select: none;
}
.wrapper i:active {
  transform: translateY(-50%) scale(0.85);
}
.wrapper i:first-child {
  left: -22px;
}
.wrapper i:last-child {
  right: -22px;
}
.wrapper .carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% / 3) - 12px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 16px;
  border-radius: 8px;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.carousel::-webkit-scrollbar {
  display: none;
}
.carousel.no-transition {
  scroll-behavior: auto;
}
.carousel.dragging {
  scroll-snap-type: none;
  scroll-behavior: auto;
}
.carousel.dragging .card {
  cursor: grab;
  user-select: none;
}
.carousel .card {
  scroll-snap-align: start;
  height: auto;
  list-style: none;
  background: #fff;
  color: #000000;
  cursor: pointer;
  padding-bottom: 15px;
  flex-direction: column;
  border-radius: 10px;
}
.card .img img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 10px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.carousel li h3 {
  font-size: 14px;
  padding: 0% 5%;
  color: #d16e43;
}
.carousel li p {
  font-size: 10px;
  padding: 4% 5%;
  text-align: justify;
}
.carousel li h6 {
  text-align: center;
  color: #d16e43;
}
.carousel li h6:hover {
  color: rgb(203, 67, 9);
  text-shadow: 0px 0px 5px black;
}

/*Style for about us section begins here*/
.about-container {
  background-color: #c4c4c4;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  text-align: left;
  justify-content: space-between;
  position: relative;
  padding: 3%;
  user-select: none;
}
.first-about-div span {
  display: inline;
}
.about-div .first-about-div h2,
h1 {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-style: normal;
  margin-bottom: 1.5rem;
}
.second-about-div p {
  font-size: 24px;
  font-family: "Inter", serif;
  text-align: justify;
  line-height: 1.9rem;
  font-weight: 500;
  font-style: normal;
  margin-bottom: 1.5rem;
  color: #000000;
  padding-right: 10%;
}
.about-btn {
  width: 225px;
  height: 60px;
  background: #e45417;
  border: none;
  border-radius: 20px;
  color: #000000;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 22px;
  line-height: 30px;
  margin-left: 13%;
  margin-top: 2rem;
  cursor: pointer;
}
.about-btn:hover {
  background: #c83e04;
}
#about-img1 {
  display: none;
}
#about-img2 {
  display: block;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  margin-top: 4%;
  object-fit: contain;
  background-color: #000000;
}
.about-img {
  width: 350px;
  height: 345px;
  margin-top: 0%;
  padding-right: 2rem;
  border-radius: 50%;
  object-fit: cover;
}

/*Style for deals and offer section begins here*/
.carousel-for-offer {
  position: relative;
  height: auto;
  padding-left: 5%;
  padding-right: 5%;
  padding-bottom: 4%;
  padding-top: 2.5%;
  background-color: #b8a3ba;
  user-select: none;
}
.carousel-for-offer legend {
  font-family: "Josefin Sans", serif;
  font-size: 30px;
  font-weight: 700;
  font-style: normal;
  margin-bottom: 2.5rem;
}
.carousel__item {
  display: none;
}
.carousel-item-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  color: #000000;
  font-family: "Josefin Sans", sans-serif;
  font-weight: bold;
}
.offer-card {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background-color: rgba(228, 255, 253, 0.75);
  width: 600px;
  height: 280px;
  padding: 2%;
  border: none;
  border-radius: 20px;
}
@media only screen and (min-width: 1200px) and (max-width: 1400px) {
  .offer-card {
    width: 500px;
    height: 280px;
  }
}
.offer-text {
  padding: auto;
}
.offer-text h2 {
  font-size: 2.5rem;
  color: #1a7e11;
  margin: 1rem 0rem;
}
.offer-text h3 {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}
.offer-btn {
  padding: 12px 31px;
  border: 1px solid #525151;
  border-radius: 15px;
  font-weight: 600;
  background-color: rgba(191, 255, 251, 0.46);
}
.offer-btn:hover,
.offer-btn:active {
  background-color: rgba(118, 241, 233, 0.46);
  border: 1px inset #525151;
  cursor: pointer;
  user-select: all;
}
.offer-btn span {
  color: rgba(0, 0, 0, 0.5);
}
.offer-img img {
  width: 250px;
  height: 200px;
  margin: 0 auto;
  object-fit: cover;
  padding-top: 25px;
  background-color: #d9e8ed;
  border: none;
}
.carousel__item--selected {
  display: block;
}
.carousel__nav {
  width: 100%;
  padding: 20px 0;
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: center;
}
.carousel__button {
  width: 10px;
  height: 10px;
  display: inline-block;
  background: rgba(26, 126, 17, 0.5);
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  user-select: none;
}
.carousel__button--selected {
  background: rgba(26, 126, 17, 1);
}

/*Style for reservation Section Begins Here!*/
.reservation-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 100%;
  height: auto;
  position: relative;
  background-color: #0f172b;
  padding: 4% 5%;
}
.reservation-img {
  width: 40%;
  margin: 0% 6%;
}
.reservation-img img {
  width: 90%;
  height: 100%;
  object-fit: fill;
}
.reservation-form {
  width: 55%;
}
.reservation-form h3 {
  font-family: "Josefin Sans", sans-serif;
  font-size: 40px;
  color: #ffab08;
}
.reservation-form legend {
  font-family: "Josefin Sans", sans-serif;
  color: #ffffff;
  font-size: 28px;
  margin: 1.2rem 0rem;
  word-spacing: 3px;
}
.reservation-form input {
  padding: 10px 20px;
  margin: 0rem 2rem 2rem 0rem;
  font-size: 1.2rem;
  font-family: "Inter", sans-serif;
  width: 40%;
}
.reservation-form textarea {
  padding: 10px 20px;
  font-size: 1.2rem;
  font-family: "Inter", sans-serif;
  width: 85.5%;
  height: 15vh;
}
.reservation-form button {
  width: 85.5%;
  margin-top: 1.6rem;
  padding: 10px 20px;
  font-size: 1.2rem;
  font-family: "Inter", sans-serif;
  background-color: #ffab08;
  color: #ffffff;
  border: none;
  cursor: pointer;
  font-weight: 700;
}

/*Style for Motivation and Subscription Section Begins Here!*/
.motivation {
  display: flex;
  flex-direction: column;
  background: linear-gradient(
      0deg,
      rgba(40, 27, 16, 0.5),
      rgba(40, 27, 16, 0.5)
    ),
    url("../images/blog-images/morning.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  width: 100%;
  height: auto;
}
#slider-container {
  position: relative;
  width: 100%;
  height: auto;
  margin: 0px auto;
  padding: 3%;
  background-color: rgba(0, 0, 0, 0.78);
  color: #ffffff;
  overflow: hidden;
}
#slider-container h1 {
  text-align: center;
  font-family: "Josefin Sans", sans-serif;
  font-style: oblique;
}
#slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.slide > span {
  margin-top: -1rem;
  margin-left: 10.5%;
  font-size: 4rem;
  font-weight: 400;
  user-select: none;
  position: absolute;
}
.slide {
  min-width: 100%;
  text-align: left;
  font-size: 1.2rem;
}
.slide p {
  width: 80%;
  margin: 20px auto;
  margin-bottom: 40px;
  padding: 40px 60px;
  font-size: 1.4rem;
  word-spacing: 0.4px;
  justify-content: center;
  background-color: rgba(217, 217, 217, 0.3);
}
#prev,
#next {
  position: absolute;
  top: 52.5%;
  transform: translateY(-50%);
  font-size: 30px;
  cursor: pointer;
  margin: 0 auto;
  text-align: center;
  user-select: none;
  padding: 50px 20px;
  background-color: rgba(0, 0, 0, 0);
}
#prev:hover,
#next:hover,
#prev:active,
#next:active {
  background-color: rgba(0, 0, 0, 0.3);
  padding: 50px 20px;
  transform: translateY(-50%) scale(0.9);
}
#prev {
  left: 15px;
}
#next {
  right: 15px;
}
#slider-nav-bar {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  user-select: none;
}
.dot {
  height: 10px;
  width: 10px;
  background-color: rgba(100, 84, 84, 0.5);
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
}
.active-dot {
  background-color: #ffffff;
}
.subscribe {
  width: 100%;
  height: auto;
  font-family: "Inter", sans-serif;
  padding: 3% 7%;
  user-select: none;
}
.subscribe h2:nth-child(1) {
  color: #ffffff;
  margin-bottom: 0.3rem;
}
.subscribe h2:nth-child(2) {
  color: #bba6a6;
  margin-bottom: 1rem;
}
.subscribe p {
  color: #ffffff;
  margin-bottom: 0.7rem;
}
.subscribe #input-email {
  padding: 10px 40px;
  border: none;
  border-top-left-radius: 11px;
  border-top-right-radius: 0px;
  border-bottom-left-radius: 11px;
  border-bottom-right-radius: 0px;
  padding-left: 10px;
  font-size: 1.1rem;
}
.subscribe input::placeholder {
  color: #000000;
}
.subscribe .submit-btn {
  background-color: #bba6a6;
  padding: 9px 40px;
  border: none;
  border-top-left-radius: 0px;
  border-top-right-radius: 11px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 11px;
  margin-left: -5px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  cursor: pointer;
}
.subscribe .submit-btn:hover,
.subscribe .submit-btn:active {
  background-color: #bc9191;
}

/*Style for footer begins here*/
footer {
  background-color: #cdc4c4;
  position: relative;
}
.footer {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 9rem;
  padding-top: 3%;
  padding-bottom: 1%;
}
@media only screen and (min-width: 800px) and (max-width: 1100px) {
  .footer {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 3rem;
    padding-top: 3%;
    padding-bottom: 1%;
  }
}
.footer h3 {
  font-weight: bolder;
  font-family: "Inter", serif;
  font-style: normal;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.footer ul li {
  list-style-type: none;
  margin-left: 5px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  color: #232323;
  font-size: 1.15rem;
  line-height: 1.9rem;
}
.footer-dropdown-content {
  display: none;
}
.help-info li,
.contact-us li {
  margin-bottom: 0.8rem;
}
.help-info ul li:hover,
.contact-us ul li:hover,
.useful-links ul li:hover {
  cursor: pointer;
  color: #e45417;
}
.social-icons {
  text-align: center;
  padding-bottom: 10px;
}
.social-icons span {
  font-size: 1.5rem;
  font-family: "Inter", serif;
  font-weight: 700;
  word-spacing: 3px;
}
.social-icons a {
  font-size: 2rem;
  color: #000000;
  padding-left: 1.5rem;
}
.social-icons .fa-facebook:hover {
  color: #1877f2;
}
.social-icons .fa-instagram:hover {
  color: #c32aa3;
}
.social-icons .fa-whatsapp:hover {
  color: #006d5b;
}
.social-icons .fa-x-twitter:hover {
  color: #1aa2f8;
}
.copyright {
  background-color: #000000;
  color: #ffffff;
  text-align: center;
  padding: 15px 0px;
  word-spacing: 4px;
}
