/* style.css */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
  }
  
  header {
    background-color: #4caf50;
    padding: 20px;
    text-align: center;
    color: white;
  }
  
  h1 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin: 0;
  }
  
  nav {
    display: flex;
    justify-content: center;
    margin-top: 10px;
  }
  
  nav a {
    text-decoration: none;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    background-color: #66bb6a;
    margin: 0 10px;
    transition: background-color 0.3s ease;
  }
  
  nav a:hover {
    background-color: #81c784;
  }
  
  .search-container {
    text-align: center;
    margin: 20px;
  }
  
  #main-search {
    width: 80%;
    padding: 10px;
    font-size: 18px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  #suggestions {
    width: 80%;
    margin: 10px auto 0;
    background: white;
    border: 1px solid #ccc;
    max-height: 200px;
    overflow-y: auto;
    border-radius: 5px;
  }
  
  .suggestion {
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
  }
  
  .suggestion:last-child {
    border-bottom: none;
  }
  
  .suggestion:hover {
    background-color: #f0f0f0;
  }
  
  .mushroom-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
    background-color: #e8f5e9;
  }
  
  .mushroom-card {
    flex: 1 1 22%; /* Adjusted to fit four images per row with some margin */
    margin: 10px;
    text-align: center;
    cursor: pointer;
    background: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
  }
  
  .mushroom-card:hover {
    transform: scale(1.05);
  }
  
  .mushroom-card img {
    width: 100%;
    height: 250px; /* Increased height for the images */
    object-fit: cover; /* Ensure the images cover the area without distortion */
    border-radius: 10px;
  }
  
  .mushroom-card p {
    margin: 10px 0;
    font-family: 'Playfair Display', serif;
  }
  