@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap');

/* #region General Styles */
:root {
  --primary-color: #ff101d;
  --secondary-color: #f6a525;
  --text-color: #838383;
  --white-color: #fff;
  --main-transition: .3s;
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Cairo', sans-serif;
}

section {
  padding-top: 50px;
  padding-bottom: 50px;
}

@media (max-width: 767px) {
  section {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
}

.ph-btn {
  font-size: 15px;
  line-height: 21px;
  padding: 5px 15px;
  border: 1px solid var(--secondary-color);
  border-radius: 30px;
  color: var(--white-color) !important;
  font-weight: 600;
  transition: .3s;
}

.ph-btn:hover {
  background-color: var(--secondary-color);
}

.pt-20 {
  padding-top: 20px;
}

.pr-20 {
  padding-right: 20px;
}

.mt-5 {
  margin-top: 5px;
}
/* #endregion General Styles */

/* #region Header */
header {
  background-color: transparent;
  position: relative;
  margin-bottom: -62px;
  z-index: 9;
}

.logo-mobile {
  display: none !important;
}

@media (max-width: 767px) {
  header {
    margin-bottom: 0 !important;
  }

  header .icons {
    display: none !important;
  }

  .logo-mobile {
    display: inline-block !important;
  }

  .logo {
    display: none;
  }
}

.main-nav a,
header .icons span {
  color: var(--white-color) !important;
  font-weight: 600;
  font-size: 17px;
  transition:  var(--main-transition);
}

.navbar-toggler-icon {
  color:  white !important;
}

  .navbar-toggler:focus,
  .navbar-toggler-icon:focus {
    box-shadow: none !important;
  }

@media (max-width: 767px) {
  /* .navbar-collapse {
    background-color: var(--white-color);
  } */

  .main-nav a {
    color: var(--secondary-color) !important;
  }
}

.icons span:hover {
  color: #fff !important;
  cursor: pointer;
}
.nav-2 a,
.nav-2 a:hover,
 .c-icon:hover {
  color: #fff !important;
  cursor: pointer;
}

.main-nav a.active {
  color: var(--secondary-color) !important;
  border-bottom: 1px solid var(--secondary-color) !important;
  font-weight: bold;
}

.btn-search,
.btn-login {
  background-color: transparent !important;
  border: none !important;
  color: var(--white-color) !important;
  transition: .3s;
}

.btn-search:hover {
  color: var(--secondary-color);
}
/* #endregion Header */

/* #region hero */
.hero {
  height: 100vh;
  background: linear-gradient(to right, #FF101D, #A70010);
  padding-top: 54px;
}

.hero .image::after {
  content: '20% OFF';
  position: absolute;
  bottom: 73px;
  left: 75px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: var(--secondary-color);
  color: var(--white-color);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 32px;
  line-height: 1.2em;
  font-weight: bold;
}

.hero .image img {
  width: 500px;
}

.hero-info p {
  width: 90%;
  line-height: 1.5em;
}

@media (max-width: 767px) {
  .hero .image::after {
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
  }

  .hero .image {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero .image img {
    width: 85%;
  }

  .hero-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .hero-info {
    text-align: center;
  }
}

.hero .carousel-indicators {
  bottom: -75px;
}

.hero .carousel-control-next {
  justify-content: flex-end !important;
}

.hero .carousel-control-prev {
  justify-content: flex-start !important;
}
/* #endregion hero */

/* #region categogries */
.cat {
  width: 150px;
  height: 150px;
}

.cat h3 {
  color: #111;
}

.cat img {
  width: 100%;
  border-radius: 50%;
}

.cat h3 {
  font-size: 18px;
  text-align: center;
  margin-top: 10px;
  font-weight: 600;
}

@media (max-width: 767px) {
 .cat {
    margin-bottom: 50px;
  }
}
/* #endregion categogries */

/* #region menus */
.menu-item {
  transition: .5s ease-in-out;
  cursor: pointer;
}

.menu-item:hover {
  transform: scale(.85);
}

.menu-img {
  position: relative;
  cursor: pointer;
}

.menu-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-color: #a70011ab;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: none;
  transition: .3s ease-in-out;
}

.menu-item:hover .menu-img::before {
  display: block;
}

.menu-img img {
  border-radius: 50%;
}

.menu-img i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 25px;
  font-weight: bold;
  color: var(--white-color);
  transition: .3s ease-in-out;
  display: none;
}

.menu-item:hover .menu-img i {
  display: block;
}

.menu-info h3 {
  font-size: 23px;
  font-weight: bold;
  color: var(--secondary-color);
}

@media(max-width: 767px) {
  .menu-info h3 {
    font-size: 18px;
  }
}

.menu-info p {
  font-size: 14px;
  color: var(--text-color);
  margin-bottom: 5px;
}

.menu-info span {
  font-size: 18px;
  font-weight: bold;
  color: var(--primary-color);
}

.menu-item p {
  width: 180px;
}

.filter-btn {
  font-size: 15px;
  line-height: 21px;
  padding: 5px 15px;
  border: 1px solid var(--secondary-color) !important;
  color: var(--secondary-color);
  border-radius: 30px;
  font-weight: 600;
  transition: .3s;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white-color);
}

.menu-btn {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white-color);
  transition: .3s;
}
/* #endregion menus */

/* #region offer */
.offer-info h3 {
  font-size: 35px;
  font-weight: 600;
}

.offer-info h3 a {
  color: #212529;
}

.offer-info p {
  font-size: 15px;
  color: var(--text-color);
}

.offer-info .price {
  font-size: 30px;
  font-weight: 600;
  position: relative;
  margin-right: 30px;
}

@media (max-width:767px) {
  .offer-info h3 {
    font-size: 28px;
    margin-top: 15px !important;
  }

  .offer-info .price {
    font-size: 22px;
  }  
}

.offer-info .price::before {
  content: '';
  position: absolute;
  width: 23px;
  height: 2px;
  left: 57px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #333;
}

.offer-info .stars i {
  font-size: 16px;
  color: #ffcc66;
}

.offer-item a {
  color: #212529 !important;
}
/* #endregion offer */

/* #region booking */
.book-img {
  padding: 0;
}

.book-img img {
  height: 608px;
}

.book-form {
  background-color: var(--secondary-color);
  height: 100%;
}

@media(max-width: 767px) {
  .book-form {
    padding: 20px;
  }
}

.book-form input,
.book-form select {
  box-shadow: none !important;
  border: none !important;
  border-bottom: 1px solid #111 !important;
  border-radius: 0 !important; 
  height: 40px !important;
  background-color: transparent !important;
  width: 180px;
}

.book-btn {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
}

@media (max-width: 767px) {
  .book-btn {
    width: 90% !important;
  }
}

.swiper-rtl .swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
font-size: 25px;
font-weight: bold;
color: #00000083;
}

.swiper-items img {
  border-radius: 50%;
}

.swiper-items h3 {
  font-size: 18px;
  margin-top: 10px;
}

.swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
/* #endregion booking */

/* #region articles */
.article img {
  height: 280px;
}

.article .date {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 75px;
  height: 75px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: var(--secondary-color);
  font-weight: bold;
  padding: 30px;
  border: 1px solid #111;
}

.article-info h3 {
  font-size: 22px;
}

.article-info p {
  font-size: 15px;
}

.article .read-more {
  background-color: transparent !important;
  color: #111 !important;
  font-size: 15px;
  text-align: right;
  border: none !important;
  border-bottom: 1px solid #111 !important;
  border-radius: 0;
  padding: 0 !important;
  transition: .3s;
}

.article .read-more:hover {
  color: var(--secondary-color) !important;
  border-bottom: 1px solid var(--secondary-color) !important;
}
/* #endregion articles */

/* #region Start Footer */
footer {
  background-color: var(--secondary-color);
  color: #111;
}

footer h6 {
  color: #111;
  font-size: 18px;
}

footer p {
  line-height: 2em;
}

footer .contact p,
footer a {
  cursor: pointer;
  transition: var(--main-transition);
}

footer .contact p:hover,
footer a:hover {
  color: var(--hover-color) !important;
}

footer p,
footer a,
footer .copyright {
  font-size: 15px;
}

footer .copyright {
  border-top: 1px solid #111;
}

footer .social i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  background-color: #212529;
  color: var(--white-color);
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (min-width: 768px) {
  .f1 p {
    width: 90%;
  }
}

@media (max-width: 768px) {
  .copyright {
    display: flex;
    flex-direction: column !important;
  }

  footer .social {
    display: none !important;
  }

  .f1, .f2, .f3, .f4 {
    padding-right: 20px;
  }
}
/* #endregion footer */

/* #region pages */
.hero-menus {
  height: 550px;
  background-image: url('../images/pizza-bg.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--white-color);
  position: relative;
}

.hero-menus::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000af;
}

@media (max-width: 767px) {
  .hero-menus {
    height: 300px;
  }
}

.hero-menus.pizza {
  margin-top: -50px;
}

.hero-menus.burger {
  height: 200px !important;
}

.hero-menus h1 {
  position: relative;
}

.hero-menus.burger {
  height: 330px;
  background-image: none;
  background-color: #222;
}

.breadcrumb a,
.category a {
  color: #212529;
}
/* #endregion pages */

/* #region search modal */
.search-modal {
  /* height: 550px !important; */
}

.modal-content {
  height: 100% !important;
  background-color: #000000c9 !important;
}

.modal-header {
  border: none !important
}

.modal-header .btn-close {
  background-color: var(--white-color) !important;
}

.modal-body {
  display:  flex;
  align-items: center;
}

.in-search {
  background-color: transparent !important;
  border: none;
  border-bottom: 1px solid var(--white-color);
  border-radius: 0;
  padding-bottom: 20px;
}

.search-modal form {
  width: 100%;
}

.in-search::placeholder {
  color: var(--white-color) !important;
}

.btn-search {
  bottom: 22px;
  left: 0;
  background-color: transparent !important;
  border: none !important;
}
/* #endregion search modal */

/* #region cart */
.cart-overview {
  width: 300px;
  background-color: #222;
  color: var(--white-color);
  padding: 20px;
  left: -175px;
  top: 50px;
  border-radius: 10px;
  display: none;
}

.cart-product-title {
  font-size: 18px;
  font-weight: bold;
}

.summary {
  background-color: var(--light-color);
  padding: 15px;
  border-radius: 5px;
}

.cart-item {
  display: flex;
  justify-content: space-between;
}

.c-img img {
  width: 75px;
  border-radius: 8px;
}

.c-info h3 {
  font-size: 18px;
}

/* .cart-btns button {
  background-color: transparent !important;
  color: var(--secondary-color) !important;
  border: 1px solid var(--secondary-color) !important;
  z-index: 999;
} */

/* .cart-btns button:hover {
  background-color: var(--secondary-color) !important;
  color: #fff !important;
} */
.show {
  display: block;
}
/* #endregion cart */

.iti {
  width: 100% !important;
  /* iti: a class for library input container */
}

.iti__country-list {
  position: absolute !important;
  left: 0;
}