@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Roboto:wght@100;300;400;500;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a {
  text-decoration: none;
  color: #000000;
}

:root {
  --brand-color: #ef5b25;
  --secondary-color: #383a3c;
  --heading-font: Bebas Neue;
  --heading-font-color: #383a3c;
  --body-font: Roboto;
  --body-font-color: #666666;
  --section-bg-white: #ffffff;
  --section-bg-grey: #f8f8f8;
  --section-bg-brand: #ef5b25;
  --section-color-white: #ffffff;
  --container-bg: #ffffff;
}

html,
body {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
}

.section-title {
  font-size: 60px;
  letter-spacing: 1px;
}

header {
  position: sticky;
  top: 0;
  background-color: rgb(255 255 255 / 95%);
  border-bottom: 1px solid #00000017;
  z-index: 9;
}

.z-portal-listing header {
  position: static;
}

/*.hide {
  display: none;
}*/

.handle {
  display: none;
}

.z-portal-listing .handle,
.individual-page .handle {
  background: transparent;
  border: none;
  color: #000000;
  font-size: 35px;
  cursor: pointer;
  display: none;
  position: absolute;
  right: 15px;
  top: 30px;
}

.z-portal-listing nav {
  max-width: 1280px;
  padding: 10px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav {
  max-width: 980px;
  padding: 10px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.z-portal-listing .logo img {
  max-width: 150px;
}

.logo img {
  max-width: 75px;
}

nav ul {
  display: none;
}

.z-portal-listing nav ul,
.individual-page nav ul {
  list-style-type: none;
  display: flex;
}
nav ul li {
  padding: 10px;
  text-align: center;
}

nav ul li a {
  padding: 5px;
  text-transform: capitalize;
}

nav ul li a:hover {
  border-bottom: 4px solid var(--brand-color);
}

.zuppler-navbar {
  display: flex;
  justify-content: center;
}

@media (max-width: 768px) {
  nav {
    flex-direction: column;
  }
  .zuppler-navbar {
    flex-direction: row;
    width: 100%;
  }

  .z-portal-listing nav ul,
  .individual-page nav ul {
    display: none;
    transition: 0.3s;
    width: 100%;
    background-color: var(--section-bg-grey);
  }

  .z-portal-listing .show,
  .z-portal-listing .handle,
  .individual-page .show,
  .individual-page .handle {
    display: block;
  }
}

@media (max-width: 480px) {
  #zuppler-navigation-left {
    width: 100%;
  }
}

section {
  background-color: var(--section-bg-white);
}

.content-container {
  max-width: 1280px;
  padding: 80px 20px;
  margin: 0 auto;
}

.separator-centered {
  width: 60px;
  height: 5px;
  margin: 10px auto;
  background-color: var(--brand-color);
}

.separator-left {
  width: 60px;
  height: 5px;
  margin: 10px 0;
  background-color: var(--brand-color);
}

.whitespace {
  display: block;
  width: 100%;
  height: 25px;
}

.btn-primary {
  background-color: var(--container-bg);
  color: var(--body-font-color);
  margin: 10px 5px;
  padding: 10px 20px;
  display: inline-block;
  border-radius: 5px;
  transition: 0.5s;
  min-width: 120px;
  box-shadow: none;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  font-family: "Roboto";
  border: 2px solid transparent;
  box-shadow: rgb(0 0 0 / 24%) 0px 3px 8px;
}

.btn-primary:hover {
  background-color: var(--secondary-color);
  color: var(--section-bg-white);
  border: 2px solid #fff;
}

/* HERO SECTION STYLES */

#hero-section {
  background-image: url(https://images.unsplash.com/photo-1617957718614-8c23f060c2d0?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=4032&q=80);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.hero-overlay {
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 0%);
}

.content-container.hero-container {
  display: flex;
  justify-content: center;
}

@media (max-width: 480px) {
  .content-container.hero-container {
    padding: 20px;
  }
}
.hero-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
}

.hero-title {
  font-size: 60px;
  letter-spacing: 1px;
}

.hero-text {
  font-size: 24px;
  margin: 20px 0;
}

/* ORDERING STYLES */

.z-portal-listing #ordering-section {
  background-color: var(--section-bg-white);
}

#ordering-section {
  background-color: var(--section-bg-grey);
}

.z-portal-listing .content-container.ordering-container {
  padding: 0 20px;
}

/* HOW TO ORDER STYLES */

#how-to-order {
}

.how-to-order-container h2 {
  text-align: center;
  color: var(--secondary-color);
}

.steps {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  padding: 20px 0;
  margin-top: 50px;
}

.steps h3 {
  font-size: 28px;
  color: var(--body-font-color);
}

.how-to-order-container .steps div {
  text-align: center;
}

.steps div p {
  padding: 20px 0;
}

.how-to-order-container .steps img {
  max-width: 60px;
}

@media (min-width: 768px) {
  .steps > div:not(.steps > div:last-child) {
    border-right: 1px solid;
  }
}

@media (max-width: 768px) {
  .steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

/* APP SECTION STYLES */

.z-portal-listing .app-banner {
  display: block;
}
.app-banner {
  display: none;
}

.app-banner {
  background-color: var(--section-bg-brand);
  width: 100%;
  text-align: center;
  padding: 20px;
}

.app-banner a {
  color: var(--section-bg-white);
  font-weight: 600;
  font-size: 18px;
}

#apps {
  background-color: var(--section-bg-brand);
  background-image: url(https://images.unsplash.com/photo-1617957718614-8c23f060c2d0?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=4032&q=80);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.app-wrapper {
  display: flex;
}

.phone-image {
  flex: 1;
  text-align: center;
}

.phone-image img {
  max-width: 230px;
}

.app-btns {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1;
}

.btns-wrapper {
  display: flex;
  padding: 20px 0;
}

.app-btns h2 {
  font-size: 60px;
  color: var(--section-bg-white);
  letter-spacing: 1px;
}
.app-btns h4 {
  font-size: 30px;
  color: var(--section-bg-white);
  letter-spacing: 1px;
}

a.app-icon img {
  max-width: 230px;
}

@media (min-width: 768px) {
  #apps {
    height: 400px;
  }
  .app-wrapper {
    position: relative;
  }
  .phone-image {
    position: relative;
    bottom: 0;
  }
  .content-container.apps-container {
    padding: 20px 20px;
  }
  .app-btns {
    position: relative;
    top: 80px;
    display: block;
  }
}

@media (max-width: 768px) {
  .app-wrapper {
    flex-direction: column;
  }

  .app-btns {
    padding-top: 40px;
  }
  .app-btns h2 {
    font-size: 32px;
  }
  a.app-icon img {
    max-width: 150px;
  }
}

/* FOOTER STYLES */

footer {
  background-color: #111111;
  color: #fff;
  text-align: center;
  position: relative;
}

footer h3 {
  color: #ffffff;
  font-size: 32px;
  letter-spacing: 1px;
}

footer a {
  color: #b3b3b3;
}

.send-message a {
  color: #fff !important;
  text-decoration: underline;
}

.rmda-container {
  margin-bottom: 10px;
}

.rmda-container a img {
  max-width: 80px;
}

.social-icons a {
  display: inline-block;
  margin: 20px 10px;
}

/* ZUPPLER MENU STYLES */

.z-menu-category-title,
.cart-title,
.cartInfo-title {
  text-transform: uppercase;
  color: var(--secondary-color) !important;
}

.z-menu-category-title::after {
  content: " ";
  display: block;
  width: 60px;
  height: 5px;
  margin: 10px auto;
  background-color: var(--brand-color);
}
.z-menu-category-description {
  font-family: "Roboto" !important;
}

.z-menu-item-title p,
.z-menu-item-price {
  font-family: var(--body-font);
}

.cart-orderInfo-order .zbutton {
  border: 1px solid #333333 !important;
}

/* PORTAL STYLES */

.z-portal-listing #ordering-section {
  display: none;
}
.show-results.z-portal-listing #ordering-section {
  display: block;
}

.z-portal-listing .portal-breadcrumb {
  display: none !important;
}

.portal-Queries-cell {
  padding: 10px 0;
}

.portal-restaurants {
  padding: 50px 0;
}

#hero-section,
#how-to-order,
#about-section,
#local-benefits,
#apps {
  display: none;
}

.z-portal-listing #hero-section,
.z-portal-listing #how-to-order,
.z-portal-listing #about-section,
.z-portal-listing #local-benefits,
.z-portal-listing #apps {
  display: block;
}
