/* ===== minimal base ===== */
.footer { color: var(--text); background: none; font-family: inherit; }
.footer h3 { margin: 0 0 .6rem; }
.footer p { margin: 0; }
.footer h2 {
  text-align: center;
  color: var(--accent);
}

/* ===== Top band: three centered cards, equal height ===== */
.footer-top { background: var(--bg-2); padding: clamp(24px,4vw,48px) 0; }

.footer-title{
  color: var(--text);
  font-weight: 900;
  font-size: clamp(2.6rem, 2.2rem + 3vw, 4.8rem);
  line-height: 1.05;
  margin: clamp(24px,4vw,48px) 0;
  text-align: center;
  font-family: "Libre Baskerville", serif;
}


.cards-grid{
  max-width: min(1200px,92vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(280px,1fr));
  gap: clamp(16px,2.5vw,28px);
  align-items: stretch;               /* equal height */
}

.card{
  background: var(--accent-light);          /* yellow */
  color: var(--accent-contrast);      /* black */
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: clamp(16px,2vw,22px);
  display: flex; 
  flex-direction: column; 
  height: 100%;
  text-align: center;
  font: 800 clamp(.9rem, .8rem + .4vw, 1.05rem)/1 Merriweather, 'Helvetica Neue', Arial, sans-serif;
}
.card h3 {
  font-weight: inherit;
  margin-bottom: .5rem;
}
.card a,
.card a:visited{ color: inherit; text-decoration: none; }
.card a:hover{ text-decoration: underline; }

/* ===== Bottom band: title then map ===== */

/* Map block */
.footer-map{
  /* choose the style you want */
  background: var(--card);      /* or: transparent */
  border-radius: 26px;
  box-shadow: 0 10px 28px rgba(0,0,0,.08);
  padding: 0;                   /* remove padding = no visible "frame" */
  max-width: min(1200px, 92vw);
  margin: 24px auto 0;
  overflow: hidden;             /* clip the iframe corners */
  /* Safari rounding fix */
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.footer-map iframe{
  display: block;
  width: 100% !important;
  height: clamp(300px, 42vw, 420px) !important;
  border: 0;
  /* no extra radius needed when parent clips */
}
/* Divider + copyright */
.footer-divider{
  border:0; border-top:1px solid var(--accent); 
  max-width:min(1200px,92vw);
  margin: clamp(18px,3vw,28px) auto 0;
}
.footer-copy{ text-align:center; color:var(--text); margin-top:10px; }

/* keep grid flexible */
.opening-list{
  display: inline-grid;
  grid-template-columns: auto 1fr;   /* label | value */
  column-gap: 14px;
  row-gap: 10px;
  max-width: 100%;
  align-items: baseline;
  font: 800 clamp(.9rem, .8rem + .4vw, 1.05rem)/1 Merriweather, 'Helvetica Neue', Arial, sans-serif;
}

/* prevent label + colon from breaking onto separate lines */
.opening-label{
  display: inline-flex;
  align-items: baseline;
  white-space: nowrap;               /* no wrap for label text */
}
.opening-label::after{
  content: ":";
  padding: 0 6px 0 6px;              /* spacing, but stays with label */
  flex: 0 0 auto;
}

/* allow value to wrap naturally inside the available width */
.opening-value{
  min-width: 0;
  overflow-wrap: anywhere;           /* wrap long times/notes */
  white-space: normal;
}

.social-bar{
  max-width: min(1200px,92vw);
  margin: 8px auto 12px;   /* centers the bar block */
  margin-bottom: 20px;
}

.social-icons{
  display: flex;
  justify-content: center;
  gap: 30px; 
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 9999px;
  transition: transform .12s ease, filter .12s ease;
}

.social-link:hover { transform: translateY(-1px); filter: brightness(1.05); }
.social-link:active { transform: translateY(0); }

.social-link img {
  display: block;
  width: 40px;
  height: 40px;
  object-fit: contain;
  vertical-align: middle;
}

/* ===== Responsive ===== */
@media (max-width:980px){
  .cards-grid{ grid-template-columns:1fr; }
}
