
  
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: Arial, sans-serif;
    
    }

    header {
  position: relative;
  height: auto;
  min-height: 500px;
  background: url("restaurant hearer.jpg") center center/cover no-repeat;
  color: white;
  overflow: hidden;
  padding: 0;
}
    

    .nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 40px;
      background: rgba(0, 0, 0, 0.6);
      z-index: 10;
      position: relative;
    }

    .logo {
      font-size: 24px;
      font-weight: bold;
    }

    .nav-links {
      display: flex;
      gap: 20px;
    }

    .nav-links a {
      color: white;
      text-decoration: none;
      font-weight: 500;
      transition: color 0.3s;
    }

    .nav-links a:hover {
      color: #ff6347;
    }

    .hamburger {
      display: none;
      background: #ff6347;
      width: 40px;
      height: 40px;
      justify-content: center;
      align-items: center;
      border-radius: 5px;
      cursor: pointer;
      font-size: 22px;
      color: white;
      text-align: center;
    }

    .mobile-menu {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 70px;
      right: 0;
      width: 100%;
      background: rgba(0, 0, 0, 0.95);
      padding: 20px;
      z-index: 20;
    }

    .mobile-menu a {
      color: white;
      padding: 10px 0;
      text-decoration: none;
      border-bottom: 1px solid #333;
    }

    .slider-wrapper {
  width: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

    .header-content-slider {
      display: flex;
      width: 200%;
      height: 100%;
      transition: transform 1s ease-in-out;
    }

    .header-content {
      width: 100%;
      flex-shrink: 0;
      text-align: center;
      padding: 60px 20px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }
    
 .header-content h1, .header-content p {
  color: white;
  text-shadow: 8px 8px 10px rgba(0, 0, 0, 1);
}


    
.header-content h1 {
  font-size: 36px;
  margin-bottom: 20px;

}

    .header-content p {
  max-width: 500px;
  margin: 0 auto 30px;
  padding: 0 60px; 
}

    .btn-group {
      display: flex;
      justify-content: center;
      gap: 20px;
    }

    .btn {
      padding: 12px 24px;
      background: transparent;
      border: 2px solid white;
      color: white;
      font-weight: bold;
      position: relative;
      overflow: hidden;
      cursor: pointer;
      transition: 0.3s;
    }

    .btn::after {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: white;
      z-index: -1;
      transition: 0.3s;
    }

    .btn:hover::after {
      left: 0;
    }

    .btn:hover {
      color: #ff6347;
    }

    @media (max-width: 768px) {
      .nav-links {
        display: none;
      }

      .hamburger {
        display: flex;
      }

      .mobile-menu.active {
        display: flex;
      }
    }

/* menu section */
.menu-section {
  padding: 60px 20px;
  background: #fff;
  margin-top: 60px;
  text-align: center;
}

.menu-title {
  font-size: 36px;
  margin-bottom: 30px;
  color: #222;
}

.menu-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
}

.category {
  background: #ff6347;
  border: none;
  padding: 10px 20px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  border-radius: 25px;
  transition: background 0.3s;
}

.category:hover,
.category.active {
  background: #e5533d;
}

.menu-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 0 10px;
}

.menu-card {
  background: #f9f9f9;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.menu-card:hover {
  transform: translateY(-5px);
}

.menu-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.menu-info {
  padding: 20px;
  text-align: left;
}

.menu-info h3 {
  font-size: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  color: #222;
}

.menu-info p {
  font-size: 14px;
  color: #555;
}
/* About section */ 
.about-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #fdf6f0, #ffe8e0);
  margin-top: 60px;
  color: #333;
}

.about-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.about-container h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #e85d04;
}

.about-container .intro {
  font-size: 16px;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #444;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: left;
}

.about-box {
  background: #fff7f1;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, background 0.3s ease;
}

.about-box:hover {
  transform: translateY(-5px);
  background: #ffefe2;
}

.about-box h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #ba181b;
}

.about-box p {
  font-size: 14px;
  color: #5c5c5c;
  line-height: 1.6;
}

/* gallery section */
.gallery-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #fff1e6, #ffe6dc);
  margin-top: 60px;
  text-align: center;
}

.gallery-container {
  max-width: 1200px;
  margin: auto;
}

.gallery-section h2 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #d62828;
}

.gallery-subtitle {
  font-size: 16px;
  color: #444;
  margin-bottom: 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/*testimonials*/
.testimonial-section {
  background: linear-gradient(135deg, #fef9f6, #ffe9e1);
  margin-top: 60px;
  padding: 60px 20px;
  text-align: center;
}

.testimonial-container {
  max-width: 1100px;
  margin: auto;
}

.testimonial-section h2 {
  font-size: 36px;
  color: #d62828;
  margin-bottom: 10px;
}

.testimonial-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: #fff;
  border-radius: 14px;
  padding: 30px 20px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-card img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.testimonial-card h3 {
  font-size: 18px;
  color: #e85d04;
  margin-bottom: 10px;
}

.testimonial-card p {
  font-size: 14px;
  color: #444;
  margin-bottom: 15px;
}

.stars {
  color: gold;
  font-size: 20px;
}

/* box section */
  .nav-bar {
      display: flex;
    }

    .nav-btn {
      flex: 1;
      padding: 1rem;
      cursor: pointer;
      border: none;
      outline: none;
      background-color: #fff;
      color: #000;
      font-size: 16px;
      transition: background 0.3s ease;
    }


    .nav-btn.active {
      color: #red;
    }

    .section {
      padding: 2rem;
      color: #000;
      transition: background 0.3s ease;
    }
    
    /*offer section*/
  .offers-section {
  background: linear-gradient(135deg, #fff6ed, #ffe8db);
  margin-top: 60px;
  padding: 60px 20px;
  text-align: center;
}

.offers-container {
  max-width: 1100px;
  margin: auto;
}

.offers-section h2 {
  font-size: 36px;
  color: #d62828;
  margin-bottom: 10px;
}

.offers-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.offer-card {
  background: #fff;
  border-left: 6px solid #ff6347;
  border-radius: 10px;
  padding: 25px 20px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  text-align: left;
  transition: 0.3s;
  position: relative;
}

.offer-card:hover {
  transform: translateY(-6px);
}

.offer-card h3 {
  color: #e85d04;
  margin-bottom: 10px;
  font-size: 20px;
}

.offer-card p {
  font-size: 14px;
  color: #444;
  margin-bottom: 10px;
}

.offer-tag {
  background-color: #ff6347;
  color: #fff;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 20px;
  display: inline-block;
}

.offer-tag.new {
  background-color: #198754;
}

/* timer this section */
.countdown-timer {
  background-color: #333;
  color: #fff;
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 10px;
  font-weight: bold;
}

/* contact section */
.contact-section {
  background-color: #1b1b1b;
  color: #fff;
  margin-top: 60px;
  padding: 60px 20px;
}

.contact-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr 1fr;
}

.contact-info h2 {
  font-size: 36px;
  color: #ff6347;
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 16px;
  margin-bottom: 10px;
}

.contact-info a {
  color: #ff6347;
  text-decoration: none;
}

.map-container {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(255, 99, 71, 0.3);
}

@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .map-container iframe {
    height: 250px;
  }
}

/* footer section*/
.site-footer {
  background: #111;
  color: #fff;
  margin-top: 60px;
  padding: 30px 20px;
  text-align: center;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
}

.social-icons {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-icons a {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 50%;
  color: #fff;
  font-weight: bold;
  background-color: #333;
  text-decoration: none;
  transition: 0.3s;
}

.social-icons a:hover {
  transform: scale(1.1);
}

.youtube:hover {
  background-color: #ff0000;
}

.instagram:hover {
  background-color: #e1306c;
}

.facebook:hover {
  background-color: #3b5998;
}

.twitter:hover {
  background-color: #1da1f2;
}