/* venue.css */

/* ========================== */
/* Background Image for Location Intro */
/* ========================== */
.bg-image-location {
  position: relative;
  background: url('/assets/images/Ballymagarvey.jpg') center/cover no-repeat;
  color: var(--color-text);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  border-radius: 12px;
  border: 2px solid var(--color-border);
  text-align: center;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .bg-image-location {
    min-height: 400px;
    padding: 2rem 3rem;
  }
}


/* ========================== */
/* Location Section           */
/* ========================== */
.venue-address-box {
  background: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  font-size: 1rem;
  color: var(--color-text);
  box-sizing: border-box;
}

.venue-address-box h3 {
  color: var(--color-link);
  margin-top: 0;
}

.map-container {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  box-sizing: border-box;
  padding: 0;
  background-color: #fff;
  width: 100%;
}


/* ========================== */
/* Directions Cards           */
/* ========================== */
.item-card p {
  color: var(--color-link);
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.directions-box {
  margin-top: 0.5rem;
  line-height: 1.6;
}
