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

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

:root {
  --brand-color: #eca153;
  --secondary-color: #253846;
  --heading-font: Roboto Slab;
  --heading-font-color: #253846;
  --body-font: Prompt;
  --body-font-color: #666666;
  --section-bg-white: #ffffff;
  --section-bg-grey: #f8f8f8;
  --section-bg-brand: #eca153;
  --section-color-white: #ffffff;
  --container-bg: #ffffff;
}

html,
body {
  scroll-behavior: smooth;
}

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

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

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(--brand-color);
  color: #ffffff;
  margin: 25px 10px;
  padding: 6px 20px;
  display: inline-block;
  border-radius: 5px;
  transition: 0.3s;
}

.btn-primary:hover {
  background-color: #bf232b;
}

/* DISCLAIMER SECTION STYLES */

.disclaimer-container {
  padding: 10px;
}

#disclaimer {
  background-color: var(--secondary-color) !important;
  color: #fff !important;
}

/* HERO SECTION STYLES */

#hero-section {
  background-image: url(../images/banner_final.jpeg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.hero-overlay {
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 50%);
}

.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: 30px;
}

.hero-logo {
  max-width: 250px;
}

.hero-text {
  font-size: 21px;
}

.hero-text a {
  color: #ffffff;
}
.hero-text a:hover {
  text-decoration: underline;
}

.store-options {
  display: flex;
  gap: 15px;
  margin: 20px 0 0 0;
}
button.store-btn {
  padding: 10px 15px;
  font-size: 18px;
  background-color: var(--brand-color);
  color: var(--secondary-color);
  font-family: "Prompt";
  cursor: pointer;
  border-radius: 5px;
  border: 2px solid transparent;
}
button.store-btn:hover {
  background-color: var(--secondary-color);
  color: var(--section-color-white);
}

.active {
  background-color: var(--secondary-color) !important;
  color: #fff !important;
  border: 2px solid #fff !important;
}

@media (width <=768px) {
  .store-options {
    flex-direction: column;
  }
}

/* ORDERING STYLES */

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

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

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

.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);
  font-size: 42px;
}

.steps {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  padding: 20px 0;
  color: var(--secondary-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;
  }
}

/*  ABOUT SECTION STYLES */

.content-container.about-container {
  display: flex;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
}

.about-verbiage {
  padding: 0 20px;
  flex: 1;
}

.about-verbiage h2 {
  color: var(--secondary-color);
}

@media (max-width: 768px) {
  .content-container.about-container {
    flex-direction: column;
  }
  .about-verbiage {
    padding: 20px 0;
  }
}

/* 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);
}

.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;
  gap: 10px;
}

.app-btns h2 {
  font-size: 42px;
  color: var(--heading-font-color);
}

.app-btns h3 {
  color: var(--heading-font-color);
}

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: var(--secondary-color);
  color: #fff;
  text-align: center;
  position: relative;
  display: none;
}

.z-portal-listing footer {
  display: block;
}

footer a {
  color: #b3b3b3;
}

.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);
}

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

/* PORTAL STYLES */

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

.portal-breadcrumb {
  display: block !important;
  max-width: 980px;
  margin: 0 auto;
}

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

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

#hero-section,
#how-to-order,
#about-section,
#local-benefits,
#apps,
#disclaimer {
  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,
.z-portal-listing #disclaimer {
  display: block;
}
