   * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    }

    ::-webkit-scrollbar {
        display: none;
    }

    body {
      font-family: "Cinzel", serif;
      background-color: #ffedd4;
      /* background-image: url('/images/ZEH\ Background.svg'); */
      background: linear-gradient(rgba(255,255,255,.6), rgba(255,255,255,.6)), url("/images/pattern.svg");
      background-repeat: repeat;
      background-size: 1920px 1080px; /* tile size */
    }

    
    nav {
      background-color: #700d1e;
      border-bottom: 8px solid #bc944c;
      padding: 2rem 2rem;
      display: flex;
      justify-content: space-evenly;
      align-items: center;
      position: fixed;
      top: 0;
      z-index: 1000;
      width: 100%;
    }

    .nav-links {
      list-style: none;
      display: flex;
      gap: 8rem;
    }

    .nav-links li a {
      color: white;
      text-decoration: none;
      font-size: 1.5rem;
      transition: text-decoration 0.3s ease;
    }

    .nav-links li a:hover {
      text-decoration: underline;
    }

    .menu-toggle {
      display: none;
      font-size: 1.8rem;
      color: white;
      cursor: pointer;
      margin-left: auto;
    }

    /* Responsive */
    @media (max-width: 768px) {
      nav {
        flex-direction: column;
        align-items: flex-start;
      }

      .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        align-items: center;
        gap: 1rem;
        padding-top: 1rem;
      }

      .nav-links.active {
        display: flex;
      }

      .menu-toggle {
        display: block;
        align-self: flex-end;
      }
    }

  /* Hero */
    .hero {
      display: flex;
      width: 100%;
      height: 80vh;  
      margin: 5em auto;
      overflow: hidden;
    }

    .hero-left, .hero-right {
      flex: 1;
    }

    .hero-left {
      background-image: url('/images/heroimage.webp');
      background-size: contain;
      background-position: center;
      background-repeat: no-repeat;
      overflow-y: hidden;
      max-width: 600px;
      margin-left: 5em;
      margin-top: 5em;
    }

    .hero-right {
      background:none;
      padding: 5rem 2rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
      text-align: center;
      margin-right: 50px;
      /* max-width: 700px; */
    }

    .hero-right h1 {
      font-size: 3rem;
      font-weight: 900;
      color: #700d1e;
      margin-bottom: 1rem;
      line-height: 1;
    }

    .hero-right h2 {
      font-size: 1.5rem;
      font-weight: 600;
      margin-bottom: 1rem;
    }

    .hero-right h3 {
      color: #000;
      line-height: 1.5;
      margin-bottom: 2rem;
      font-weight: 500;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .hero {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }


      .hero-left{
        margin: 2em auto;
      }

      .hero-left, .hero-right {
        width: 100%;
        height: 5em;
      }

      .hero-right {
        margin: auto;
        padding: 2rem;
      }

      .hero-right h1 {
        font-size: 2rem;
      }

      .hero-right h2 {
        font-size: 1.5rem;
      }

      .hero-right h3 {
        font-size: 0.8rem;
        font-weight: 500;
      }

    }

    .cuisine-container {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 0.5rem 1rem;
      flex-wrap: wrap;
      gap: 0.5rem;
      font-size: 1.5rem;
      font-weight: 500;
      color: #700d1e; /* Dark maroon */
    }

    .diamond {
      color: #bc944c; /* Gold */
      font-size: 1.5rem;
    }

    @media (max-width: 600px) {
      .cuisine-container {
        /* flex-direction: column; */
        font-size: 0.5rem;
        gap: 0.5rem;
      }

    }

    /* About Section */
.about-section {
  height: 100vh;
  padding: 40px 5%;
  /* background-color: #fffdf9; */
  display: flex;
  align-items: center;
  animation: appear linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}

.about-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1200px;
  margin: auto;
}

/* Left Text Content */
.about-text {
  flex: 1;
  min-width: 300px;
}

.about-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #700d1e;
}

.about-text h3 {
  font-size: 1.5rem;
  margin-top: 10px;
  font-weight: 600;
  color: #000;
}

.about-text p {
  font-size: 1.1rem;
  margin-top: 15px;
  line-height: 1.6;
  font-weight: 500;
  color: #000;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  background-color: #700d1e;
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
}

.btn:hover {
  scale: 1.1;
}

/* Right Carousel */
.about-carousel {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

/* Carousel Plate */
.plate {
  width: 40vw;
  height: 40vw;
  max-width: 500px;
  max-height: 500px;
  border-radius: 50%;
  margin: 15px auto 10px;
  background: radial-gradient(circle at center, #fffdf3 70%, #e6d9a6 100%);
  border: 10px solid #bc944c;
  box-shadow:
    inset 0 0 25px rgba(0, 0, 0, 0.08),
    0 0 20px rgba(212, 175, 55, 0.4),
    0 0 50px rgba(212, 175, 55, 0.2);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Inner Plate Layer */
.plate-inner {
  width: 80%;
  height: 80%;
  border-radius: 50%;
  background-color: #fffef9;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.dish {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  z-index: -1;         /* Ensure hidden images don't interfere */
  pointer-events: none;
  transition: opacity 0.6s ease;
}

.dish.active {
  opacity: 1;
  z-index: 2;          /* Bring active image to front */
  pointer-events: auto;
}


.caption {
  font-size: 1.1rem;
  font-weight: bold;
  color: #bc944c;
  margin-bottom: 10px;
}

.controls button {
  /* padding: 10px 18px; */
  padding: 8px 18px 4px 18px;
  font-size: 50px;
  background: none;
  color: #700d1e;
  border: none;
  border-radius: 5px;
  margin: 0 5px;
  cursor: pointer;
}

.controls button:hover {
  /* background-color: white; */
  color: #700d1e;
  scale: 1.1;
  /* border: 1px solid #700d1e; */
}

/* Responsive Layout */
@media (max-width: 768px) {
  .about-section {
    height: auto;
    padding: 60px 5%;
  }

  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-text,
  .about-carousel {
    max-width: 100%;
  }


  .about-text h2{
    font-size: 1.5rem;
  }

  .about-text h3{
    font-size: 1.1rem;
  }


  .about-text p{
    font-size: 0.8rem;
  }


  .plate {
    width: 60vw;
    height: 60vw;
    max-width: 400px;
    max-height: 400px;
  }

  .btn {
    align-self: center;

  }
}

.menu_container {
  padding: 60px 50px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.menu_container h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #700d1e;
}

.dishes {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Force 3 items per row */
  gap: 20px;
}

.card {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  animation: appear linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}


.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.card_body {
  padding: 10px;
}

.card_title {
  font-size: 1rem;
  color: #700d1e;
  font-weight: 500;
}


@media screen and (max-width: 992px) {
  .dishes {
    grid-template-columns: repeat(2, 1fr); /* 2 items per row on tablets */
  }
}

@media screen and (max-width: 600px) {
  .dishes {
    grid-template-columns: 1fr; /* 1 item per row on small screens */
  }
}


/* Testimonials Start */
.testimonials {
      position: relative;
      background: url('/images/victoria-shes-UC0HZdUitWY-unsplash.webp') no-repeat center center / cover;
      padding: 2.3rem 1.5rem 2.5rem;
      margin: 2rem 1.5rem 3rem 1.5rem;
      border-radius: 8px;
      text-align: center;
      color: #fff;
      animation: appear linear;
      animation-timeline: view();
      animation-range: entry 0% cover 40%;
    }

    .testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(45, 49, 56, 0.6);
  z-index: 0;
}
.testimonials > * {
  position: relative;
  z-index: 1;
}

    .testimonials:after {
      content: '';
      position: absolute;
      top: 0;
      height: 0;
      width: 0;
      border-color: transparent;
      border-style: solid;
      border-width: 1.5rem;
      border-top-color: #f9f9f9;
      margin-left: -1.5rem;
    }

    .testimonials-title {
      color: #f9f9f9;
      padding-bottom: 1.3rem;
    }

    .testimonial p {
      font-size: 1.3rem;
      line-height: 1.33;
      font-family: serif;
      font-style: normal;
      font-weight: 400;
      color: #ffe6b0;
    }

    .testimonial cite {
      display: block;
      font-family: sans-serif;
      color: #e0e0e0;
      margin-top: 1.5rem;
      font-size: 1rem;
    }

    .slides {
      overflow: hidden;
      padding-bottom: 3rem;
      position: relative;
    }

    .slide {
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.5s ease-in-out;
      position: absolute;
      width: 100%;
      left: 0;
      top: 0;
    }

    .slide.active {
      opacity: 1;
      pointer-events: auto;
      position: relative;
    }

    .slides-ctrl {
      position: absolute;
      bottom: 0;
      text-align: center;
      width: 100%;
    }

    .slide-btn {
      background: #5a5c5d;
      display: inline-block;
      width: 0.83rem;
      height: 0.83rem;
      margin: 0 0.5rem;
      border-radius: 999px;
      transition: background 0.3s, box-shadow 0.3s;
    }

    .slide-btn.active {
      background: #fff;
      box-shadow: 0 0 0 4px #bc944c;
    }

    @media (min-width: 480px) {
      .container {
        padding: 0 2rem;
      }
      .testimonials {
        padding: 4rem 0 2rem;
      }
      .testimonial p {
        font-size: 1.8rem;
        line-height: 1.3;
      }
    }
/* Testimonials End */


/* Contact Us */
.contact_container {
animation: appear linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
  position: relative;
  max-width: 1350px;
  width: 100%;
  margin: 100px auto;
  background: none;
  padding: 0 20px;
}

.contact-box {
  display: flex;
  flex-wrap: wrap;
  font-size: 15px;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
}

.contact-left {
  flex: 1 1 60%;
  padding: 40px;
  background-color: rgba(255, 221, 210, 0.3);
  color: #700d1e;
}

.contact-right {
  flex: 1 1 40%;
  padding: 20px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-right iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: 0;
  border-radius: 8px;
}

tr td:first-child {
  padding-right: 20px;
  font-weight: bold;
}

tr td {
  padding-top: 20px;
}

.contact-left div a {
  margin-right: 15px;
  font-size: 24px;
  color: #700d1e;
}

@media (max-width: 768px) {
  .contact-box {
    flex-direction: column;
  }

  .contact-left, .contact-right {
    flex: 1 1 100%;
    padding: 20px;
  }

  .contact-right iframe {
    min-height: 250px;
  }
}

.whatsapp-widget {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
    }

    .chat-preview {
      background: #e1f7e5;
      color: #1c1c1c;
      padding: 12px 16px;
      border-radius: 12px;
      margin-bottom: 10px;
      max-width: 250px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.15);
      font-size: 14px;
      position: relative;
    }

    .chat-preview::after {
      content: "";
      position: absolute;
      bottom: -8px;
      right: 20px;
      border-width: 8px;
      border-style: solid;
      border-color: #e1f7e5 transparent transparent transparent;
    }

    .whatsapp-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #25d366;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
      cursor: pointer;
    }

    .whatsapp-btn:hover {
      transform: scale(1.1);
    }

    .whatsapp-icon-wrapper {
      background: white;
      border-radius: 50%;
      padding: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .whatsapp-icon-wrapper img {
      width: 26px;
      height: 26px;
    }


@keyframes appear {
  from {opacity: 0; scale: 0.5;} 
  to {opacity: 1; scale: 1;}
}







/* Base layout */
.social-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content:flex-start;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
}

/* Social icons */
.social-icons ion-icon {
  font-size: 28px;
  color: #000; /* customize as needed */
  transition: transform 0.3s ease;
}
.social-icons ion-icon:hover {
  transform: scale(1.15);
}

/* Delivery icons */
.delivery-icon {
  height: 28px;
  width: auto;
  transition: transform 0.3s ease;
}
.delivery-icon:hover {
  transform: scale(1.1);
}

/* Mobile tweaks */
@media (max-width: 480px) {
  .social-icons {
    gap: 12px;
    padding: 12px 8px;
  }

  .social-icons ion-icon {
    font-size: 24px;
  }

  .delivery-icon {
    height: 24px;
  }
}