/* Reno-Vlero Header Styles */
:root {
  --brand-blue: #0a2c63;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--brand-blue);
  background: #fff;
}

.site-header {
  max-width: 1200px;
  margin: 20px auto 40px;
  padding: 0 16px;
  text-align: center;
}

.top-row {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
}

.brand-wrap { position: relative; display: inline-block; }
.brand {
  font-family: "Libre Baskerville", Georgia, serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(64px, 12vw, 140px);
  letter-spacing: 6px;
  color: var(--brand-blue);
  margin: 0;
}
.bv {
  position: absolute;
  right: -12px;
  bottom: -10px;
  font-family: "Libre Baskerville", Georgia, serif;
  font-weight: 700;
  font-size: clamp(16px, 2.2vw, 24px);
  color: var(--brand-blue);
}

/* Tagline box like screenshot */
.tagline-box {
  border: 2px solid #d8d8d8;
  margin-top: 12px;
  padding: 10px 14px;
}
.tagline {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 3vw, 30px);
  letter-spacing: 2px;
}

/* Navigation */
.site-nav { margin-top: 32px; }
.nav-list { 
  list-style: none; 
  padding: 0; 
  margin: 0; 
  display: flex; 
  gap: 18px; 
  justify-content: space-between; 
  align-items: stretch;
  width: 100%;
}
.nav-list > li { flex: 1 1 0; min-width: 0; }
.nav-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 16px 24px;
  background: #ffffff;
  color: #111111;
  text-decoration: none;
  border: 1px solid #e5e7eb;
  border-radius: 12px; /* lichtjes afgerond */
  font-weight: 600;
  font-size: 18px;
  font-family: Arial, Helvetica, sans-serif;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
  transition: color .2s ease, background .2s ease, box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
.nav-btn:hover { 
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  transform: translateY(-1px);
  border-color: #d1d5db;
}
.nav-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(42,108,230,.35), 0 6px 18px rgba(0,0,0,.12);
}
.nav-btn.active { 
  background: #d7e4f9; /* nog iets donkerder */
  color: #0a2c63; 
  border-color: #b5c6e6;
  box-shadow: 0 6px 16px rgba(10,44,99,.2);
}

@media (max-width: 720px) {
  .top-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid .cell { font-size: 16px; }
}

/* Footer (double-border box like screenshot) */
.site-footer { margin: 28px auto 20px; padding: 0 16px; max-width: 1200px; }
.footer-wrap { border: 12px solid var(--brand-blue); padding: 6px; }
.footer-box { border: 2px solid #d8d8d8; padding: 12px 14px; background: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1.4fr; column-gap: 32px; row-gap: 16px; align-items: baseline; }
.footer-grid .cell { color: #333; font-size: 18px; }
.footer-grid .cell .icon { font-size: 18px; margin-right: 8px; }
.footer-grid .cell strong { font-weight: 700; letter-spacing: 1px; }
.footer-grid .cell.fortis { grid-column: 1; grid-row: 1; }
.footer-grid .cell.email { grid-column: 3; grid-row: 1; }
.footer-grid .cell.phone { grid-column: 1; grid-row: 2; }
.footer-grid .cell.btw { grid-column: 2; grid-row: 2; }
.footer-grid .cell.address { grid-column: 3; grid-row: 2; }

/* Footer social links */
.footer-social {
  position: relative;
  height: 56px; /* room for 36px icons + breathing space */
  margin-top: 28px; /* extra space from the last info row */
}
.social-link {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  text-decoration: none;
  color: #333;
}
.footer-social .ig { left: 50%; }
.footer-social .fb { left: 25%; }
.footer-social .google { left: 75%; }
.social-link:hover { color: var(--brand-blue); }
.social-icon {
  display: inline-block;
  width: 36px;
  height: 36px;
  object-fit: contain;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  border-radius: 0;
}
.social-link:hover .social-icon { transform: translateY(-1px); box-shadow: 0 4px 10px rgba(0,0,0,0.15); }
/* Using local colored SVG assets, no background-image needed */

/* Gallery */
.gallery { max-width: 980px; margin: 20px auto; padding: 0 16px; display: grid; gap: 12px; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.gallery img { width: 100%; height: 180px; object-fit: cover; border: 2px solid var(--brand-blue); image-orientation: from-image; }

/* Extra ruimte onder de galerij-intro tekst zonder margin-collapsing */
.gallery-intro { margin: 0; padding-bottom: 20px; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.85); display: none; align-items: center; justify-content: center; z-index: 1000; padding: 20px; }
.lightbox.open { display: flex; }
.lightbox .lb-img { max-width: 92vw; max-height: 82vh; border: 4px solid #fff; box-shadow: 0 10px 30px rgba(0,0,0,.6); background:#111; image-orientation: from-image; }
.lightbox .lb-caption { color: #fff; margin-top: 12px; text-align: center; font-weight: 700; }
.lightbox .lb-close, .lightbox .lb-prev, .lightbox .lb-next {
  position: absolute; top: 20px; background: #ffffff; color: var(--brand-blue); border: none; font-weight: 800; cursor: pointer; line-height: 1; padding: 6px 12px; font-size: 22px;
}
.lightbox .lb-close { right: 20px; border-radius: 6px; }
.lightbox .lb-prev, .lightbox .lb-next { top: 50%; transform: translateY(-50%); background: #ffffffd9; font-size: 30px; border-radius: 50%; width: 56px; height: 56px; display: grid; place-items: center; box-shadow: 0 2px 10px rgba(0,0,0,.4); }
.lightbox .lb-prev { left: 20px; }
.lightbox .lb-next { right: 20px; }
.lightbox .lb-prev:hover, .lightbox .lb-next:hover { background: #fff; }
.lightbox .lb-close:focus-visible, .lightbox .lb-prev:focus-visible, .lightbox .lb-next:focus-visible { outline: 3px solid #2a6ce6; outline-offset: 2px; }

/* Home intro content */
.home-intro { max-width: 720px; margin: 0 auto 28px; text-align: center; font-size: 18px; line-height: 1.7; font-family: Arial, Helvetica, sans-serif; }
.home-intro .content { display: inline-block; text-align: left; }
.home-intro p { margin: 14px 0; }
.home-intro .bullet-list { 
  list-style: disc; 
  padding-left: 28px; 
  margin: 18px 0; 
}
.home-intro .bullet-list li { margin: 6px 0; }
.home-intro .emph { font-style: italic; margin-top: 14px; }

/* Responsive tweaks for social links */
@media (max-width: 720px) {
  .footer-social { height: 52px; margin-top: 24px; }
}
