body {
      margin: 0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    /* Marquee Banner */
    .marquee {
      background: #ac0a64;
      color: #fff;
      font-size: 14px;
      padding: 8px 0;
      text-align: center;
    }

    /* Header */
   
/*.navbar {*/
/*  display: flex;*/
/*  justify-content: space-between;*/
/*  align-items: center;*/
  /*padding: 15px 30px;*/
  /*background-color: #381700;*/
/*  background-color:#8d4d21;*/
/*  flex-wrap: wrap;*/
/*  color:#e74700;*/
/*}*/

/*.nav-left {*/
/*  display: flex;*/
/*  align-items: center;*/
/*  gap: 20px;*/
/*  padding-left: 225px; */
/*}*/

/*.nav-right {*/
/*  display: flex;*/
/*  align-items: center;*/
/*  gap: 20px; */
/*  padding-right:125px;*/
/*}*/

/*.nav-left a,*/
/*.nav-right a {*/
/*  text-decoration: none;*/
/*  color: #e74700;*/
/*  font-weight: 500;*/
/*  font-size: 16px;*/
/*}*/

/*.nav-left i,*/
/*.nav-right i {*/
/*  font-size: 10px;*/
/*  margin-left: 4px;*/
/*}*/

/*.nav-logo img {*/
  /*height: 50px;*/
/*  max-width: 135px;*/
/*}*/

/*@media (max-width: 768px) {*/
/*  .navbar {*/
/*    flex-direction: column;*/
/*    text-align: center;*/
/*  }*/

/*  .nav-left,*/
/*  .nav-right {*/
/*    justify-content: center;*/
/*    flex-wrap: wrap;*/
/*    margin: 10px 0;*/
/*  }*/

/*  .nav-logo img {*/
/*    margin: 10px 0;*/
/*  }*/
/*}*/
.navbar {
  display: flex;
  justify-content: space-between;
  /*padding: 1rem 2rem;*/
  background: #884727;
  color: #d75728;
  align-items: center;
}
.nav-container {
  display: flex;
    justify-content: space-evenly;
    align-items: center;
    max-width: 800px;
    margin: auto;
    /*padding: 10px 17px;*/
    flex-wrap: wrap;
    /* width: 100% !important; */
    align-content: stretch;
}


.nav-left,
.nav-right {
  display: flex;
  gap: 20px;
  list-style: none;
}

.nav-left li a,
.nav-right li a {
  text-decoration: none;
  color: #fdd835;
  font-weight: bold;
  transition: color 0.3s;
  font-size:19px;
}

.nav-left li a:hover,
.nav-right li a:hover {
  color: #fff;
}

.nav-logo img {
  max-height: 100px;
  width: auto;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    align-items: center;
  }

  .nav-left,
  .nav-right {
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    margin: 10px 0;
  }
}

.hero {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
      padding: 40px;
      background: url('images/banner.jpg') center/cover no-repeat;
      color: white;
      height: 90vh;
      text-shadow: 1px 1px 4px #000;
    }

    .hero h1 {
      font-size: 4rem;
      margin: 0;
    }

    .hero p {
      font-size: 1.3rem;
      margin: 20px 0;
      line-height
    }

    .hero button {
      padding: 10px 25px;
      background: #fff;
      color: #a52a2a;
      border: none;
      font-weight: bold;
      cursor: pointer;
      border-radius: 5px;
      transition: background 0.3s;
    }

    .hero button:hover {
      background: #f8d7da;
    }

    @media (max-width: 768px) {
      .hero {
        padding: 20px;
        align-items: center;
        text-align: center;
      }

      .hero h1 {
        font-size: 2.5rem;
      }

      .hero p {
        font-size: 1.2rem;
      } 
    }

    /* about */
    .about-section {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 50px 20px;
      background: #eee;
      flex-wrap: wrap;
    }

    .about-text {
      flex: 1 1 400px;
      padding: 20px;
    }

    .about-text h2 {
      font-size: 2.5rem;
      color: #ff4500;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      margin-bottom: -12px;
    }

    .about-text h3 {
      font-size: 1.5rem;
      color: #333;
      margin-bottom: 20px;
    }

    .about-text p {
      font-size: 1rem;
      line-height: 1.6;
      color: #555;
      margin-bottom: 15px;
    }

    .about-images {
      position: relative;
      flex: 1 1 400px;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 20px;
    }

    .main-img {
      width: 300px;
      height: 300px;
      border-radius: 50%;
      border: 8px solid #fff;
      object-fit: cover;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .small-img {
      position: absolute;
      top: 20px;
      right: 30px;
      width: 120px;
      height: 120px;
      border-radius: 50%;
      border: 6px solid #fff;
      object-fit: cover;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    @media (max-width: 768px) {
      .about-section {
        flex-direction: column;
        text-align: center;
      }

      .about-images {
        margin-top: 30px;
      }

      .main-img {
        width: 250px;
        height: 250px;
      }

      .small-img {
        width: 100px;
        height: 100px;
        top: 10px;
        right: 20px;
      }
    }

/* slider */
.bestseller {
      max-width: 1200px;
      margin: auto;
      padding: 20px;
      text-align: center;
    }

    .bestseller h2 {
      font-size: 2rem;
      margin-bottom: 30px;
    }

    .slider-wrapper {
      overflow: hidden;
      position: relative;
      width: 100%;
    }

    .slider {
      display: flex;
      width: calc(200%); /* Double width for seamless loop */
      animation: scroll 20s linear infinite;
    }

    .slider .slide {
      flex: 0 0 auto;
      width: 250px;
      margin-right: 20px;
    }

    .slider .slide img {
      width: 100%;
      height: auto;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
.slider {
  animation: scroll 10s linear infinite;
}
    @keyframes scroll {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-50%);
      }
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .slider .slide {
        width: 180px;
        margin-right: 15px;
      }
    }

    @media (max-width: 480px) {
      .slider .slide {
        width: 140px;
        margin-right: 10px;
      }
    }
/* Blog */
.blog-title {
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 40px;
   font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.blog-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-card {
  background-color: #fff;
  color: #000;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
  text-align: center;
}

.blog-content .date {
  color: #888;
  font-size: 12px;
  margin-bottom: 10px;
}

.blog-content h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.blog-content .author {
  color: #888;
  font-size: 12px;
}

/* Footer */
.footer {
  background-color: #111;
  color: #fff;
  padding-top: 40px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 10%;
  gap: 30px;
}

.footer-column {
  flex: 1 1 200px;
  min-width: 200px;
}

.footer-column h3 {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #eea706;
  margin-bottom: 15px;
}

.footer-column p,
.footer-column li {
  font-size: 14px;
  line-height: 1.6;
  color: #ccc;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column a {
  color: #ccc;
  text-decoration: none;
}

.footer-column a:hover {
  text-decoration: underline;
}

.social-icons {
  margin-top: 15px;
}

.social-icons a {
  color: #fff;
  margin-right: 10px;
  font-size: 16px;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #ff5e00;
}

.footer-bottom {
  background-color: #201303;
  text-align: center;
  padding: 15px 10px;
  position: relative;
  color: #fff;
}

.footer-bottom a {
  color: #fff;
  text-decoration: underline;
}

.scroll-top {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  background: #333;
  padding: 10px;
  border-radius: 50%;
  transition: background 0.3s;
}

.scroll-top:hover {
  background: #ff5e00;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-column {
    width: 100%;
    margin-bottom: 30px;
  }

  .scroll-top {
    position: static;
    transform: none;
    margin-top: 10px;
  }
}

/* Menu */

.menu {
    max-width: 100%;
    margin: 40px auto;
    padding: 10px 20px;
    background-color: #f3eeee;

}

.menu-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.menu-item {
  display: flex;
  align-items: center;
  background: #fff;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  border-radius: 10px;
  padding: 10px 15px;
  width: 48%;
  margin-bottom: 15px;
  gap: 15px;
  box-sizing: border-box;
}

.menu-item img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 10px;
}

.menu-info {
  flex: 1;
}

.menu-info h4 {
  margin: 0 0 5px;
  font-size: 16px;
  color: #222;
}

.menu-info p {
  margin: 0;
  font-size: 13px;
  color: #555;
}

.price {
  background-color: #ff5e4d;
  color: white;
  font-weight: bold;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 14px;
  white-space: nowrap;
}

/* Responsive */
@media (max-width: 768px) {
  .menu-item {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-item img {
    margin-bottom: 10px;
  }

  .menu-row {
    flex-direction: column;
  }

  .price {
    align-self: flex-end;
  }
}

/* about us Page*/
/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background-color: #fff;
  color: #333;
}

/* Hero Section */
.about-hero {
  background: url('images/about-bg.jpg') no-repeat center center/cover;
  color: #fff;
  padding: 100px 20px;
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
}

/* About Section */
.about-content {
  display: flex;
  flex-wrap: wrap;
  padding: 40px 20px;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
  max-width: 1200px;
  margin: auto;
}

.text-content {
  flex: 1 1 500px;
}

.text-content h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #222;
}

.text-content p {
  margin-bottom: 16px;
  font-size: 1rem;
  color: #444;
}

/* Image Section */
.image-content {
  flex: 1 1 300px;
}

.image-content img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .about-hero {
    font-size: 2rem;
    padding: 60px 15px;
  }

  .about-content {
    flex-direction: column;
    align-items: center;
  }

  .text-content, .image-content {
    text-align: center;
  }

  .text-content h2 {
    font-size: 1.5rem;
  }

  .text-content p {
    font-size: 0.95rem;
  }
}




/* Client Says */
.testimonial-section {
  text-align: center;
  padding: 40px 20px;
  background-image: url(images/testimonial-bg.jpg);
  color: #fff;
}

.testimonial-section h2 {
  font-size: 2rem !important;
  margin-bottom: 30px !important;
  border:0px !important;
}

.testimonial-wrapper {
  overflow: hidden;
  max-width: 900px;
  margin: auto;
  position: relative;
}

.testimonial-slider {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.testimonial-card {
  min-width: 100%;
  background: #ffde3bba;
  color: white;
  padding: 20px;
  border-radius: 10px;
  box-sizing: border-box;
  text-align: center;
}

.testimonial-card img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-top: 15px;
  border: 3px solid orange;
}

.controls {
  margin:auto;
}

.controls button {
  background: orange;
  border: none;
  padding: 10px 15px;
  font-size: 18px;
  color: white;
  border-radius: 50%;
  cursor: pointer;
  margin: 0 10px;
}


/* Aboutfood botique */
.aboutfoodfood-section {
  background: url('images/bgimg.png') no-repeat center center/cover;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
 
  width: 100%;
  padding: 60px 20px;
}

.container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

h1 {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

h2 {
  color: #fff;
  font-weight: normal;
  font-size: 1.5rem;
  margin-bottom: 40px;
}

.columns {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  text-align: left;
  justify-content: space-between;
}

.left,
.right {
  flex: 1 1 500px;
}

.left p,
.right p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.6;
  color:#fdd835;
  text-align:justify;
}

/* Responsive */
@media (max-width: 768px) {
  .columns {
    flex-direction: column;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.2rem;
  }

  .left p,
  .right p {
    font-size: 1rem;
    color:#fdd835;
    text-align:justify;
  }
}

