/* ==============================
   Access / Venue Page Styles
============================== */

/* ==============================
   Address Section
============================== */

.venue-address h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
  color: #F72C5B;
}

.venue-address p {
  font-size: 1.3em;
  line-height: 1.8;
  color: #333;
  padding: 15px;
  margin-bottom: 10px;

  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease-in-out;
}

.venue-address p:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Address links (buttons) */
.venue-address a {
  display: inline-block;
  margin: 20px 0;
  padding: 10px 15px;

  font-size: 1.1em;
  color: #ffffff;
  text-decoration: none;

  background: linear-gradient(135deg, #F72C5B, #ff6b8f);
  border: 2px solid #F72C5B;
  border-radius: 8px;

  transition: box-shadow 0.3s ease;
}

.venue-address a:hover {
  color: #ffffff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* ==============================
   Map Section
============================== */

.venue-map {
  margin-bottom: 40px;
}

.venue-map h3 {
  font-size: 1.6em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #F72C5B;
}

/* Static map image */
.map-image {
  display: block;
  width: 100%;
  max-width: 900px;
  height: auto;
  margin: 0 auto;

  border: 4px solid #F72C5B;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);

  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.map-image:hover {
  transform: scale(1.16);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Embedded map wrapper */
.map-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 10px;

  border: 2px solid #F72C5B;
  border-radius: 12px;
  overflow: hidden;

  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.3s ease-in-out;
}

.map-wrapper:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.map-wrapper iframe {
  width: 100%;
  max-width: 1290px;
  height: 450px;
  border: none;
}

/* ==============================
   Notes Section
============================== */

.venue-notes {
  margin-bottom: 50px;
}

.venue-notes h3 {
  font-size: 1.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #2a5ca9;
}

.venue-notes p {
  font-size: 1.2em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #333;
}

.venue-notes ul {
  list-style: none;
  padding-left: 0;
  font-size: 1.2em;
  color: #333;
}

.venue-notes li {
  position: relative;
  margin-bottom: 15px;
  padding: 10px 20px;

  background: #f7fafc;
  border-radius: 8px;
  line-height: 1.8;

  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.venue-notes li:hover {
  background: #e8f5ff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* ==============================
   Responsive
============================== */

@media (max-width: 768px) {
  .venue-address p,
  .venue-notes li {
    font-size: 1em;
  }

  .venue-address a {
    font-size: 1em;
    padding: 8px 12px;
  }

  .map-image {
    max-width: 100%;
  }
}

/* ==============================
   Access Page Styles End
============================== */
