/* Station69 location — landing page styles
   Design system: "Masseria Salentina" — palette ispirata alla facciata gialla
   della villa pugliese del cliente (giallo caldo / avorio / beige sabbia /
   terracotta / verde oliva / verde palma / grigio pietra / blu profondo).
   Typography: Playfair Display (headings) + Inter (body)

   Nota manutenzione: --terracotta-400/600/700 e --olive-700 sono tinte
   derivate (più chiare/scure della terracotta e del verde oliva "brand")
   per garantire un contrasto testo/sfondo conforme a WCAG AA nei pulsanti,
   nei link e nei badge; i valori esatti forniti dal cliente restano
   applicati per intero in --terracotta-500, --olive-500, --palm,
   --terracotta-100 (= giallo caldo), --cream, --cream-alt, --sand e
   --ink-900 (= blu profondo). */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,500&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --cream: #f2efe6;        /* avorio */
  --cream-alt: #d6c6a7;    /* beige sabbia */
  --sand: #a69d8e;         /* grigio pietra — usata come traccia/divider */
  --terracotta-100: #e5d2a3; /* giallo caldo — accento chiaro (icone, dettagli) */
  --terracotta-400: #e08862; /* terracotta schiarita — testo/accento su sfondi scuri */
  --terracotta-500: #c46a4a; /* terracotta brand — riempimenti, bordi decorativi */
  --terracotta-600: #a9552f; /* terracotta scurita — CTA/pulsanti (testo bianco, AA) */
  --terracotta-700: #733a26; /* terracotta scurissima — link, kicker, etichette (AA) */
  --olive-500: #5b6b3c;    /* verde oliva brand — icone, badge, focus ring */
  --olive-700: #3d4828;    /* verde oliva scurito — badge pieni con testo bianco (AA) */
  --palm: #8fa47a;         /* verde palma — accenti secondari, badge dintorni */
  --ink-900: #0e2a52;      /* blu profondo — titoli, sfondi scuri, autorevolezza */
  --ink-700: #5e5545;      /* testo di paragrafo (derivato da grigio pietra, AA) */
  --ink-600: #6b6459;      /* testo secondario/didascalie (derivato, AA) */
  --white: #ffffff;
  --whatsapp: #25d366;
  --whatsapp-dark: #1da851;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 26px;
  --max-width: 1120px;

  --shadow-sm: 0 4px 14px rgba(14, 42, 82, 0.08);
  --shadow-md: 0 14px 36px rgba(14, 42, 82, 0.12);
  --shadow-lg: 0 24px 60px rgba(14, 42, 82, 0.18);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 200ms;
  --dur-med: 450ms;
  --dur-slow: 900ms;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--cream);
  color: var(--ink-900);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: "Playfair Display", "Georgia", serif;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--ink-900);
  letter-spacing: -0.01em;
}

p {
  margin: 0 0 1em;
  color: var(--ink-700);
}

a {
  color: var(--terracotta-700);
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font: inherit;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============ SCROLL REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.is-visible > * {
  transition-delay: calc(var(--stagger-index, 0) * 80ms);
}

/* ============ NAVBAR ============ */
.navbar {
  position: fixed;
  top: 16px;
  left: 16px;
  right: 16px;
  z-index: 50;
  max-width: calc(var(--max-width) + 32px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 18px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(242, 239, 230, 0.7);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(14, 42, 82, 0.08);
  box-shadow: var(--shadow-sm);
  transition: background var(--dur-fast) ease, box-shadow var(--dur-fast) ease;
}

.navbar.is-scrolled {
  background: rgba(242, 239, 230, 0.92);
  box-shadow: var(--shadow-md);
}

.navbar-brand {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.navbar-brand img {
  height: 50px;
  width: auto;
  display: block;
}

.navbar-links {
  display: none;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-weight: 500;
}

.navbar-links a {
  color: var(--ink-700);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color var(--dur-fast) ease, border-color var(--dur-fast) ease;
}

.navbar-links a:hover {
  color: var(--terracotta-700);
  border-color: var(--terracotta-500);
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

@media (min-width: 880px) {
  .navbar-links {
    display: flex;
  }
}

/* Language switcher */
.lang-switch {
  display: flex;
  gap: 4px;
  background: rgba(14, 42, 82, 0.06);
  border-radius: 999px;
  padding: 3px;
}

.lang-btn {
  background: none;
  border: none;
  color: var(--ink-700);
  border-radius: 999px;
  padding: 5px 11px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background var(--dur-fast) ease, color var(--dur-fast) ease;
}

.lang-btn.active {
  background: var(--terracotta-600);
  color: var(--white);
}

.lang-btn:not(.active):hover {
  background: rgba(14, 42, 82, 0.1);
}

@media (max-width: 400px) {
  .navbar {
    padding: 10px 12px;
    gap: 8px;
  }

  .navbar-brand img {
    height: 42px;
  }

  .lang-btn {
    padding: 5px 8px;
  }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  height: min(92vh, 780px);
  min-height: 560px;
  overflow: hidden;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1400ms ease;
  animation: kenburns 16s ease-in-out infinite;
}

.hero-slide.is-active {
  opacity: 1;
  z-index: 1;
}

@keyframes kenburns {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide { animation: none; }
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 14, 24, 0.35) 0%, rgba(8, 14, 24, 0.32) 45%, rgba(8, 14, 24, 0.72) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 0 20px;
  max-width: 760px;
}

.hero .eyebrow {
  font-family: "Inter", sans-serif;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 12.5px;
  font-weight: 600;
  opacity: 0.92;
  margin-bottom: 14px;
  display: none;
}

.hero .eyebrow.lang-active {
  display: inline-block;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  margin-bottom: 10px;
  text-wrap: balance;
}

.hero .location {
  font-size: 1.05rem;
  margin-bottom: 26px;
  opacity: 0.95;
  color: var(--white);
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  padding: 8px 20px 8px 8px;
  margin-bottom: 34px;
  font-size: 14px;
  font-weight: 500;
}

.rating-badge strong {
  background: var(--olive-700);
  color: var(--white);
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 15px;
  font-weight: 700;
}

.cta-group {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out), background var(--dur-fast) ease;
  border: 2px solid transparent;
  cursor: pointer;
  min-height: 48px;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn:active {
  transform: translateY(-1px);
}

.btn:focus-visible {
  outline: 3px solid var(--olive-500);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--terracotta-600);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--terracotta-700);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
}

.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
}

.btn-outline {
  background: var(--terracotta-600);
  border-color: var(--terracotta-600);
  color: var(--white);
}

.btn-outline:hover {
  background: var(--terracotta-700);
  border-color: var(--terracotta-700);
}

.hero-scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: var(--white);
  opacity: 0.85;
  animation: bob 2.2s ease-in-out infinite;
}

@keyframes bob {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-scroll-cue { animation: none; }
}

/* ============ SECTIONS ============ */
section {
  padding: 96px 0;
  position: relative;
}

section .section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 52px;
}

.kicker {
  font-family: "Inter", sans-serif;
  color: var(--terracotta-700);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 10px;
  display: none;
}

.kicker.lang-active {
  display: block;
}

section .section-head h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.alt-bg {
  background: var(--cream-alt);
}

/* ============ ABOUT ============ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  align-items: center;
}

.about-media {
  position: relative;
}

.about-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
}

.about-media .badge-floating {
  position: absolute;
  bottom: -20px;
  right: -14px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 16px 20px;
  text-align: center;
  min-width: 120px;
}

.about-media .badge-floating .num {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--olive-700);
  line-height: 1;
}

.about-media .badge-floating .lbl {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--ink-600);
  font-weight: 600;
  margin-top: 4px;
}

.about-highlights {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 14px;
}

.about-highlights li {
  display: none;
  gap: 12px;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
}

.about-highlights li.lang-active {
  display: flex;
}

.about-highlights .check {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--olive-500);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-highlights .check svg {
  width: 14px;
  height: 14px;
}

/* ============ ROOMS ============ */
.rooms-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.room-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out);
  cursor: pointer;
}

.room-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.room-card-media {
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.room-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}

.room-card:hover .room-card-media img {
  transform: scale(1.08);
}

.room-card-body {
  padding: 22px 24px 26px;
}

.room-card h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.room-card .bed {
  font-size: 13px;
  color: var(--terracotta-700);
  margin-bottom: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.room-card p:not(.bed) {
  font-size: 14.5px;
  margin-bottom: 0;
}

/* ============ SERVICES ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.service-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 22px 18px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  font-size: 14px;
  font-weight: 600;
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}

.service-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-item .icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--terracotta-100);
  color: var(--terracotta-700);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-item .icon svg {
  width: 22px;
  height: 22px;
}

/* ============ REVIEWS ============ */
.review-score {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.score-ring {
  position: relative;
  width: 120px;
  height: 120px;
  flex-shrink: 0;
}

.score-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.score-ring circle {
  fill: none;
  stroke-width: 8;
}

.score-ring .ring-bg {
  stroke: var(--sand);
}

.score-ring .ring-fill {
  stroke: var(--olive-500);
  stroke-linecap: round;
  stroke-dasharray: 327;
  stroke-dashoffset: 327;
  transition: stroke-dashoffset 1400ms var(--ease-out);
}

.score-ring.is-visible .ring-fill {
  stroke-dashoffset: 32.7;
}

.score-ring-label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.score-ring-label .val {
  font-family: "Playfair Display", serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--ink-900);
  line-height: 1;
}

.score-ring-label .max {
  font-size: 11px;
  color: var(--ink-600);
}

.score-breakdown {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 32px;
  font-size: 13.5px;
  color: var(--ink-600);
}

.score-breakdown div {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.score-breakdown .bar {
  width: 60px;
  height: 5px;
  border-radius: 3px;
  background: var(--sand);
  overflow: hidden;
  flex-shrink: 0;
}

.score-breakdown .bar span {
  display: block;
  height: 100%;
  background: var(--terracotta-500);
  border-radius: 3px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1000ms var(--ease-out);
}

.score-breakdown.is-visible .bar span {
  transform: scaleX(var(--pct, 1));
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
  position: relative;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.review-card .quote-mark {
  color: var(--terracotta-100);
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  line-height: 1;
  position: absolute;
  top: 8px;
  left: 18px;
  z-index: 0;
  user-select: none;
}

.review-card p {
  position: relative;
  z-index: 1;
  font-style: italic;
  color: var(--ink-700);
  font-size: 15px;
}

.review-card .author {
  margin-top: 14px;
  font-style: normal;
  font-family: "Inter", sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--terracotta-700);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

/* ============ SURROUNDINGS ============ */
.surroundings-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.poi-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  box-shadow: var(--shadow-sm);
  font-size: 14.5px;
  font-weight: 500;
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}

.poi-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.poi-item .poi-label {
  display: flex;
  align-items: center;
  gap: 12px;
}

.poi-item .poi-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--palm);
  color: var(--olive-700);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.poi-item .poi-icon svg {
  width: 17px;
  height: 17px;
}

.poi-item .dist {
  font-weight: 700;
  color: var(--terracotta-700);
  white-space: nowrap;
  font-size: 13.5px;
}

/* ============ BOOKING / CONTACT ============ */
.booking-section {
  background: linear-gradient(160deg, var(--ink-900) 0%, #07162c 100%);
  color: var(--cream);
  text-align: center;
  overflow: hidden;
  position: relative;
}

.booking-section::before {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 106, 74, 0.25) 0%, transparent 70%);
  top: -180px;
  right: -140px;
  pointer-events: none;
}

.booking-section .section-head,
.booking-section h2 {
  position: relative;
}

.booking-section h2 {
  color: var(--white);
}

.booking-section p {
  color: rgba(242, 239, 230, 0.78);
  max-width: 500px;
  margin: 0 auto 30px;
  position: relative;
}

footer {
  background: var(--ink-900);
  color: var(--cream);
  text-align: center;
  padding: 28px 0 36px;
  font-size: 12.5px;
}

footer p {
  color: inherit;
}

.footer-logo {
  height: 44px;
  width: auto;
  margin: 0 auto 16px;
  display: block;
}

.footer-details {
  margin: 14px 0;
  padding: 14px 0;
  border-top: 1px solid rgba(242, 239, 230, 0.25);
  border-bottom: 1px solid rgba(242, 239, 230, 0.25);
}

.footer-details p {
  margin: 4px 0;
}

.footer-contacts a {
  color: var(--cream);
  text-decoration: none;
}

.footer-contacts a:hover {
  text-decoration: underline;
}

.footer-codes {
  font-size: 11.5px;
  letter-spacing: 0.02em;
}

.footer-sep {
  margin: 0 8px;
}

footer a {
  color: var(--cream);
}

/* ============ FLOATING WHATSAPP ============ */
.floating-whatsapp {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 60;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: transform var(--dur-fast) var(--ease-out), background var(--dur-fast) ease;
  cursor: pointer;
}

.floating-whatsapp:hover {
  transform: scale(1.08);
  background: var(--whatsapp-dark);
}

.floating-whatsapp svg {
  width: 28px;
  height: 28px;
}

/* ============ LIGHTBOX ============ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(8, 14, 24, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-fast) ease;
  padding: 24px;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: min(900px, 92vw);
  max-height: 82vh;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--dur-fast) ease;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.24);
}

.lightbox-close svg {
  width: 20px;
  height: 20px;
}

/* ============ TABLET+ ============ */
@media (min-width: 700px) {
  .about-grid {
    grid-template-columns: 0.85fr 1fr;
  }

  .rooms-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .surroundings-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 980px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 699px) {
  section {
    padding: 68px 0;
  }

  .about-media .badge-floating {
    right: 10px;
  }
}

/* ============ i18n visibility (base rules) ============ */
[data-i18n] {
  display: none;
}

[data-i18n].lang-active {
  display: initial;
}

li[data-i18n].lang-active,
p[data-i18n].lang-active,
div[data-i18n].lang-active,
h1[data-i18n].lang-active,
h2[data-i18n].lang-active,
h3[data-i18n].lang-active {
  display: block;
}

span[data-i18n].lang-active {
  display: inline;
}

/* Accessible focus for all interactive elements */
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--olive-500);
  outline-offset: 2px;
}
