body {
      font-family: Arial, sans-serif;
      padding: 20px;
      margin: 0;
    }

    h1 {
      text-align: center;
      font-size: 2em;
      margin-bottom: 20px;
    }

    #search-area {
      text-align: center;
      margin-bottom: 20px;
    }

    #search-box {
      padding: 10px;
      width: 280px;
      font-size: 16px;
      border-radius: 6px;
      border: none;
    }

    button {
      padding: 10px;
      font-size: 14px;
      margin-left: 8px;
      border: none;
      background: #333;
      color: white;
      border-radius: 5px;
      cursor: pointer;
    }

#venue-results {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  justify-content: center; /* 👈 this centers the whole grid */
  padding: 10px;
}

.venue-card {
  display: block;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 8px rgba(0,0,0,0.5);
  text-decoration: none;
  color: inherit;
  height: 90%;
  width: 100%;
  position: relative;
}

.venue-overlay {
  background: rgba(0, 0, 0, 0.4);
  height: 90%;
  width: 100%;
  padding: 10px;
  display: flex;
  flex-direction: row;
  align-items: center; /* ← you can still adjust this */
  justify-content: flex-start;
}

.venue-logo {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  background: white;
  position: relative; 
  top: -5px;
}

.venue-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 10px;
  margin: 0 0 30px 0;
  position: relative;
  top: 19px;
  left: 9px;;
  }

.venue-info h2 {
  margin: 0 0 4px 0;
  font-size: 1.3em;
  position: relative; 
  margin-left: 6%;
  top: -5px;
}

.venue-info p {
  margin: 0;
  font-size: 0.75em;
}

#content {
  background: white;
  padding-bottom: 400px; /* creates spacing before footer */
}

.venue-wrapper {
  margin-bottom: 40px;
}

#footer {
  background: #832b25;
  color: white;
  padding: 20px;
  text-align: center;
}


