@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

*,
*:after,
*:before {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:active,
:hover,
:focus {
  outline: 0 !important;
  outline-offset: 0;
}

a,
a:hover {
  text-decoration: none;
}

a:hover {
  color: var(--primary-color);
}

ul,
ol {
  margin: 0;
  padding: 0;
}

/*==== Variable Define ==== */

:root {
  --primary-color: #a82c48;
  --secondary-color: #43121d;
  --third-color: #f98169;
  --white-color: #fff;
  --text-color: #555;
  --text-gray: #999;
  --black-color: #000;
  --primary-font: "Roboto", sans-serif;
  --secondary-font: "Quicksand", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--primary-font);
  font-size: 100%;
  font-weight: 400;
}

/*
 ==============================
     Custom Scrollbar
 ================================
*/

::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--white-color);
}
::-webkit-scrollbar-thumb {
  background: var(--secondary-color);
}

/*
==============================
  Custom Css Design
==============================
*/
h1 {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 48px;
  color: var(--secondary-color);
}

h2 {
  font-weight: 700;
  font-size: 20px;
  text-transform: capitalize;
  font-family: var(--secondary-font);
  color: var(--secondary-color);
  line-height: 48px;
}

h4 {
  color: var(--secondary-color);
  font-family: var(--secondary-font);
  font-size: 18px;
  text-transform: capitalize;
  font-weight: 700;
  margin-bottom: 8px;
}

h5 {
  color: var(--primary-color);
  text-transform: capitalize;
  font-family: var(--secondary-font);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

p {
  font-size: 16px;
  color: var(--text-color);
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 1px;
}

.main-btn {
  display: inline-block;
  padding: 10px 30px;
  line-height: 25px;
  background-color: var(--primary-color);
  border: 3px solid var(--primary-color);
  color: var(--white-color);
  font-size: 15px;
  font-weight: 600;
  text-transform: capitalize;
  box-shadow: 0px 2px 10px -1px rgb(0 0 0 / 20%);
  -webkit-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}

.white-btn {
  padding: 10px 30px;
  line-height: 25px;
  background-color: var(--white-color);
  border: 3px solid var(--white-color);
  color: var(--text-color);
  font-size: 15px;
  font-weight: 600;
  text-transform: capitalize;
  box-shadow: 0px 2px 10px -1px rgb(0 0 0 / 20%);
  -webkit-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}

.main-btn:hover {
  background-color: transparent;
  color: var(--primary-color);
}

.white-btn:hover {
  background-color: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.wrapper {
  padding-top: 132px;
  padding-bottom: 132px;
}

.text-content {
  width: 70%;
  margin: auto;
}

.counter-section h2,
.testimonial-section h2,
.book-food-text h2 {
  color: var(--white-color);
}

/*
==============================
  Header Design
==============================
*/

.navigation-wrap {
  position: fixed;
  width: 100%;
  z-index: 999;
  left: 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.navigation-wrap .nav-item {
  padding: 0 10px;
  transition: all 200ms linear;
}
.navbar-toggler:focus {
  outline: unset;
  border: unset;
  box-shadow: none;
}
.nav-link {
  font-size: 15px;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--primary-color);
  letter-spacing: 1px;
}

.navigation-wrap .main-btn {
  padding: 5px 23px;
  box-shadow: none;
  margin-left: 10px;
}
/*Change Navbar Styling On Scroll */

.navigation-wrap.scroll-on {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--white-color);
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  transition: all 0.15s ease-in-out;
  z-index: 1000;
}

/*
==============================
  Top Banner Design
==============================
*/

.top-banner {
  width: 100%;
  background: url("../images/bg/bg-1.jpg") no-repeat center;
  background-size: cover;
  padding: 270px 0 150px;
}

/*
==============================
  Counter Design
==============================
*/

.counter-section {
  background-color: var(--primary-color);
  padding: 40px 0;
}

.counter-section p {
  color: var(--white-color);
  text-transform: uppercase;
}

/*
==============================
    About Section
==============================
*/

.about-section {
  background: var(--white-color);
}
.about-section .card img {
  border-radius: 10px;
}
.about-section .text-sec {
  padding-left: 32px;
}

/*
==============================
    Food Type Section Design
==============================
*/

.food-type {
  padding-top: 52px;
}
.food-type ul li {
  font-size: 16px;
  color: var(--text-color);
  line-height: 32px;
  position: relative;
  margin-left: 30px;
}
.food-type ul li:before {
  position: absolute;
  left: -34px;
  color: var(--primary-color);
  font-size: 20px;
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  display: inline-block;
  padding-right: 3px;
  vertical-align: middle;
  font-weight: 900;
}

.story-section {
  width: 100%;
  height: 450px;
  background: url("../images/bg/bg-2.jpg") no-repeat center;
  background-size: cover;
  padding-top: 100px;
  text-align: center;
}
.story-section h2 {
  color: var(--primary-color);
}

/*
==============================
Explore Food Design
==============================
*/

.explore-food .card {
  border: none;
  background-color: transparent;
  border-radius: 15px;
}
.explore-food .card img {
  border-radius: 15px;
  object-fit: cover;
}
.explore-food .card span {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  padding-bottom: 16px;
  border-bottom: 1px solid #eee;
}
.explore-food .card span del {
  color: var(--text-gray);
  margin-left: 8px;
}

/*
==============================
testimonials
==============================
*/

.testimonial-section {
  background-color: var(--primary-color);
}
.testimonial-section .carousel-item {
  margin-top: 48px;
  padding: 160px 50px;
  background-color: var(--white-color);
  border-radius: 15px;
  text-align: center;
}
.testimonial-section .carousel-caption img {
  max-width: 80px;
  border-radius: 50%;
  padding: 5px;
}

.testimonial-section .carousel-item .carousel-caption p {
  font-size: 21px;
  line-height: 32px;
  padding: 0 50px 10px;
}
.testimonial-section .carousel-indicators {
  bottom: -30px;
}

.testimonial-section .carousel-indicators button {
  width: 15px;
  height: 15px;
  outline: none;
  border-radius: 50%;
  border: none;
  margin-right: 16px;
  opacity: 0.2;
  margin-top: 20px;
  margin-bottom: -16px;
}
.testimonial-section .carousel-indicators button.active {
  opacity: 1;
}

/*
==============================
Faq
==============================
*/
.faq h4 span {
  color: var(--primary-color);
  font-size: 25px;
  margin-right: 12px;
}

.book-food {
  width: 100%;
  background: url("../images/bg/bg-3.jpg") no-repeat center;
  background-size: cover;
  background-attachment: fixed;
  background-position: 0 71px;
  padding: 76px 0;
}

/* form conterol  */

.newsletter {
  width: 55%;
  margin: 0 auto;
}
.newsletter .form-control {
  height: 51px;
  padding: 0 20px;
  font-size: 14px;
  width: 100%;
  border: none;
  border-radius: 0;
  background: transparent;
  border: 3px solid var(--text-gray);
  color: var(--black-color);
  font-weight: 700;
}
.newsletter .form-control:hover,
.newsletter .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: none;
  outline: none;
}

/*
==============================
Footer Design
==============================
*/

.footer {
  background: var(--primary-color);
}
.footer .footer-link {
  font-size: 16px;
  color: var(--white-color);
  padding: 0 20px;
}
.footer .footer-link:hover {
  color: var(--white-color);
}
.footer a i {
  font-size: 24px;
  color: var(--white-color);
  padding: 0 30px;
}
.footer p {
  font-size: 14px;
  color: var(--white-color);
  padding: 30px 0;
}
