* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  background-color: #ffffff;
  color: #333;
}

/* =========================
   BANNER
========================= */
.banner {
  position: relative;
  height: 30vh;
  background: url("../../images/banner2.jpg") center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-align: center;
  margin-bottom: 30px;
}

.banner h2 {
  font-size: 40px;
}
/* ---------- Venue Section ---------- */

.venue-section {
  padding: 60px 0;
  background-color: #ffffff;
}

.venue-box {
  text-align: center;
  max-width: 900px;
  margin: auto;
}

.venue-address {
  font-size: 18px;
  line-height: 1.8;
  color: #1a1a1a;
  margin-bottom: 30px;
}

.map-link {
  display: inline-block;
}

.map-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-image:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}
