/* ============================================================
   enemenemuh — Verspieltes Kindertheater-Theme
   ============================================================ */

/* Baloo 2 — self-hosted, no Google CDN */
@font-face {
  font-family: 'Baloo 2';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/baloo2-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
                 U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF,
                 U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Baloo 2';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/baloo2-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Nunito — self-hosted, no Google CDN */
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/nunito-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
                 U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF,
                 U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/nunito-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --curtain:      #7A0C1F;
  --curtain-dk:   #3D0009;
  --gold:         #C8960C;
  --gold-lt:      #EDD077;
  --cream:        #FFF8E7;
  --cream-dk:     #F5EDD8;
  --teal:         #0891B2;
  --star:         #FFD600;
  --text:         #2D1420;
  --text-soft:    #6B3A50;
  --font-h:       'Baloo 2', cursive;
  --font-b:       'Nunito', sans-serif;
  --r:            18px;
  --r-lg:         28px;
}

/* ---- Base ---- */
body {
  font-family: var(--font-b) !important;
  background-color: var(--cream) !important;
  color: var(--text) !important;
}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3 {
  font-family: var(--font-h) !important;
  font-weight: 800 !important;
}
a { color: var(--curtain); }
a:hover { color: var(--gold); text-decoration: none; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.header {
  background: var(--cream) !important;
  border-bottom: 4px solid var(--gold) !important;
  box-shadow: 0 4px 18px rgba(200, 150, 12, 0.15) !important;
}

/* Logo wobble */
.inner-brand img {
  transition: transform 0.35s cubic-bezier(.36,.07,.19,.97);
}
.inner-brand:hover img {
  transform: scale(1.1) rotate(-4deg);
}

/* Desktop nav links */
.inner-nav ul li a {
  font-family: var(--font-h) !important;
  font-weight: 700 !important;
  font-size: 0.9rem !important;
  color: var(--curtain) !important;
  padding: 5px 13px !important;
  border-radius: 50px !important;
  transition: background 0.2s, color 0.2s, transform 0.15s !important;
  letter-spacing: 0.2px;
  display: inline-block;
}
.inner-nav ul li a:hover,
.inner-nav ul li.active a {
  background: transparent !important;
  color: var(--curtain) !important;
  transform: translateY(-2px);
  text-decoration: none !important;
  border-bottom: 2px solid var(--gold) !important;
  border-radius: 0 !important;
  padding-bottom: 3px !important;
}

/* Hamburger bars → curtain red */
.nav-toggle .icon-bar {
  background-color: var(--curtain) !important;
  border-radius: 3px;
  height: 3px !important;
}

/* Language flags */
.language-switcher {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
}
.language-switcher a {
  transition: transform 0.2s ease !important;
  display: inline-block !important;
}
.language-switcher a:hover { transform: scale(1.3) rotate(-5deg) !important; }
.language-switcher .flag {
  height: 20px !important;
  border-radius: 3px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* Mobile nav */
@media (max-width: 991px) {
  .inner-navigation {
    background: var(--cream) !important;
    padding: 8px 12px 14px !important;
    border-top: 2px solid rgba(200,150,12,0.3);
  }
  .inner-nav ul {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    padding: 0;
    margin: 0;
  }
  /* Language switcher spans full width */
  .inner-nav ul li:last-child {
    grid-column: 1 / -1;
  }
  .inner-nav ul li { display: block; text-align: center; }
  .inner-nav ul li a {
    display: block !important;
    padding: 8px 10px !important;
    font-size: 0.85rem !important;
    border-radius: var(--r) !important;
    background: rgba(122, 12, 31, 0.06);
  }
  .inner-nav ul li a:hover {
    background: var(--curtain) !important;
    color: var(--cream) !important;
  }
  .language-switcher {
    justify-content: center !important;
    padding: 12px 0 4px !important;
  }
}

/* ============================================================
   HERO SLIDESHOW — Theatre Curtains
   ============================================================ */
.flexslider.full-height {
  position: relative;
}

/* Gold top valance bar */
.flexslider.full-height::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 12px;
  background: linear-gradient(90deg,
    var(--curtain-dk) 0%, var(--gold) 20%,
    var(--curtain) 35%, var(--gold) 50%,
    var(--curtain) 65%, var(--gold) 80%,
    var(--curtain-dk) 100%);
  z-index: 25;
}

/* Right curtain */
.flexslider.full-height::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  height: 100%; width: 72px;
  z-index: 20;
  pointer-events: none;
  background: repeating-linear-gradient(
    180deg,
    transparent 0px,
    rgba(0,0,0,0.25) 25px,
    transparent 50px
  ),
  linear-gradient(270deg, var(--curtain-dk) 0%, var(--curtain) 60%, transparent 100%);
  clip-path: polygon(25% 0, 100% 0, 100% 100%, 25% 100%, 0% 50%);
  border-left: 2px solid rgba(200, 150, 12, 0.6);
}

/* Left curtain via a sibling trick: we style the .kenburns class */
.flexslider.kenburns {
  position: relative;
}
/* We use a box-shadow trick to add left curtain without extra pseudo-element */
.flexslider.kenburns .slides {
  position: relative;
}
.flexslider.kenburns .slides::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  height: 100%; width: 72px;
  z-index: 20;
  pointer-events: none;
  background: repeating-linear-gradient(
    180deg,
    transparent 0px,
    rgba(0,0,0,0.25) 25px,
    transparent 50px
  ),
  linear-gradient(90deg, var(--curtain-dk) 0%, var(--curtain) 60%, transparent 100%);
  clip-path: polygon(0 0, 75% 0, 100% 50%, 75% 100%, 0 100%);
  border-right: 2px solid rgba(200, 150, 12, 0.6);
}

/* Slide headlines */
.flexslider h1,
.flexslider .h1 {
  font-family: var(--font-h) !important;
  font-weight: 800 !important;
  font-size: clamp(2rem, 6vw, 4.5rem) !important;
  text-shadow:
    2px 3px 0 var(--curtain-dk),
    0 0 40px rgba(200, 150, 12, 0.5) !important;
  letter-spacing: 0.5px;
}
.flexslider p {
  font-family: var(--font-h) !important;
  font-weight: 700 !important;
  text-shadow: 1px 1px 10px rgba(0,0,0,0.9) !important;
}

/* ============================================================
   SECTION WAVE DIVIDERS
   ============================================================ */
#news,
#latest {
  position: relative;
}
#news::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0; height: 60px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60'%3E%3Cpath fill='%23F5EDD8' d='M0,30 C240,60 480,0 720,30 C960,60 1200,0 1440,30 L1440,60 L0,60Z'/%3E%3C/svg%3E") no-repeat bottom / 100% 100%;
  pointer-events: none; z-index: 5;
}

/* ============================================================
   NEWS SECTION
   ============================================================ */
#news {
  background: white;
  padding: 64px 0 100px;
}
#news h2 {
  font-family: var(--font-h) !important;
  font-size: clamp(1.8rem, 4vw, 2.6rem) !important;
  color: var(--curtain) !important;
  margin-bottom: 28px;
}
#news h2::before { content: '★ '; color: var(--star); font-size: 0.8em; }
#news h2::after  { content: ' ★'; color: var(--star); font-size: 0.8em; }

#news img {
  border-radius: var(--r-lg);
  box-shadow: 0 12px 40px rgba(61, 0, 9, 0.18);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
#news img:hover {
  transform: scale(1.025) rotate(0.5deg);
  box-shadow: 0 20px 60px rgba(61, 0, 9, 0.25);
}
#news .portfolio-sidebar p:first-child {
  font-family: var(--font-h) !important;
  font-weight: 700 !important;
  font-size: 1.2rem !important;
  color: var(--curtain);
}

/* ============================================================
   LATEST / CURRENT PRODUCTION
   ============================================================ */
#latest {
  background: var(--cream-dk);
  padding: 80px 0 100px;
}
#latest::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0; height: 60px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60'%3E%3Cpath fill='%23FFF8E7' d='M0,30 C240,0 480,60 720,30 C960,0 1200,60 1440,30 L1440,60 L0,60Z'/%3E%3C/svg%3E") no-repeat bottom / 100% 100%;
  pointer-events: none; z-index: 5;
}

#latest h2 {
  font-family: var(--font-h) !important;
  font-size: clamp(1.8rem, 4vw, 2.6rem) !important;
  color: var(--curtain) !important;
}
#latest h2::before { content: '★ '; color: var(--star); font-size: 0.8em; }

#latest .font-serif {
  font-family: var(--font-h) !important;
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  color: var(--curtain) !important;
  margin-bottom: 16px;
}

#latest img {
  border-radius: var(--r-lg);
  box-shadow: 0 16px 52px rgba(61, 0, 9, 0.22);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
#latest img:hover {
  transform: scale(1.02) rotate(-0.5deg);
  box-shadow: 0 24px 64px rgba(61, 0, 9, 0.28);
}

/* Info icon boxes */
.icon-box {
  background: white !important;
  border-radius: var(--r) !important;
  border: 2px solid var(--gold-lt) !important;
  box-shadow: 4px 4px 0 var(--gold-lt) !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease !important;
  padding: 14px 20px !important;
}
.icon-box:hover {
  transform: translate(-3px, -3px) !important;
  box-shadow: 7px 7px 0 var(--gold) !important;
}
.icon-box.icon-box-left {
  padding-left: 76px !important;
  padding-right: 20px !important;
  padding-top: 14px !important;
  padding-bottom: 14px !important;
}
.icon-box.icon-box-left .icon-box-icon {
  left: 20px !important;
}
.icon-box h6 {
  font-family: var(--font-h) !important;
  font-weight: 700 !important;
  color: var(--curtain) !important;
  font-size: 0.85rem !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.icon-box .icon {
  color: var(--gold) !important;
  font-size: 1.6rem !important;
}
.icon-box p, .icon-box-content p {
  font-weight: 600;
  color: var(--text-soft);
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
#about.parallax {
  background: var(--curtain-dk) !important;
  position: relative;
  overflow: hidden;
}

/* Starfield overlay */
#about.parallax::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1.5px 1.5px at 10% 15%, var(--gold) 0%, transparent 100%),
    radial-gradient(1px 1px at 30% 45%, var(--gold-lt) 0%, transparent 100%),
    radial-gradient(2px 2px at 55% 20%, var(--gold) 0%, transparent 100%),
    radial-gradient(1px 1px at 75% 60%, var(--gold-lt) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 90% 10%, var(--gold) 0%, transparent 100%),
    radial-gradient(1px 1px at 20% 80%, var(--gold-lt) 0%, transparent 100%),
    radial-gradient(2px 2px at 45% 70%, var(--gold) 0%, transparent 100%),
    radial-gradient(1px 1px at 65% 40%, var(--gold-lt) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 85% 85%, var(--gold) 0%, transparent 100%),
    radial-gradient(1px 1px at 5% 55%, var(--gold-lt) 0%, transparent 100%);
  pointer-events: none;
  animation: twinkle 4s ease-in-out infinite alternate;
}

@keyframes twinkle {
  0%   { opacity: 0.4; }
  50%  { opacity: 1; }
  100% { opacity: 0.6; }
}

#about h2 {
  color: var(--gold-lt) !important;
  font-size: clamp(2rem, 5vw, 3rem) !important;
  text-shadow: 0 0 30px rgba(200, 150, 12, 0.4);
}
#about p {
  color: rgba(255, 248, 231, 0.88) !important;
  font-size: 1.05rem;
  line-height: 1.85;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--curtain) !important;
  border-top: 4px solid var(--gold) !important;
}
.footer .textwidget,
.footer .textwidget p {
  color: rgba(255, 248, 231, 0.88) !important;
  font-family: var(--font-b) !important;
}
.footer a {
  color: var(--gold-lt) !important;
  transition: color 0.2s;
}
.footer a:hover {
  color: white !important;
}
.footer-copyright {
  background: var(--curtain-dk) !important;
  border-top: 1px solid rgba(200, 150, 12, 0.25);
}
.footer-copyright .copyright {
  color: rgba(255, 248, 231, 0.5) !important;
  font-family: var(--font-b) !important;
  font-size: 0.85rem;
}

/* ============================================================
   ARCHIVE
   ============================================================ */
.portfolio-item {
  border-radius: var(--r) !important;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.portfolio-item:hover {
  transform: translateY(-6px) rotate(0.5deg);
  box-shadow: 0 16px 48px rgba(61, 0, 9, 0.22) !important;
}
.portfolio-title h3 {
  font-family: var(--font-h) !important;
  color: var(--curtain);
}

/* ============================================================
   SPONSORS
   ============================================================ */
.module-title h2 {
  font-family: var(--font-h) !important;
  color: var(--curtain) !important;
}

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */
.page-title h1,
.page-title .h1 {
  font-family: var(--font-h) !important;
  text-shadow: 2px 3px 0 var(--curtain-dk), 0 0 40px rgba(200,150,12,0.4) !important;
}

/* ============================================================
   SCROLL-TO-TOP BUTTON
   ============================================================ */
.scroll-top {
  background: var(--curtain) !important;
  border: 2px solid var(--gold) !important;
  border-radius: 50% !important;
  width: 48px !important;
  height: 48px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 4px 20px rgba(61,0,9,0.4) !important;
  transition: transform 0.2s ease, background 0.2s ease !important;
}
.scroll-top:hover {
  transform: translateY(-4px) scale(1.1) !important;
  background: var(--gold) !important;
}
.scroll-top i { color: white !important; }

/* ============================================================
   ANIMATIONS — stage reveal on scroll into view
   ============================================================ */
@keyframes stageEnter {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.module-title {
  animation: stageEnter 0.65s ease both;
}
#news .portfolio-sidebar {
  animation: stageEnter 0.65s 0.1s ease both;
}
#latest .col-md-8 {
  animation: stageEnter 0.65s 0.15s ease both;
}

/* ============================================================
   MOBILE
   ============================================================ */
@media (max-width: 767px) {
  .flexslider.full-height::after {
    width: 32px;
  }
  .flexslider.kenburns .slides::after {
    width: 32px;
  }
  #news,
  #latest {
    padding: 48px 0 80px;
  }
  #latest::after,
  #news::after {
    height: 40px;
  }
}

@media (max-width: 480px) {
  /* Remove curtains on very small screens to maximise content */
  .flexslider.full-height::after,
  .flexslider.kenburns .slides::after {
    display: none;
  }
  .icon-box {
    margin-bottom: 10px;
  }
}

/* ============================================================
   MITWIRKENDE — Playful contributor grid + modal lightbox
   ============================================================ */

.contributors-section {
  padding-top: 32px !important;
  padding-bottom: 0 !important;
}

.contributors-headline {
  font-family: var(--font-h) !important;
  color: var(--curtain) !important;
  font-size: clamp(2rem, 5vw, 3rem) !important;
}
.contributors-headline::before { content: '★ '; color: var(--star); font-size: 0.7em; }
.contributors-headline::after  { content: ' ★'; color: var(--star); font-size: 0.7em; }

/* Grid */
.contributors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 16px 0 48px;
}

/* Card */
.contributor-card {
  cursor: pointer;
  text-align: center;
  transition: transform 0.25s ease;
  outline: none;
}
.contributor-card:hover {
  transform: translateY(-6px) rotate(-1deg);
}
.contributor-card:nth-child(even):hover {
  transform: translateY(-6px) rotate(1deg);
}
.contributor-card:focus-visible {
  outline: 3px solid var(--gold);
  border-radius: var(--r);
}

/* Photo */
.contributor-photo-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  border: 3px solid var(--gold-lt);
  box-shadow: 4px 4px 0 var(--gold-lt);
  aspect-ratio: 3/4;
  background: var(--cream-dk);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.contributor-card:hover .contributor-photo-wrap {
  border-color: var(--gold);
  box-shadow: 6px 6px 0 var(--gold);
}
.contributor-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.4s ease;
}
.contributor-card:hover .contributor-photo-wrap img {
  transform: scale(1.06);
}

/* Hover overlay */
.contributor-overlay {
  position: absolute;
  inset: 0;
  background: rgba(122, 12, 31, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
  border-radius: calc(var(--r-lg) - 3px);
}
.contributor-card:hover .contributor-overlay {
  opacity: 1;
}
.contributor-overlay-icon {
  font-size: 2rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));
}

/* Name / role */
.contributor-info {
  padding: 10px 4px 0;
}
.contributor-info h4 {
  font-family: var(--font-h) !important;
  font-size: 0.95rem !important;
  font-weight: 800 !important;
  color: var(--curtain) !important;
  margin: 0 0 2px !important;
}
.contributor-info p {
  font-size: 0.78rem;
  color: var(--text-soft);
  margin: 0;
  line-height: 1.3;
}

/* ---- Modal ---- */
.contributor-modal .modal-content {
  border: none;
  border-radius: var(--r-lg) !important;
  box-shadow: 0 24px 80px rgba(61, 0, 9, 0.3);
}
.contributor-modal-close {
  position: absolute;
  top: 12px; right: 14px;
  z-index: 10;
  background: var(--curtain);
  color: white;
  border: none;
  border-radius: 50%;
  width: 34px; height: 34px;
  font-size: 1.3rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contributor-modal-close:hover {
  background: var(--gold);
  color: var(--curtain-dk);
  transform: rotate(90deg);
}

/* Photo column */
.contributor-modal-photo {
  background: var(--cream-dk);
}
.contributor-modal-photo img {
  display: block;
  width: 100%;
  /* desktop: fill column height */
  min-height: 300px;
  object-fit: cover;
  object-position: center 15%;
}
.contributor-photocredit {
  font-size: 0.7rem;
  color: var(--text-soft);
  padding: 4px 8px;
  margin: 0;
}

/* Text column */
.contributor-modal-text {
  padding: 28px 24px 24px !important;
  color: var(--text);
}
.contributor-modal-text h3 {
  font-family: var(--font-h) !important;
  font-size: 1.6rem !important;
  color: var(--curtain) !important;
  margin-bottom: 4px !important;
}
.contributor-modal-role {
  font-weight: 700;
  color: var(--gold);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}
.contributor-modal-bio p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text);
}
.contributor-modal-website a {
  color: var(--curtain);
  font-weight: 700;
  font-size: 0.85rem;
}

/* Mobile: image shorter so text is immediately visible */
@media (max-width: 767px) {
  .contributor-modal-photo img {
    min-height: 0;
    height: 52vw;
  }
  .contributor-modal-text {
    padding: 16px 20px !important;
  }
}

/* Team page: 3 cards centred */
.team-grid {
  grid-template-columns: repeat(3, 1fr) !important;
  max-width: 720px;
  margin: 0 auto;
}

/* Placeholder for missing photo */
.contributor-photo-placeholder {
  background: linear-gradient(135deg, var(--cream-dk) 0%, var(--cream) 100%) !important;
  cursor: default !important;
}
.contributor-card--no-modal {
  cursor: default;
}
.contributor-card--no-modal:hover {
  transform: none !important;
}
.contributor-card--no-modal .contributor-overlay {
  display: none;
}
.contributor-placeholder-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contributor-initials {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--gold);
  opacity: 0.7;
  letter-spacing: 2px;
  user-select: none;
}

/* Responsive grid */
@media (max-width: 991px) {
  .contributors-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  .team-grid {
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .contributors-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .team-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 10px;
  }
}


/* ============================================================
   MULTILANGUAGE BADGE strip
   ============================================================ */
.multilanguage-badge {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 16px 0;
}
.multilanguage-badge span {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 0.78rem;
  background: var(--curtain);
  color: white;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  border: 1px solid var(--gold-lt);
}
