/* Single-source site chrome (header + footer). Loaded by the React app and by
   the static pages. Scoped to .lc-* classes so it does not leak into either the
   React page bodies or the static Elementor markup. */

:root {
  --lc-teal: #00CCB4;
  --lc-teal-2: #00D082;
  --lc-ink: #FFFFFF;
  --lc-ink-soft: rgba(255, 255, 255, 0.66);
  --lc-bg: #000000;
  --lc-panel: #0D0D0D;
  --lc-line: rgba(255, 255, 255, 0.10);
  --lc-display: 'Montserrat', system-ui, sans-serif;
  --lc-body: 'Open Sans', system-ui, sans-serif;
  --lc-header-h: 92px;
}

/* ───────────────── Header ───────────────── */
.lc-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  transition: background-color .25s ease, box-shadow .25s ease, backdrop-filter .25s ease;
}
.lc-header.lc-scrolled {
  background: rgba(6, 6, 8, 0.82);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--lc-line);
}
.lc-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.lc-logo { display: inline-flex; align-items: center; }
.lc-logo img { height: 56px; width: auto; display: block; }

.lc-nav { display: flex; align-items: center; gap: 34px; }
.lc-nav > a {
  font-family: var(--lc-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--lc-ink);
  text-decoration: none;
  line-height: 1;
  transition: color .15s ease;
}
.lc-nav > a:hover,
.lc-nav > a.lc-active { color: var(--lc-teal); }

.lc-cta {
  padding: 12px 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, #7adcb4 0%, var(--lc-teal-2) 100%);
  color: #04261d !important;
  font-weight: 700;
}
.lc-cta:hover { color: #04261d !important; filter: brightness(1.06); }

/* language toggle (EN / BM) — styled to match the .lc-cta pill. The selectors
   are scoped under .lc-header and use !important on the typographic/box props
   so the static pages' global Elementor `button` styles can't override them
   (that mismatch is why it looked different in static vs React). */
.lc-lang {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--lc-line);
}
.lc-header .lc-lang-btn {
  -webkit-appearance: none !important;
  appearance: none !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: transparent !important;
  box-shadow: none !important;
  text-transform: none !important;
  text-shadow: none !important;
  font-family: var(--lc-display) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: .02em !important;
  line-height: 1 !important;
  min-height: 0 !important;
  width: auto !important;
  padding: 9px 16px !important;
  color: var(--lc-ink) !important;
  cursor: pointer;
  transition: background .15s ease, color .15s ease, filter .15s ease;
}
.lc-header .lc-lang-btn:hover:not(.lc-lang-active) { color: var(--lc-teal) !important; }
.lc-header .lc-lang-btn.lc-lang-active {
  background: linear-gradient(135deg, #7adcb4 0%, var(--lc-teal-2) 100%) !important;
  color: #04261d !important;
}
.lc-header .lc-lang-btn.lc-lang-active:hover { filter: brightness(1.06); }

/* burger (mobile only) */
.lc-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.lc-burger span {
  width: 26px; height: 2px; background: var(--lc-ink);
  transition: transform .25s ease, opacity .2s ease;
}
.lc-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lc-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.lc-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .lc-burger { display: flex; }
  .lc-nav {
    position: fixed;
    inset: var(--lc-header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(6, 6, 8, 0.97);
    backdrop-filter: blur(10px);
    padding: 12px 28px 24px;
    border-top: 1px solid var(--lc-line);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform .2s ease, opacity .2s ease;
  }
  .lc-nav.lc-open { transform: none; opacity: 1; pointer-events: auto; }
  .lc-nav > a { padding: 16px 0; border-bottom: 1px solid var(--lc-line); }
  .lc-cta { margin-top: 16px; text-align: center; }
  .lc-lang { margin-top: 16px; align-self: flex-start; }
}

/* ───────────────── Footer ───────────────── */
.lc-footer {
  background: var(--lc-bg);
  border-top: 1px solid var(--lc-line);
  font-family: var(--lc-body);
  color: var(--lc-ink-soft);
}
.lc-footer-inner { max-width: 1280px; margin: 0 auto; padding: 64px 28px 36px; }
.lc-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
}
.lc-footer-brand img { height: 52px; width: auto; margin-bottom: 18px; }
.lc-footer-brand p { font-size: 14px; line-height: 1.7; max-width: 340px; margin: 0 0 20px; }

.lc-social { display: flex; gap: 12px; }
.lc-social a {
  width: 38px; height: 38px; border-radius: 999px;
  border: 1px solid var(--lc-line);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--lc-ink-soft);
  transition: color .15s ease, border-color .15s ease, background .15s ease;
}
.lc-social a:hover { color: #04261d; background: var(--lc-teal); border-color: var(--lc-teal); }
.lc-social svg { width: 16px; height: 16px; fill: currentColor; }

.lc-footer-col h5 {
  font-family: var(--lc-display);
  font-size: 13px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  color: var(--lc-ink); margin: 0 0 16px;
}
.lc-footer-col ul { list-style: none; margin: 0; padding: 0; }
.lc-footer-col li { margin-bottom: 11px; }
.lc-footer-col a, .lc-footer-col span { font-size: 14px; color: var(--lc-ink-soft); text-decoration: none; }
.lc-footer-col a:hover { color: var(--lc-teal); }

.lc-footer-bottom {
  margin-top: 48px; padding-top: 24px;
  border-top: 1px solid var(--lc-line);
  display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: space-between;
  font-size: 13px; color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 900px) {
  .lc-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .lc-footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .lc-footer-grid { grid-template-columns: 1fr; }
}
