/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #333;
  }
  
  h1, h2, h3 {
    color: #333;
    text-align: center;
  }
  
  a {
    text-decoration: none;
    color: #007bff;
  }
  
  .container {
    width: 90%;
    margin: 0 auto;
  }
  
  /* Navigation Bar */
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ff7043;
    padding: 15px;
    height: 50px;
    overflow: visible; /* Allow overflow for larger logo */
}

nav .logo {
    font-size: 24px;
    font-weight: 600;
    color: white;
    line-height: 0px; /* Center text if any text is there */
}

.logo img {
    width: 70px;  /* Logo width */
    height: 70px; /* Logo height */
    position: relative;
    /* top: -15px; Uncomment if you want to adjust logo position */
}

.nav-links {
    list-style-type: none;
    display: flex;
    gap: 20px; /* Spacing between links */
    margin: 0; /* Remove default margin */
    padding: 0; /* Remove default padding */
}

.nav-links li {
    display: inline-block;
}

.nav-links a {
    text-decoration: none;
    color: black;
    font-weight: 600;
    padding: 8px 15px; /* Padding for clickable area */
    transition: color 0.3s ease; /* Smooth color transition */
}

/* Hover effect */
.nav-links a:hover {
    color: white; /* Change color on hover */
}
  
  /* Hero Section */
  .momos-header {
    background-color: #0d0b29;
    color: white;
    padding: 1rem;
    text-align: center;
  }
  .momos-header h1 {
    color: white; /* Set h1 text color to white */
    font-size: 1.5rem; /* Adjust size as needed */
    margin: 0;
}
  /* Vendor List Section */
  .top-rated-vendors {
    padding: 3rem 0;
    background-color: #c9d9fd;
  }
  .top-rated-vendors h2{
    color: black; 
    font-size: 1.8rem;

  }

  
  .vendor-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .vendor-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 250px;
    margin: 2rem;
    padding: 1rem;
    text-align: center;
    transition: transform 0.3s ease;
  }
  
  .vendor-card:hover {
    transform: scale(1.05);
  }
  
  .vendor-card img {
    width: 100%;
    height: 150px;
    border-radius: 8px;
    object-fit: cover;
  }
  
  .vendor-info {
    margin-top: 10px;
  }
  
  .vendor-info h3 {
    margin-bottom: 5px;
  }
  
  .vendor-info p {
    margin: 5px 0;
    color: black;
    font-size: 0.8em;
  }
    
  button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    margin-top: 10px;
    border-radius: 5px;
    cursor: pointer;
  }
  
  button:hover {
    background-color: #0056b3;
  }
  .top-rated-vendors {
    position: relative;
    padding: 40px;
    text-align: center;
    color: #fff; /* Ensure text is readable */
    z-index: 1;
  }
  
  /* Review Section */
  .submit-review {
    background-color: #d6cae9;
    padding: 2rem;
    text-align: center;
  }
  
  .submit-review form {
    max-width: 500px;
    margin: 0 auto;
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .submit-review label {
    display: block;
    text-align: left;
    margin: 0.5rem 0;
  }
  
  .submit-review textarea, 
  .submit-review select {
    width: 100%;
    padding: 10px;
    margin: 0.5rem 0;
    border-radius: 5px;
    border: 1px solid #ddd;
  }
  
  .submit-review button {
    margin-top: 1rem;
  }
  footer{
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: black;
    background: #ff7043;
    padding: 20px 60px;
    height: 60px;
}
  /* Responsive Design */
  @media (max-width: 768px) {
    .vendor-list {
      flex-direction: column;
      align-items: center;
    }
  }
  