/* ==============================
   JSUOG 2027 Access CSS
   Soft Poster-Matched Version
============================== */

:root {
  --color-primary: #1F3468;
  --color-primary-soft: #4F70B8;
  --color-secondary: #BFD5F6;
  --color-secondary-light: #EAF2FF;
  --color-bg: #F8FAFD;
  --color-bg-warm: #F7F4EC;
  --color-accent: #C9B97A;

  --color-text: #33415C;
  --color-text-light: #667085;
  --color-white: #FFFFFF;

  --border-soft: rgba(191, 213, 246, 0.75);
  --shadow-soft: 0 8px 24px rgba(31, 52, 104, 0.08);
  --shadow-hover: 0 12px 30px rgba(31, 52, 104, 0.13);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
}

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

.venue-address h3,
.venue-map h3,
.venue-notes h3 {
  position: relative;
  margin-bottom: 18px;
  padding-bottom: 10px;

  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-primary);
}

.venue-address h3::after,
.venue-map h3::after,
.venue-notes h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;

  width: 90px;
  height: 3px;

  background: linear-gradient(90deg,
      var(--color-primary-soft),
      var(--color-secondary),
      var(--color-accent));

  border-radius: 999px;
}

.venue-address p {
  margin-bottom: 14px;
  padding: 18px;

  font-size: 1.15em;
  line-height: 1.85;
  color: var(--color-text);

  background: linear-gradient(135deg, var(--color-white), var(--color-bg));
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);

  box-shadow: var(--shadow-soft);

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

.venue-address p:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

/* Address Links / Buttons */

.venue-address a {
  display: inline-block;

  margin: 20px 0;
  padding: 10px 18px;

  font-size: 1.05em;
  font-weight: 700;

  color: var(--color-white);
  text-decoration: none;

  background: linear-gradient(135deg,
      var(--color-primary),
      var(--color-primary-soft));

  border: 1px solid var(--color-primary-soft);
  border-radius: 999px;

  box-shadow: var(--shadow-soft);

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

.venue-address a:hover {
  color: var(--color-white);

  background: linear-gradient(135deg,
      var(--color-primary-soft),
      var(--color-primary));

  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

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

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

/* Static Map Image */

.map-image {
  display: block;

  width: 100%;
  max-width: 900px;
  height: auto;

  margin: 0 auto;

  border: 4px solid var(--color-secondary);
  border-radius: var(--radius-md);

  box-shadow: var(--shadow-soft);

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

.map-image:hover {
  transform: scale(1.04);
  border-color: var(--color-accent);
  box-shadow: var(--shadow-hover);
}

/* Embedded Map Wrapper */

.map-wrapper {
  display: flex;
  justify-content: center;

  margin-top: 12px;

  border: 2px solid var(--color-secondary);
  border-radius: var(--radius-lg);

  overflow: hidden;

  background: var(--color-white);
  box-shadow: var(--shadow-soft);

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

.map-wrapper:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-hover);
}

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

  border: none;
}

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

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

.venue-notes p {
  margin-bottom: 20px;

  font-size: 1.08em;
  line-height: 1.85;
  color: var(--color-text);
}

.venue-notes ul {
  list-style: none;
  padding-left: 0;

  font-size: 1.05em;
  color: var(--color-text);
}

.venue-notes li {
  position: relative;

  margin-bottom: 15px;
  padding: 14px 20px 14px 44px;

  background: linear-gradient(135deg, var(--color-white), var(--color-bg));
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);

  line-height: 1.8;

  box-shadow: var(--shadow-soft);

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

.venue-notes li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 1.35em;

  width: 8px;
  height: 8px;

  background: var(--color-accent);
  border-radius: 50%;
}

.venue-notes li:hover {
  background: var(--color-secondary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

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

@media (max-width: 768px) {

  .venue-address h3,
  .venue-map h3,
  .venue-notes h3 {
    font-size: 1.35rem;
  }

  .venue-address p,
  .venue-notes li {
    font-size: 1em;
  }

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

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

  .map-image:hover {
    transform: none;
  }

  .map-wrapper iframe {
    height: 360px;
  }
}

@media (max-width: 480px) {
  .map-wrapper iframe {
    height: 300px;
  }

  .venue-notes li {
    padding: 12px 14px 12px 36px;
  }

  .venue-notes li::before {
    left: 14px;
  }
}

/* ==============================
   Accessibility
============================== */

@media (prefers-reduced-motion: reduce) {

  .venue-address p,
  .venue-address a,
  .map-image,
  .map-wrapper,
  .venue-notes li {
    transition: none;
  }
}

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