/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
  }
  
  /* Body Styling */
  body {
    background-image: url('img/stbg.jpg');
    background-size: cover;
    background-attachment: fixed;
    color: #333;
  }
  
  /* Navigation Bar */
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ff7043;
    padding: 15px 30px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
  }
  
  nav .logo img {
      width: 70px;
      height: 70px;
      margin-left: 20px;
    }
    
    nav .nav-links {
      list-style: none;
      display: flex;
      gap: 20px;
      margin: 0;
      padding: 0;
    }
    
    nav .nav-links a {
      color: white;
      text-decoration: none;
      font-size: 16px;
      padding: 5px 10px;
    }
    
    nav .nav-links a:hover {
      background-color: #f4511e;
      border-radius: 5px;
    }
    /* Main Vendor Details */
  main.vendor-details {
    padding: 40px;
    max-width: 1200px;
    margin: 20px auto;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
  }
  
  /* Vendor Information Section */
  .vendor-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
  }
  
  .info-text {
    flex: 1;
  }
  
  .info-text h1 {
    font-size: 32px;
    color: #ff5722;
    margin-bottom: 10px;
  }
  
  .info-text p {
    margin-bottom: 10px;
    line-height: 1.6;
    font-size: 16px;
  }
  
  .info-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .info-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  }
  
  /* Vendor Menu Section */
  .vendor-menu {
    margin-bottom: 40px;
  }
  
  .vendor-menu h2 {
    font-size: 24px;
    color: #ff5722;
    margin-bottom: 20px;
  }
  
  .vendor-menu ul {
    list-style: none;
    font-size: 16px;
  }
  
  .vendor-menu ul li {
    margin-bottom: 10px;
    padding: 5px 0;
  }
  
  /* Customer Reviews Section */
  .customer-reviews {
    margin-bottom: 40px;
  }
  
  .customer-reviews h2 {
    font-size: 24px;
    color: #ff5722;
    margin-bottom: 20px;
  }
  
  .customer-reviews ul {
    list-style: none;
  }
  
  .customer-reviews ul li {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.4;
  }
  
  /* Review Form Section */
  .review-form h2 {
    font-size: 24px;
    color: #ff5722;
    margin-bottom: 20px;
  }
  
  .review-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .review-form label {
    font-size: 16px;
    font-weight: bold;
  }
  
  .review-form input,
  .review-form textarea {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
  }
  
  .review-form button {
    padding: 10px;
    border: none;
    background-color: #ff7043;
    color: white;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
  }
  
  .review-form button:hover {
    background-color: #ff5722;
  }
  
  /* Footer */
  footer {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 20px;
    margin-top: 20px;
    text-align: center;
  }
  
  footer img {
    margin-bottom: 10px;
    max-width: 80px;
    height: auto;
    border-radius: 50%;
  }
  
  footer p {
    font-size: 14px;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .vendor-info {
      flex-direction: column;
    }
  
    nav .nav-links {
      flex-direction: column;
      gap: 10px;
    }
  
    .nav-links li {
      text-align: center;
    }
  }
  