/* Hudson Meertalig & Media — Stylesheet */

/* TAALBALK BOVENAAN */
.hbn-lang-bar {
  background: #1a1a2e;
  padding: 6px 0;
  position: sticky;
  top: 0;
  z-index: 999;
}
.hbn-lang-bar-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hbn-lang-bar-txt {
  font-size: 11px;
  color: rgba(255,255,255,.5);
  margin-left: 4px;
}

/* TAAL SWITCH BUTTONS */
.hbn-lang-switch {
  display: flex;
  gap: 4px;
}
.hbn-lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none !important;
  color: rgba(255,255,255,.6) !important;
  background: transparent;
  border: 1px solid rgba(255,255,255,.2);
  transition: all .15s;
  white-space: nowrap;
}
.hbn-lang-btn:hover {
  background: rgba(255,255,255,.15);
  color: #fff !important;
}
.hbn-lang-active {
  background: #2E75B6 !important;
  color: #fff !important;
  border-color: #2E75B6 !important;
}

/* TAAL DROPDOWN (in navigatie) */
.hbn-lang-menu-item {
  display: flex !important;
  align-items: center !important;
  margin-left: 6px !important;
}
.hbn-lang-dropdown {
  position: relative;
}
.hbn-lang-current {
  background: transparent;
  border: 1px solid rgba(255,255,255,.4);
  color: #fff;
  padding: 5px 10px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.hbn-lang-menu {
  display: none;
  position: absolute;
  top: 110%;
  right: 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
  min-width: 120px;
  z-index: 9999;
  overflow: hidden;
}
.hbn-lang-menu.open { display: block; }
.hbn-lang-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  font-size: 13px;
  color: #333 !important;
  text-decoration: none !important;
  transition: background .15s;
}
.hbn-lang-item:hover { background: #EFF5FB; }
.hbn-lang-item.active { background: #EFF5FB; font-weight: 600; }

/* GALERIJ GRID */
.hbn-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.hbn-gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: #f0f0f0;
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
  transition: transform .2s, box-shadow .2s;
}
.hbn-gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(31,78,121,.18);
}
.hbn-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hbn-gallery-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,.65), transparent);
  color: #fff;
  padding: 20px 10px 8px;
  font-size: 12px;
  font-weight: 500;
}
.hbn-gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(31,78,121,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  opacity: 0;
  transition: opacity .2s;
}
.hbn-gallery-item:hover .hbn-gallery-overlay { opacity: 1; }
@media (max-width: 768px) {
  .hbn-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .hbn-gallery-grid { grid-template-columns: 1fr; }
}

/* VIDEO GRID */
.hbn-video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.hbn-video-wrap {
  border-radius: 10px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.hbn-video-wrap iframe,
.hbn-video-wrap video {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
  border: none;
}
.hbn-video-label {
  background: #1a1a2e;
  color: #fff;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .hbn-video-grid { grid-template-columns: 1fr; }
}

/* LIGHTBOX */
#hbn-lightbox {
  cursor: pointer;
}
#hbn-lightbox img {
  pointer-events: none;
}
