/* ===== Venue Section Styling ===== */

.venue-section {
  background: #f5f1e8;
  padding: 70px 20px;
}

.venue-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.venue-title {
  font-family: "Georgia", serif;
  font-size: 32px;
  margin-bottom: 10px;
  color: #2b2b2b;
}

.venue-details {
  margin-bottom: 25px;
  font-size: 18px;
  color: #555;
}

.venue-button {
  display: inline-block;
  padding: 12px 28px;
  background: #b89b5e;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  margin-bottom: 40px;
  transition: 0.3s ease;
  font-weight: 500;
}

.venue-button:hover {
  background: #9c814a;
}

.venue-map-wrapper {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.venue-map,
.venue-street {
  flex: 1 1 48%;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  border-radius: 8px;
  overflow: hidden;
}

.venue-map iframe,
.venue-street iframe {
  width: 100%;
  height: 420px;
  border: 0;
}

/* Mobile */
@media (max-width: 900px) {
  .venue-map-wrapper {
    flex-direction: column;
  }

  .venue-map iframe,
  .venue-street iframe {
    height: 300px;
  }
}




