* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Header */
header {
  background-color: white;
  padding: 20px 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.container {
  margin: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
}
.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
  margin-right: 10px;
}

.logo h1 {
  font-size: 24px;
  color: #1c1245;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav a {
  text-decoration: none;
  color: #1c1245;
  font-weight: 600;
}

/* Hero Section */
.hero {
  background-image: url('https://preview.colorlib.com/theme/foodfun/assets/images/banner-bg.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 100px 20px;
  height: 550px;
}

.subheading {
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.hero h2 {
  font-size: 48px;
  font-weight: 700;
  font-style: italic;

}

.highlight {
  color: #f4a300;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px 20px;
}

.welcome-section .content {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1);
}

.text {
  flex: 1;
  min-width: 300px;
}

h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.highlight {
  color: #f4a300;
}

.italic {
  font-style: italic;
}

.bold {
  font-weight: bold;
  color: #1c1245;
}

p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  background-color: #f4a300;
  color: #000;
  font-weight: 600;
  text-decoration: none;
  margin-top: 10px;
  border-radius: 2px;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #d88e00;
}
.food-items {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.food-box {
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 10px;
  width: 300px;
  padding: 15px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  transition: 0.3s;
  align-items: center;
}

.food-box:hover {
  box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}

.food-box img {
  width: 100%;
  border-radius: 10px;
}

.food-box h3 {
  margin: 10px 0;
  font-size: 20px;
}

.food-box .price {
  color: #ff6347;
  font-weight: bold;
}


.hero-section {
  background-image: url('https://preview.colorlib.com/theme/foodfun/assets/images/reservation-bg.jpg'); /* Replace with your image path */
  background-size: cover;
  background-position: center;
  height: 80vh;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 30px;
  width: 1400px;
}

.hero-content h1 {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 18px;
  font-style: italic;
  margin-bottom: 25px;
}

.btn {
  background-color: #f9b300; /* Yellow color */
  color: black;
  padding: 12px 30px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 3px;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #e0a100;
}
.special-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: 36px;
  font-weight: bold;
}

.section-title h2 span {
  color: #f5af19; /* orange */
}

.section-title p {
  font-style: italic;
  color: #666;
  font-size: 16px;
  margin-top: 10px;
}

.dish-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
}

.dish-text {
  flex: 1;
  min-width: 300px;
}

.dish-text h3 {
  display: flex;
  align-items: center;
  font-size: 28px;
  color: #000;
  font-weight: bold;
}

.dish-number {
  font-size: 32px;
  font-weight: bold;
  margin-right: 10px;
}

.dish-text h3 hr {
  flex-grow: 1;
  height: 2px;
  background-color: #000;
  border: none;
}

.dish-text h2 {
  font-size: 30px;
  margin: 15px 0 10px;
}

.highlight {
  color: #f5af19;
}

.dish-text p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.dish-price {
  color: #f5af19;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
}

.book-link {
  text-decoration: none;
  color: #000;
  font-weight: bold;
  font-size: 14px;
  border-bottom: 1px solid #000;
  transition: color 0.3s;
}

.book-link:hover {
  color: #f5af19;
  border-color: #f5af19;
}

.dish-image {
  flex: 1;
  min-width: 300px;
}

.dish-image img {
  width: 100%;
  border-radius: 10px;
}
 .testimonial-area {
    
      background-image: url('https://preview.colorlib.com/theme/foodfun/assets/images/testimonial-bg.jpg'); /* Replace with your image path */
  background-size: cover;
  background-position: center;
  height: 80vh;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 30px;
  width: 1400px;
      
    }

    .section-top2 {
      font-size: 20px;
  
  margin-bottom: 10px;
    }

    .section-top2 h3 {
      font-size: 10px;
  font-style: italic;
  margin-bottom: 25px;
    }
.single-food {
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
}

.single-food:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.food-img img {
    width: 100%;
    height: auto;
    border-bottom: 1px solid #eee;
}

.food-content {
    padding: 20px;
}

.post-admin span {
    color: #999;
    font-size: 14px;
}

.post-admin i {
    color: #e07f00; /* icon color */
}

.food-content h5 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.food-content p {
    font-size: 14px;
    color: #777;
    line-height: 1.6;
}

.template-btn3 {
    display: inline-block;
    font-size: 14px;
    padding: 8px 15px;
    background-color: #e07f00;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    transition: background-color 0.3s ease;
}

.template-btn3:hover {
    background-color: #e07f00;
    color: #fff;
}
.booking-section {
      padding: 40px 20px;
      max-width: 600px;
      margin: auto;
      background-color: #fff;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
      border-radius: 10px;
      margin-top: 40px;
    }

    .booking-section h2 {
      text-align: center;
      color: #333;
    }

    .booking-section h2 span {
      color: #e07f00;
    }

    .booking-section p {
      text-align: center;
      font-style: italic;
      color: #777;
      margin-bottom: 30px;
    }

    .form-group {
      display: flex;
      align-items: center;
      margin-bottom: 20px;
    }

    .form-group i {
    
      color: white;
      padding: 10px;
      border-radius: 5px 0 0 5px;
      min-width: 40px;
      text-align: center;
    }

    .form-group input {
      padding: 10px;
      border: 2px solid #ccc;
      border-radius: 10px;
      font-size: 14px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .btn-book {
      display: block;
      width: 100%;
      padding: 12px;
      background-color: #e07f00;
      color: white;
      text-align: center;
      font-size: 16px;
      border: none;
      border-radius: 30px;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .btn-book:hover {
      background-color: #e07f00;
    }