:root {
  --margin-from-edge: 20px;
}

body {
  min-width: 360px;
}

header {
  padding: 10px;
  /* position: static; */
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2000;
}

#logo {
  height: 30px;
  display: block;
}

#logo-link {
  display: block;
  background: #fff;
  border-radius: 18px 0;
  padding: 8px;
}

#nav-logo {
  display: inline-block;
  width: 200px;
  margin: 30px 0 10px;
}

nav .mobile-nav-toggle {
  background: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  position: absolute;
  right: 10px;
  top: 10px;
  justify-content: center;
  align-items: center;
  justify-items: center;
  cursor: pointer;
  display: flex;
  z-index: 1001;
  transition: all 0.3s linear;
  outline: none;
  box-shadow: none;
  -webkit-tap-highlight-color: transparent;
}

nav.opened .mobile-nav-toggle {
  background: transparent;
}

nav .mobile-nav-toggle .line {
  fill: none;
  stroke: black;
  stroke-width: 10;
  rx: 8;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

nav .mobile-nav-toggle .line1 {
  stroke-dasharray: 60 207;
  stroke-width: 10;
  rx: 8;
}

nav .mobile-nav-toggle .line2 {
  stroke-dasharray: 60 60;
  stroke-width: 10;
}

nav .mobile-nav-toggle .line3 {
  stroke-dasharray: 60 207;
  stroke-width: 10;
}

nav.opened .mobile-nav-toggle .line1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 10;
}

nav.opened .mobile-nav-toggle .line2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
  stroke-width: 10;
}

nav.opened .mobile-nav-toggle .line3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 10;
}

nav>ul {
  list-style: none;
  margin: 0;
  padding: 0 0 20px;
  flex-direction: column;
  background: #fff;
  position: absolute;
  inset: 10px;
  z-index: 1000;
  border-radius: var(--box-radius);
  display: block;
  position: fixed;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s linear;
  overflow: auto;
}

nav.opened>ul {
  visibility: visible;
  opacity: 1;
  /* Glass Effect */
  backdrop-filter: blur(20px) saturate(200%);
  -webkit-backdrop-filter: blur(20px) saturate(200%);
  background-color: rgba(255, 255, 255, 0.8);
  box-shadow: #000 0px 0px 25px, #000 0px 0px 25px;
}

nav li {
  text-align: center;
}

nav ul ul {
  list-style: none;
  padding: 0;
  margin: 0 0 7px;
}

nav ul a {
  display: inline-block;
  font-weight: 700;
  font-size: 1.4rem;
  color: #000;
  outline: none;
  box-shadow: none;
  text-decoration: none;
  text-align: center;
  padding: 4px 10px;
  margin: 0 0 2px;
  font-family: var(--font-accent);
  position: relative;
  transition: all 0.3s linear;
}

nav ul a:after {
  content: '';
  display: block;
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 4px;
  background: var(--green3);
  border-radius: var(--box-radius);
  transition: all 0.3s linear;
}

nav ul a:hover {
  color: var(--blue1);
}

nav ul a:hover:after {
  width: 100%;
}

nav ul li li a {
  font-size: 1rem;
  font-weight: 400;
}

/* Nav Footer */
.nav-footer {
  border-top: 1px solid #ccc;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 15px;
  padding-top: 10px;
}

.nav-footer a {
  font-size: 0.9rem;
  padding: 0 10px;
}

.nav-footer .copy {
  font-size: 0.8rem;
}

.mobile-social-links{
  margin: 10px 0 20px;
}

/* Hero Section */
.hero-section .items{
  overflow: hidden;
}

/* Page, Headers */
.page h1 {
  font-size: 2rem;
}

.page h2{
  font-size: 1.4rem;
}

/* Product - Section */
.products-grid {
  grid-template-columns: repeat(2, 1fr);
}

.products-grid>.card br {
  display: block;
}

.products-grid>.card h2 {
  font-size: 0.85rem;
  line-height: 21px;
}

.contact-container {
    flex-direction: column;
}

address{
  line-height: 2rem;
  padding: 20px 0;
}

address br{
  line-height: 0;
  display: none;
}

@media screen and (orientation: landscape) {
  .hero-section{
    min-height: 400px;
  }

  .hero-section>.content {
    margin: var(--margin-from-edge);
  }

  #hero-item-biryani {
    top: 60px;
    width: 180px;
  }

  #hero-item-sauces {
    top: -20%;
    right: -10%;
    width: 300px;
  }

  #hero-item-sauces-2 {
    bottom: -10px;
    right: 0;
    width: 250px;
  }

  #hero-item-onion {
    bottom: 40px;
    width: 200px;
  }
}


@media screen and (orientation: portrait) {
  .hero-section>.content {
    margin: var(--margin-from-edge);
  }

  #hero-item-biryani {
    top: 200px;
    width: 180px;
  }

  #hero-item-sauces {
    top: -10%;
    right: -10%;
    width: 300px;
  }

  #hero-item-sauces-2 {
    bottom: -10px;
    right: -50px;
    width: 250px;
  }

  #hero-item-onion {
    bottom: 70px;
    left: 10px;
    width: 200px;
  }
}

#product-pop-up .content{
  font-size: 1.4rem;
  inset: 20px;
}

#product-pop-up > .btn-close{
  top: 30px;
  right: 30px;
}

#product-pop-up .under-construction{
  width: 90%;
  height: auto;
  margin-top: 20px;
}