:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  --first-color: #ffa530;
  --black-color: hsl(0, 0%, 0%);
  --black-color-light: hsl(0, 0%, 40%);
  --white-color: hsl(0, 0%, 95%);
  --title-color: hsl(0, 0%, 0%);
  --text-color: hsl(0, 0%, 35%);
  --text-color-light: hsl(0, 0%, 64%);
  --body-color: hsl(0, 0%, 87%);
  --container-color: hsl(0, 0%, 83%);

  /*========== Font and typography ==========*/
  --body-font: "Bai Jamjuree", sans-serif;
  --biggest-font-size: 2.5rem;
  --h1-font-size: 1.75rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1.125rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: 700;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

.body{
    background-color: rgb(255, 255, 255);
    font-family: sans-serif; 
    overflow-x: hidden;
    width: 100dvw;
}
:root::-webkit-scrollbar{
    display: none;
  }
  
  :root {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  
@font-face {
    font-family: 'Cookie-Regular';
    src: url('../fonts/Cookie-Regular.ttf') format('truetype');
  }
  @font-face {
    font-family: 'shabby';
    src: url('../fonts/Anothershabby_pro_light_v2\ trial.ttf') format('truetype');
  }
  :root {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  
  @font-face {
    font-family: 'Cookie-Regular';
    src: url('../fonts/Cookie-Regular.ttf') format('truetype');
  }
  
  @font-face {
    font-family: 'shabby';
    src: url('../fonts/Anothershabby_pro_light_v2 trial.ttf') format('truetype');
  }
  
  :root {
    --bar-width: 60px;
    --bar-height: 8px;
    --hamburger-gap: 6px;
    --foreground: #481D24;
    --background: #2b2624;
    --hamburger-margin: 8px;
    --animation-timing: 200ms ease-in-out;
    --hamburger-height: calc(var(--bar-height) * 3 + var(--hamburger-gap) * 2);
  }
  
  .hamburger-menu {
    margin-top: 10px;
    padding-right: 0px!important;
    --x-width: calc(var(--hamburger-height) * 1.41421356237);
    display: flex;
    flex-direction: column;
    gap: var(--hamburger-gap);
    width: max-content;
    position: fixed;
    top: var(--hamburger-margin);
    right: var(--hamburger-margin);
    z-index: 20;
    cursor: pointer;
  }
  
  .hamburger-menu:has(input:checked) {
    --foreground: #000000;
    --background: #481D24;
  }
  
  .hamburger-menu:has(input:focus-visible)::before,
  .hamburger-menu:has(input:focus-visible)::after,
  .hamburger-menu input:focus-visible {
    border: 1px solid var(--background);
    box-shadow: 0 0 0 1px var(--foreground);
  }
  
  .hamburger-menu::before,
  .hamburger-menu::after,
  .hamburger-menu input {
    background-color: var(--background);
    content: "";
    width: var(--bar-width);
    height: var(--bar-height);
    border-radius: 999px;
    transform-origin: right center;
    transition: opacity var(--animation-timing), width var(--animation-timing),
      rotate var(--animation-timing), translate var(--animation-timing),
      background-color var(--animation-timing);
  }
  
  .hamburger-menu input {
    appearance: none;
    padding: 0;
    margin: 0;
    outline: none;
    pointer-events: none;
  }
  
  .hamburger-menu:has(input:checked)::before {
    rotate: -45deg;
    width: var(--x-width);
    translate: 0 calc(var(--bar-height) / -2);
  }
  
  .hamburger-menu:has(input:checked)::after {
    rotate: 45deg;
    width: var(--x-width);
    translate: 0 calc(var(--bar-height) / 2);
  }
  
  .hamburger-menu input:checked {
    opacity: 0;
    width: 0;
  }
  
  
  .hamburger-menu:has(input:checked) ~.sidebar {
    right: 0;
  }
  
  .desktop-nav {
    display: none;
  }
  
  @media (min-width: 768px) {
    .hamburger-menu {
      display: none;
    }
  }
  @media (max-width: 768px) {
    .navbar {
      display: none;
    }
  }
  /* Sidebar styles */
.sidebar-cart {
  height: 100%;
  width: 250px;
  position: fixed;
  z-index: 1;
  top: var(--header-height);
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  padding-top: 20px;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.sidebar-cart nav ul {
  list-style-type: none;
  padding: 0;
}

.sidebar-cart nav ul li {
  margin: 15px 0;
}

.sidebar-cart nav ul li a, .icon-link {
  color: var(--white-color);
  padding: 10px 20px;
  text-decoration: none;
  display: block;
  transition: background-color 0.3s ease;
}

.sidebar-cart nav ul li a:hover, .sidebar nav ul li a.active, .icon-link:hover {
  background-color: var(--first-color);
}

.icon-link {
  text-align: center;
  cursor: pointer;
}

.icon-container {
  display: inline-block;
  padding: 10px;
}

@media screen and (max-width: 768px) {
  .sidebar-cart {
    width: 100%;
    height: auto;
    position: relative;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }

  .sidebar-cart.active {
    transform: translateX(0);
  }

}
  
  .sidebar {
    width: 20rem;
    height: 100vh;
    background-color: #f2f2f2;
    position: fixed;
    top: 0;
    right: -20rem;
    transition: right 0.3s ease-in-out;
    z-index: 2;
    border-left: 1px solid #ddd;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  .sidebar-nav {
    margin-top: 50px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .sidebar-nav ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .sidebar-nav li {
    margin-bottom: 2rem;
    margin-left: 0;
  }
  
  .sidebar-nav a {
    text-decoration: none;
    color: #333;
    transition: transform 0.2s ease-in-out, color 0.2s ease-in-out;
    display: inline-block;
    width: 100%;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    position: relative;
    top: -10px; /* lowered the links */
  }
  
  .sidebar-nav a:hover {
    color: #f5871f; /* changed the color to orange */
    transform: translateX(25%);
  }
  
  .sidebar-nav li:hover {
    background-color: transparent;
  }

  .navbar.scrolled-up {
    transform: translateY(-100%);
}



/* =================Cart menu styles============== */
:root {
  --container-color: #ffffff;
  --primary-color: #ffa530;
  --text-color: #333333;
  --background-color: #f8f8f8;
  --z-fixed: 1000;
  --border-radius: 10px;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition-duration: 0.3s;
}

.cart-menu {
  width: 350px;
  height: 97%;
  background-color: var(--background-color);
  position: fixed;
  right: 0;
  top: 0;
  z-index: var(--z-fixed);
  padding: 20px;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
  transition: transform var(--transition-duration) ease-in-out;
  transform: translateX(100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cart-menu.open {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--primary-color);
  padding-bottom: 10px;
}

.cart-header h2 {
  font-size: 1.5em;
  color: var(--primary-color);
}

.close-cart {
  background: none;
  border: none;
  font-size: 1.5em;
  cursor: pointer;
  color: var(--primary-color);
}

.cart-items {
  flex-grow: 1;
  overflow-y: auto;
  margin-top: 20px;
  padding-right: 10px;
}

.cart-item {
  display: flex;
  align-items: center;
  padding: 10px;
  margin-bottom: 10px;
  border-width: 0px 0px 1px 0px;
  border-style: solid;
  border-color: #333333;
  transition: transform var(--transition-duration) ease-in-out;
}

.cart-item img {
  width: 50px;
  height: 50px;
  border-radius: var(--border-radius);
  margin-right: 10px;
}

.cart-item-details {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cart-item-name {
  font-size: 1rem;
  color: var(--text-color);
  font-weight: bold;
}

.cart-item-quantity {
  font-size: 0.9rem;
  color: var(--text-color);
}

.cart-item-price {
  font-size: 1rem;
  color: var(--primary-color);
  font-weight: bold;
}

.cart-item-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: 10px;
}

.cart-item-actions button {
  background: none;
  border: none;
  font-size: 0.8rem;
  color: var(--primary-color);
  cursor: pointer;
  margin-top: 5px;
}

.cart-footer {
  border-top: 1px solid var(--primary-color);
  padding-top: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.total {
  display: flex;
  justify-content: space-between;
  font-size: 1.2rem;
  color: var(--text-color);
  margin-bottom: 20px;
  width: 100%;
}

.checkout-button {
  width: 100%;
  padding: 10px;
  border: none;
  color: var(--text-color);
  font-size: 1.2rem;
  cursor: pointer;
  background-color: var(--background-color);
  border: 2px solid var(--first-color);
  transition: background-color var(--transition-duration) ease;
  border-radius: var(--border-radius);
}

.checkout-button:hover {
  background-color: var(--first-color);
}


        .cart-count {
          background: red;
          color: white;
          border-radius: 50%;
          padding: 2px 6px;
          font-size: 12px;
          position: absolute;
          top: -10px;
          right: -10px;
      }

      .cart-icon-container {
        position: relative;
        display: inline-block;
        margin-right: 40px;
      }
      
@media (max-width: 768px) {
  .cart-menu {
      width: 100%;
  }

  .cart-header h2 {
      font-size: 1.2em;
  }

  .checkout-button {
      font-size: 1rem;
  }
}

        /*=================section 1 styles=================*/
        /* Grid layout for section1 */
        .section1 .container {
          display: grid;
          height: 100vh;
          width: 100dvw;
          grid-template-columns: 1fr 1fr;
          gap: 20px;
          grid-template-areas:
              "navbar navbar"
              "weeklySpecialInfo weeklySpecial";
          background-repeat: no-repeat;
          background-size: cover;
            }

/*=================section 1 styles=================*/
.section1 .container {
  display: grid;
  padding-top: 100px;
  height: 100vh;
  width: 100vw;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  grid-template-areas:
      "navbar navbar"
      "weeklySpecialInfo weeklySpecial";
  background-repeat: no-repeat;
  background-size: cover;
}

.navbar {
  grid-area: navbar;
  width: 100%;
  height: 80px;
  transition: top 0.3s ease-in-out;
}

.nav-bg {
  top: 0;
  left: 0;
  width: 100vw;
  height: 100px;
  z-index: 99;
  position: fixed;
  background-color: rgba(255, 212, 157, 0.6);
  display: flex;
  filter: drop-shadow(0px 0px 10px rgba(255, 212, 157, 0.6));
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  animation: slideInDown 0.5s ease-in-out;
}

@keyframes slideInDown {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}

.sidebar {
  display: none;
}

.navbar nav {
  width: 100%;
  height: 100%;
}

.navbar .nav-links {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
}

.navbar .nav-links li {
  position: relative;
}

.navbar .nav-links a {
  color: #333;
  text-decoration: none;
  font-weight: bold;
  padding: 0.5rem 1rem;
  position: relative;
  transition: color 0.4s ease-in-out;
}

.navbar .nav-links a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fc902b;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease-in-out;
}

.navbar .nav-links a:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.navbar .nav-links a:hover {
  color: #fc902b;
}

.navbar .cart-icon-container {
  position: relative;
}

.navbar .cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background-color: #fc902b;
  color: white;
  border-radius: 50%;
  padding: 2px 6px;
  font-size: 12px;
}

.logo img {
  transition: transform 0.4s ease-in-out;
}

.logo img:hover {
  transform: scale(1.1) rotate(5deg);
}

/* Dropdown menu styles */
.navbar .nav-links li:hover .dropdown {
  display: block;
}

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.dropdown a {
  padding: 10px 20px;
  white-space: nowrap;
  display: block;
  color: #333;
  transition: background 0.3s ease;
}

.dropdown a:hover {
  background-color: #f0f0f0;
}


      .weeklyspecial-container {
          display: grid;
          grid-template-columns: 1fr 1fr;
          gap: 20px;
          grid-template-areas:
              "weeklySpecialInfo weeklySpecial";
          margin: 0 100px 400px 100px;
      }

      #weeklyspecial {
          margin-bottom: 20px;
          grid-area: weeklySpecial;
      }

      .weeklySpecial {
          display: flex;
          flex-direction: column;
      }

      .weeklySpecial h1 {
          margin-top: 28px;
          font-family: 'shabby';
          font-size: 50px;
          white-space: pre;
      }

      .weeklySpecial h2 {
          font-family: 'shabby';
          font-size: 36px;
          
      }

      .weeklySpecial p {
          margin-top: 20px;
          font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
          font-size: 28px;
      }

      .weeklySpecial img.special-image {
          width: 50%;
          height: auto;
          display: block;
          margin: 0 auto;
      }

      .weeklySpecialInfo {
          grid-area: weeklySpecialInfo;
          position: relative;
          max-width: 100%;
          height: 600px;
          left: 100px;
          top: 20px;
      }

      .weeklySpecialInfo h1 {
          margin: 0;
          font-family: 'shabby';
          font-size: 120px;
          white-space: pre;
          margin-bottom: 28px;
      }

      .weeklySpecialInfo p {
          margin: 0;
          font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
          font-size: 28px;
          max-width: 565px;
          margin-top: 28px;
          margin-bottom: 28px;

      }

      .placeOrder, .add-to-cart {
          border: solid 3px #ffa530;
          border-radius: 99px;
          margin-top: 10px;
          background-color: #ffa530;
          color: rgb(255, 255, 255);
          width: 130px;
          height: 40px;
          font-weight: bolder;
          font-size: 14px;
          cursor: pointer;
          transition: background-color 0.3s, color 0.3s, border 0.3s;
      }

      .placeOrder:hover, .add-to-cart:hover {
          background-color: #ffffff;
          color: #ffa530;
          border: solid 3px #ffa530;
      }

      .getStarted {
          border: solid 3px #ffa530;
          border-radius: 99px;
          margin-top: 10px;
          background-color: #ffffff;
          color: #ffa530;
          width: 130px;
          height: 40px;
          font-weight: bolder;
          font-size: 14px;
          margin-left: 30px;
          cursor: pointer;
          transition: background-color 0.3s, color 0.3s, border 0.3s;
      }

      .getStarted:hover {
          background-color: #ffa530;
          color: #ffffff;
          border: solid 3px #ffa530;
      }

      .logo {
          margin-right: 20px;
      }

      .logo img {
          width: 50px;
          height: 50px;
      }

      .nav-links {
          list-style: none;
          padding: 0;
          margin: 0;
          display: flex;
          justify-content: space-between;
          align-items: center;
      }

      .nav-links li {
          display: inline-block;
          margin-right: 20px;
          font-family: sans-serif;
      }

      .nav-links ul li a {
          text-transform: uppercase;
          color: white;
      }
      .nav-links ul {
          list-style: none;
      }

      nav {
          text-align: center;
      }

      nav ul {
          list-style: none;
          display: inline-block;
      }

      nav ul li {
          display: inline;
          margin-right: 20px;
      }

      nav ul li a {
          font-size: 20px;
          text-decoration: none;
          color: #000000;
          font-weight: 1000;
          transition: color 0.3s ease;
      }

      nav ul li a:hover {
          color: #ff6600;
      }

      .icon-link {
          margin-right: 0;
      }

      .icon-container {
          font-size: 24px;
          color: #333;
          display: inline;
      }

      /* Popup container for the "Contact us" button */

      /* Styles for the popup container */
      .popup-container {
          display: none;
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          z-index: 9999;
          justify-content: center;
          align-items: center;
          overflow: hidden; /* Prevent scrolling when the popup is active */
      }

      .popup-overlay {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          backdrop-filter: blur(5px); /* Blur the background */
      }

      .popup-content {
          background-color: #fff;
          padding: 20px;
          border-radius: 8px;
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
          z-index: 10000; /* Higher z-index than other content */
          position: relative;
          display: flex;
          flex-direction: column;
          width: 20vw;
          justify-content: center;
          align-items: center;
          font-family: sans-serif;
      }

      #contactForm {
          display: flex;
          flex-direction: column;
          justify-content: center;
          align-items: start;
          gap: 0.2rem;
      }

      #contactForm input {
          width: 15vw;
          padding: 0.65rem;
      }

      #contactForm label {
          display: flex;
      }

      input#message {
          height: 5rem;
      }

      .close-btn {
          position: absolute;
          top: 20px;
          right: 25px;
          font-size: 30px;
          cursor: pointer;
          transition: color 0.2s ease;
      }

      .close-btn:hover {
          color: #ff7f50; /* Change color on hover */
      }

      /* Prevent scrolling when the popup is active */
      body.popup-active {
          overflow: hidden;
      }
      

    @media (max-width: 900px) {
              .section1 .container {
                  grid-template-columns: 1fr;
                  grid-template-areas:
                      "navbar"
                      "weeklySpecialInfo"
                      "weeklySpecial";
                  height: fit-content;
              }
    
              .weeklySpecialInfo {
                  width: 100%;
                  position: static;
                  height: fit-content;
                  text-align: center;
                  margin-left: 0px;
                  margin-top: 390px;
              }
    
              .weeklySpecialInfo h1 {
                  font-size: 40px;
                  white-space: normal;
              }
    
              .weeklySpecialInfo p {
                  font-size: 20px;
              }
    
              .weeklySpecial {
                  margin: 0;
                  margin-top: 100px;
                  max-height: 300px;
                  background-repeat: no-repeat;
                  background-size: contain;
              }
          }

/*//////////////////////// sectie 2 /////////////////////////*/
.section2{
    position: relative;
    margin-top: 100px;
    height: fit-content;
    width: 100dvw;

}
.section2 .container {  display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px 0px;
    grid-auto-flow: row;
    grid-template-areas:
      "SpecialRecipesInfo SpecialRecipesInfo"
      "SpecialRecipes     SpecialRecipes";
  }
  
  .specialRecipesInfo { grid-area: SpecialRecipesInfo; 
    width: 100%;
    height: fit-content;
    text-align: center;
}

.specialRecipesInfo h1{

    font-size: 80px;
    font-family: Arial, Helvetica, sans-serif;
    padding: 0;
    margin: 0;
}
.specialRecipesInfo p{
    font-size: 40px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: lighter;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
  
  .specialRecipes { grid-area: SpecialRecipes; 
    width: 100%;
    height: 500px;
}

.flickity-prev-next-button.next, .flickity-prev-next-button.previous{
    z-index: 5;
    background-color: #ffa530;
    opacity: 0.8;
    transition: background-color 0.3s, opacity 0.3s; /* added transition */


    &:hover{
        background-color: #ffa530;
        opacity: 1;
    }
}



.carousel {
    height: fit-content;
    max-width: 1090px;
    margin-left: auto;
    margin-right: auto;
}


.carousel-cell {
  width: 350px;
  height: 400px;
  margin-right: 20px;
  background: rgb(253, 248, 234);
  border-radius: 30px;
}

.carousel-cell img{
    height: 140px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
}
.cell-info h1{
    text-align: center;
    letter-spacing: 5px;
}
.cell-info p{
    font-family: monospace;
    margin-left: 13%;
    display: list-item;
    margin-top: 8px;
    margin-bottom: 0;
    font-size: 15px;
}
.cell-info{
    width: 90%;
    height: fit-content;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}
  
.cell-info button{
    border: solid 3px #ffa530;
    border-radius: 99px;
    background-color: #ffa530;
    color: rgb(255, 255, 255);
    width: 110px;
    height: 22px;
    margin-left: 8%;
    font-weight: lighter;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s, border 0.3s; /* added transition */
    
    &:hover{
    background-color: #ffffff;
    color:#ffa530;
    border: solid 3px #ffa530;
 }
}

.cell-order {
    width: 90%;
    height: 30px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cell-order p{
    font-size: 20px;
    font-weight: 600;
    position: relative;
    margin-left: 50px;
    
}

.cell-order button{

    border: solid 3px #ffa530;
    border-radius: 99px;
    background-color: #ffa530;
    color: rgb(255, 255, 255);
    width: 80px;
    height: 26px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s, border 0.3s; /* added transition */
&:hover{
    background-color: #ffffff;
    color:#ffa530;
    border: solid 3px #ffa530;
}
}

.rating-carousel{
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

@media (max-width: 900px){

.specialRecipesInfo h1{
    font-size: 50px;
}
.specialRecipesInfo p{
    font-size: 20px;
}
}

/*//////////////////////// sectie 3 /////////////////////////*/
.section3{
    position: relative;
    margin-top: 100px;
    height: fit-content;
    width: 100dvw;

}
.section3 .container {  display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    grid-template-rows: 1fr;
    gap: 0px 0px;
    grid-auto-flow: row;
    grid-template-areas:
      "ourMenuImg ourMenu";
      text-align: left;
  }
  
  .ourMenuImg { grid-area: ourMenuImg; 
    background-image: url('../images/menu.png');
    background-repeat: none;
    background-size: contain;
    height: 100%;
    width: 440px;
    margin-left: 100px;
    
}
  
  .ourMenu { grid-area: ourMenu; 
    width: 100%;
    height: 500px;
}
.ourMenu h1{
    margin: 0;
    font-size: 80px;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.ourMenu p{
    margin: 0;
    font-size: 30px;
    width: 90%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
    height: 200px;
}
.seeMenu{
    position: relative;
    top: 120px;
    left: 0px;
    border: solid 3px #ffa530;
    border-radius: 99px;
    margin-top: 10px;
    background-color: #ffa530;
    color: rgb(255, 255, 255);
    width: 180px;
    height: 50px;
    font-weight: bolder;
    font-size: 20px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s, border 0.3s; /* added transition */


    &:hover{
        background-color: #ffffff;
        color:#ffa530;
        border: solid 3px #ffa530;
    }

}
  
@media (max-width: 900px){
.ourMenuImg{
    width: 100px;
    height: 115px;
    background-image: url('../images/menu.png') center;
    background-repeat: none;
    background-size: contain;   
    margin-left: auto;
    margin-right: auto;
}
.ourMenu{
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    width: 80%;
}
.ourMenu h1{
    width: 90%;
    font-size: 40px;
    margin-left: auto;
    margin-right: auto;
}
.ourMenu p{
    font-size: 25px;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}
.ourMenu button{
    font-size: 15px;
    top: 0px;
    left: 0;
    margin-top: 50px;

}
.section3 .container {  display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 0.1fr 1fr;
    gap: 0px 0px;
    grid-auto-flow: row;
    grid-template-areas:
      "ourMenuImg"
      "ourMenu";
      
  }

}
/*//////////////////////// sectie 4 /////////////////////////*/

.section4{
    position: relative;
    margin-top: 200px;
    height: fit-content;
    width: 100dvw;


}

.ourServices {
    width: 100%;
    height: fit-content;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    grid-template-areas:
      "box1 box2 box3";
      margin-left: auto;
      margin-right: auto;
  }
  
  .box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  
  .box img {
    width: 95px;
    height: 100px;
    border-radius: 0%;
    margin-bottom: 20px;
  }
  
  .box1 {
    grid-area: box1;
    width: 300px;
  }
  
  .box2 {
    grid-area: box2;
    width: 300px;
  }
  
  .box3 {
    grid-area: box3;
    width: 300px;
  }

  @media (max-width: 900px){
  .ourServices {
        width: 80%;
        height: fit-content;
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr 1fr;
        gap: 20px;
        grid-template-areas:
          "box1"
          "box2"
          "box3";
        margin-left: auto;
        margin-right: auto;
    }
}

/*//////////////////////// sectie 5 /////////////////////////*/

.section5{
    position: relative;
    margin-top: 100px;
    width: 100dvw;

}
.section5 .container {  display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    grid-template-rows: 1fr;
    gap: 0px 0px;
    grid-auto-flow: row;
    grid-template-areas:
      "chefInfo chefImg";
  }
  
  .chefInfo { grid-area: chefInfo; 
    width: 100%;
    height: fit-content;
}
.chefInfo h2{
    font-size: 65px;
    font-weight: 700;
    margin: 0;
    margin-left: 120px;
    font-family: sans-serif;
}
.chefInfo h1{
    padding-bottom: 10px;
    font-size: 50px;
    font-weight: 600;
    margin: 0;
    margin-left: 0px;
}
.chefInfo p{
    font-size: 25px;
    font-family: 'Courier New', Courier, monospace;
    font-weight: 100;
    margin: 0;
    margin-left: 120px;
}

.checklist {
    flex-direction: column;
    align-items: center;
  }
  
  .checklist-item {
    display: flex;
    align-items: left;
    margin-top: 20px;
    margin-left: 120px;
  }

.checklist p{
    font-size: 40px;
    font-family: 'Courier New', Courier, monospace;
    font-weight: 400;
    margin: 0;
    margin-left: 50px;
}
  
  .chefImg { grid-area: chefImg; 
    width: 390px;
    height: 400px;
    background-image: url('../images/chef.png');
    background-repeat: none;
    background-size: contain;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 678px){

    .section5 .container {
        grid-template-columns: 1fr ;
        grid-template-rows: 1fr 1fr;
        gap: 0px 0px;
        grid-auto-flow: row;
        grid-template-areas:
          "chef"
          "chefImgInfo";
          margin-left: auto;
          margin-right: auto; 
    }
    .chefImg { 
        width: 240px;
        height: 250px;
    }
    .chefInfo{
        margin-top: 270px;
        text-align: left;
    }
    .chefInfo h2{
        width: 100vw;
        margin-left: auto;
        margin-right: auto;
        font-size: 50px;
        text-align: center;
        
    }
    .chefInfo p{
        font-size: 18px;
        text-align: center;
        width: 80%;
        margin-left: auto;
        margin-right: auto; 
    }
    .checklist-item p{
        text-align: left !important;
        margin-left: 0px;
        padding-top: 15px;
        font-weight: 500;
        font-size: 20px;
    }
    .checklist-item{
        margin-left: 30%;
        text-align: left !important;
    }
}

/*//////////////////////// sectie 6 /////////////////////////*/

.section6{
    position: relative;
    margin-top: 100px;
    width: 100dvw;
}

.section6 .container {  display: grid;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    grid-template-areas:
      "reviewTexts"
      "customersReviews";
  }
  
  .reviewTexts { grid-area: reviewTexts; 
    width: 80%;
    height: fit-content;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.reviewTexts h1{
    font-size: 65px;
    font-weight: 700;
    margin: 0;
    font-family: sans-serif;

}
.reviewTexts p{
    font-size: 25px;
    font-family: 'Courier New', Courier, monospace;
    font-weight: 100;
    margin: 0;
    margin-top: 20px;
}
  
  .customersReviews{ grid-area: customersReviews;
    width: 100%;
    height: 506px;
  }


  
  
  .rev-section{
    margin: auto;
    padding: 0 1rem;
    max-width: 1100px;
    text-align: center;
  }
  
  .title{
    font-size: 3.5rem;
    color: rgb(50, 50, 50);
    margin-bottom: .5rem;
    font-family: san;
  }

  .reviews{
    margin: 2rem auto;
    display: flex;
    flex-wrap: wrap;
  }
  .review{
    margin: 0 1rem;
    min-width: 300px;
    flex: 1;
  }
  
  .head-review{
    margin: 1.75rem auto;
    width: 150px;
    height: 150px;
  }
  .head-review img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
  }
  
  .body-review{
    padding: 2.5rem;
    border-radius: 12px;
    border: solid 3px #ffa530;
    height: 200px;
  }
  .name-review{
    font-size: 1.5rem;
    color: rgb(50, 50, 50);
    margin-bottom: .25rem;
  }
  .place-review{
    color: violet;
    font-style: italic;
  }
  .rating{
    color: rgb(253, 180, 42);
    margin: 1rem 0;
  }
  .desc-review{
    line-height: 1.5rem;
    letter-spacing: 1px;
    color: rgb(35, 31, 31);
  }
  
  @media (max-width: 678px){
    .review{
      margin-top: 1.5rem;
    }
  }
  .credit a{
    text-decoration: none;
    color: #fff;
  }

/*//////////////////////// sectie 7 /////////////////////////*/

.section7 {
  position: relative;
  margin-top: 100px;
  background-color: #f8f8f8;
  padding: 40px 0;
  border-top: 1px solid #e7e7e7;
  width: 100dvw;
}

.footer-container {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  font-size: 1rem;
  gap: 1rem;
  padding: 2rem 1rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.list-item--title {
  font-weight: bold;
  color: #ffa530;
  margin-bottom: 1rem;
}

.list-item {
  list-style: none;
}

.list-item a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
}

.list-item a:hover {
  text-decoration: underline;
  color: #f5871f;
}

.footer-bottom {
  text-align: center;
  font-size: 0.9rem;
  color: #777;
  padding-top: 20px;
  border-top: 1px solid #e7e7e7;
}

.footer-bottom-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding-top: 10px;
}

.footer-bottom-links a {
  color: #777;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #f5871f;
}


/* ================form header==================== */

.form-login header{
  font-family: 'shabby';
  font-size: 60px;
}

.form-signup header{
  font-family: 'shabby';
  font-size: 60px;
}

.field-button {
  text-align: center;
  /* margin-top: 20px; */
}

.field-button input[type="submit"] {
  background-color: #fc902bfb;
  border: none;
  color: white;
  padding: 10px 22px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.field-button input[type="submit"]:hover {
  background-color: #fc902bfb;
}

.field-image{
  background-color: #fc902bfb;
  border: none;
  color: white;
  padding: 10px 22px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: -10px 2px;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

#fileInput {
  display: none;
}

.link {
  font-size: 20px;
}

.empty-cart {
  margin-bottom: 20px;
  width: 100%;
  padding: 10px;
  border: none;
  color: var(--text-color);
  font-size: 1.2rem;
  cursor: pointer;
  background-color: rgb(218, 138, 138);
  border: rgb(241, 35, 35) 2px solid;
  transition: background-color var(--transition-duration) ease;
  border-radius: var(--border-radius);
}

.empty-cart:hover {
  background-color: red; /* Change background color on hover */
}