/*
  Lars Rosevink personal website
  Static HTML/CSS/JS. No external dependencies.
*/

:root {
  --bg: #f6f8fb;
  --surface: #ffffff;
  --surface-soft: #edf3f8;
  --ink: #102033;
  --muted: #617082;
  --line: #d9e3ec;
  --accent: #235b83;
  --accent-strong: #12344f;
  --accent-soft: #e4eff7;
  --warm: #c78345;
  --warm-soft: #f5eadf;
  --shadow: 0 24px 70px rgba(16, 32, 51, 0.11);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max: 1120px;
  --focus: 0 0 0 4px rgba(35, 91, 131, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(35, 91, 131, 0.10), transparent 35rem),
    linear-gradient(180deg, #fbfcfe 0%, var(--bg) 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

img,
svg {
  display: block;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--accent-strong);
  color: white;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(217, 227, 236, 0.78);
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(18px);
}

.nav-shell,
main,
.footer-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.nav-shell {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: white;
  background: var(--accent-strong);
  box-shadow: 0 10px 24px rgba(18, 52, 79, 0.18);
  font-size: 0.88rem;
}

.site-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-menu a,
.nav-toggle {
  border-radius: 999px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
}

.site-menu a {
  padding: 9px 13px;
}

.site-menu a:hover,
.site-menu a[aria-current="page"] {
  color: var(--ink);
  background: var(--surface-soft);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 10px 14px;
  cursor: pointer;
}

main {
  padding-top: 70px;
  padding-bottom: 72px;
}

.hero,
.page-hero {
  display: grid;
  gap: 40px;
  align-items: center;
}

.home-hero {
  grid-template-columns: minmax(0, 1fr) 360px;
  min-height: 480px;
}

.page-hero {
  max-width: 820px;
  margin-bottom: 64px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 900px;
  margin-bottom: 22px;
  font-size: clamp(2.8rem, 7vw, 6rem);
  line-height: 0.94;
  letter-spacing: -0.075em;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  line-height: 1.08;
  letter-spacing: -0.055em;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
  letter-spacing: -0.025em;
}

.hero-text,
.page-hero p,
.section-heading p,
.text-block p,
.info-card p,
.project-card p,
.resume-section p,
.skills-panel p,
.contact-card p,
.nav-card p {
  color: var(--muted);
}

.hero-text,
.page-hero p {
  max-width: 720px;
  font-size: clamp(1.08rem, 1.8vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
  transition: transform 150ms ease, border-color 150ms ease, background 150ms ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: rgba(35, 91, 131, 0.30);
  background: #f9fbfd;
}

.button.primary {
  border-color: var(--accent-strong);
  background: var(--accent-strong);
  color: white;
}

.button.ghost {
  background: transparent;
}

.intro-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.portrait-placeholder {
  width: 118px;
  height: 118px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 30px;
  color: white;
  background:
    linear-gradient(135deg, #12344f, #235b83),
    var(--accent-strong);
  box-shadow: inset 0 -10px 0 rgba(0, 0, 0, 0.14);
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: -0.08em;
}

.card-label,
.project-status {
  margin-bottom: 6px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.card-title {
  margin-bottom: 4px;
  font-size: 1.35rem;
  font-weight: 850;
  letter-spacing: -0.04em;
}

.card-note {
  margin-bottom: 0;
  color: var(--muted);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 28px;
}

.section-heading.compact {
  margin-bottom: 18px;
}

.room-section,
.cards-section,
.content-grid,
.project-list,
.resume-layout,
.contact-card {
  margin-top: 70px;
}

.room-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 22px;
  align-items: start;
}

.room-panel,
.room-help,
.info-card,
.side-note,
.project-card,
.resume-section,
.skills-panel,
.contact-card,
.nav-card,
.text-block {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 46px rgba(16, 32, 51, 0.08);
}

.room-panel {
  overflow: hidden;
}

.room-status {
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 12px 18px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 650;
}

.room-stage {
  position: relative;
  width: 100%;
  height: clamp(380px, 52vw, 540px);
  overflow: hidden;
  background:
    linear-gradient(180deg, #e7eff6 0%, #d5e4ee 48%, #c8d9e6 100%);
  image-rendering: pixelated;
}

.room-stage:focus-visible {
  box-shadow: inset var(--focus);
}

.room-wall {
  position: absolute;
  top: 0;
  width: 50%;
  height: 48%;
  background-size: 28px 28px;
  opacity: 0.95;
}

.wall-left {
  left: 0;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 68%);
  background:
    linear-gradient(90deg, rgba(255,255,255,0.38) 1px, transparent 1px),
    linear-gradient(#d8e6ef, #c8d9e6);
  border-right: 1px solid rgba(18, 52, 79, 0.08);
}

.wall-right {
  right: 0;
  clip-path: polygon(0 0, 100% 0, 100% 68%, 0 100%);
  background:
    linear-gradient(90deg, rgba(255,255,255,0.28) 1px, transparent 1px),
    linear-gradient(#e6eef5, #d4e2ec);
}

.room-floor {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 7%;
  height: 64%;
  clip-path: polygon(50% 0%, 100% 32%, 50% 100%, 0% 32%);
  background:
    linear-gradient(45deg, rgba(18,52,79,0.10) 1px, transparent 1px),
    linear-gradient(-45deg, rgba(18,52,79,0.08) 1px, transparent 1px),
    linear-gradient(135deg, #edf1e7, #dce9dc 60%, #d2e0d8);
  background-size: 28px 28px, 28px 28px, auto;
  box-shadow: 0 34px 72px rgba(16, 32, 51, 0.16);
  border: 1px solid rgba(18, 52, 79, 0.08);
}

.room-object {
  position: absolute;
  z-index: 4;
  display: block;
  color: var(--ink);
  text-decoration: none;
  transform: translate(-50%, -50%);
  transition: transform 140ms ease, filter 140ms ease;
}

.room-object:hover,
.room-object:focus-visible,
.room-object.is-near {
  transform: translate(-50%, -54%);
  filter: drop-shadow(0 16px 18px rgba(18, 52, 79, 0.18));
}

.object-caption {
  position: absolute;
  left: 50%;
  top: calc(100% + 8px);
  transform: translateX(-50%);
  padding: 4px 8px;
  border: 1px solid rgba(18, 52, 79, 0.13);
  border-radius: 999px;
  background: rgba(255,255,255,0.84);
  color: var(--accent-strong);
  font-size: 0.72rem;
  font-weight: 850;
  white-space: nowrap;
}

.object-door {
  left: 50%;
  top: 23%;
  width: 82px;
  height: 136px;
  z-index: 2;
}

.door-panel {
  position: absolute;
  inset: 0 8px 26px;
  border: 3px solid #12344f;
  border-radius: 5px 5px 0 0;
  background:
    radial-gradient(circle at 78% 52%, #f5d7a4 0 5px, transparent 6px),
    linear-gradient(90deg, #235b83, #17415f);
  box-shadow: inset -10px 0 rgba(0,0,0,0.12), 0 12px 0 rgba(18, 52, 79, 0.10);
}

.welcome-mat {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #d8a468;
  color: #4d2c14;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.object-desk {
  left: 31%;
  top: 67%;
  width: 180px;
  height: 124px;
}

.desk-top {
  position: absolute;
  left: 18px;
  top: 50px;
  width: 148px;
  height: 45px;
  transform: skewX(-20deg);
  border: 3px solid #5d381b;
  border-radius: 4px;
  background: linear-gradient(180deg, #c78345, #98612f);
  box-shadow: inset 0 -8px rgba(0,0,0,0.12);
}

.desk-leg {
  position: absolute;
  top: 88px;
  width: 16px;
  height: 34px;
  background: #6f421f;
  border: 2px solid #4d2c14;
}

.desk-leg.left { left: 40px; }
.desk-leg.right { right: 34px; }

.laptop-screen {
  position: absolute;
  left: 72px;
  top: 20px;
  width: 56px;
  height: 42px;
  border: 3px solid #102033;
  border-radius: 4px 4px 1px 1px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.26) 2px, transparent 2px),
    linear-gradient(180deg, #234f73, #122d43);
  background-size: 10px 10px, auto;
}

.laptop-base {
  position: absolute;
  left: 64px;
  top: 62px;
  width: 74px;
  height: 12px;
  transform: skewX(-22deg);
  border: 2px solid #102033;
  background: #d9e3ec;
}

.object-shelf {
  left: 18%;
  top: 45%;
  width: 118px;
  height: 142px;
}

.shelf-frame {
  position: absolute;
  inset: 8px 14px 18px;
  border: 4px solid #5d381b;
  border-radius: 4px;
  background:
    linear-gradient(180deg, transparent 30%, #5d381b 31%, #5d381b 35%, transparent 36%, transparent 66%, #5d381b 67%, #5d381b 71%, transparent 72%),
    #b8733c;
  box-shadow: inset -8px 0 rgba(0,0,0,0.12);
}

.book,
.paper-stack {
  position: absolute;
  bottom: 30px;
  width: 13px;
  border: 2px solid rgba(0,0,0,0.22);
}

.book-a { left: 32px; height: 48px; background: #235b83; }
.book-b { left: 48px; height: 58px; background: #d8a468; }
.book-c { left: 65px; height: 42px; background: #6b8f71; }
.paper-stack {
  left: 80px;
  bottom: 62px;
  width: 22px;
  height: 16px;
  background: #fffdf7;
}

.object-board {
  left: 66%;
  top: 47%;
  width: 150px;
  height: 120px;
}

.board-frame {
  position: absolute;
  inset: 14px 14px 26px;
  border: 4px solid #8d5a2d;
  border-radius: 5px;
  background: #f1d2a7;
  box-shadow: inset -6px -6px rgba(141, 90, 45, 0.15);
}

.note {
  position: absolute;
  width: 33px;
  height: 28px;
  border: 2px solid rgba(18,52,79,0.15);
  background: white;
}

.note-a { left: 34px; top: 34px; background: #edf3f8; }
.note-b { left: 74px; top: 28px; background: #fff3d8; }
.note-c { left: 58px; top: 67px; background: #e6f1e7; }

.object-mail {
  left: 76%;
  top: 75%;
  width: 114px;
  height: 116px;
}

.mail-post {
  position: absolute;
  left: 47px;
  bottom: 16px;
  width: 15px;
  height: 58px;
  border: 2px solid #4d2c14;
  background: #8d5a2d;
}

.mail-box {
  position: absolute;
  left: 20px;
  top: 24px;
  width: 72px;
  height: 46px;
  border: 3px solid #12344f;
  border-radius: 22px 22px 6px 6px;
  background: linear-gradient(180deg, #f4f7fb, #cbd9e4);
  box-shadow: inset -8px 0 rgba(18,52,79,0.10);
}

.mail-flag {
  position: absolute;
  right: 13px;
  top: 19px;
  width: 18px;
  height: 40px;
  border-left: 4px solid #12344f;
  background: linear-gradient(90deg, #c78345 0 18px, transparent 18px);
}

.avatar {
  position: absolute;
  left: 50%;
  top: 72%;
  z-index: 9;
  width: 44px;
  height: 70px;
  pointer-events: none;
  transform: translate(-50%, -100%);
}

.avatar-shadow {
  position: absolute;
  left: 4px;
  bottom: -5px;
  width: 38px;
  height: 13px;
  border-radius: 50%;
  background: rgba(16, 32, 51, 0.20);
}

.avatar-head {
  position: absolute;
  left: 9px;
  top: 0;
  width: 26px;
  height: 26px;
  border: 3px solid #102033;
  border-radius: 8px;
  background: #f4caa8;
}

.avatar-hair {
  position: absolute;
  left: 8px;
  top: -1px;
  width: 28px;
  height: 11px;
  border-radius: 8px 8px 4px 4px;
  background: #59361d;
  border: 2px solid #102033;
}

.avatar-body {
  position: absolute;
  left: 7px;
  top: 26px;
  width: 30px;
  height: 32px;
  border: 3px solid #102033;
  border-radius: 7px;
  background: linear-gradient(180deg, #235b83, #12344f);
}

.avatar-leg {
  position: absolute;
  top: 55px;
  width: 12px;
  height: 13px;
  border: 2px solid #102033;
  background: #26384a;
}

.leg-left { left: 9px; }
.leg-right { right: 9px; }

.room-tooltip {
  position: absolute;
  z-index: 12;
  padding: 8px 11px;
  border: 1px solid rgba(16, 32, 51, 0.18);
  border-radius: 999px;
  background: rgba(255,255,255,0.95);
  color: var(--accent-strong);
  box-shadow: 0 14px 34px rgba(16, 32, 51, 0.14);
  font-size: 0.82rem;
  font-weight: 850;
  white-space: nowrap;
  transform: translate(-50%, -100%);
}

.mobile-controls {
  display: none;
  grid-template-columns: repeat(3, 56px);
  grid-template-rows: repeat(3, 46px);
  justify-content: center;
  gap: 8px;
  padding: 14px 12px 16px;
  border-top: 1px solid var(--line);
  background: #f8fbfd;
}

.mobile-controls button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

.mobile-controls button[data-action="interact"] {
  background: var(--accent-strong);
  color: white;
}

.mobile-controls button[data-move="up"] { grid-column: 2; grid-row: 1; }
.mobile-controls button[data-move="left"] { grid-column: 1; grid-row: 2; }
.mobile-controls button[data-action="interact"] { grid-column: 2; grid-row: 2; }
.mobile-controls button[data-move="right"] { grid-column: 3; grid-row: 2; }
.mobile-controls button[data-move="down"] { grid-column: 2; grid-row: 3; }

.room-help {
  padding: 22px;
}

.room-help ul,
.clean-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.room-help li + li,
.clean-list li + li {
  margin-top: 9px;
}

.card-grid,
.content-grid.three-col {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.nav-card,
.info-card,
.side-note,
.text-block,
.resume-section,
.skills-panel,
.contact-card {
  padding: 24px;
}

.nav-card {
  text-decoration: none;
  transition: transform 150ms ease, border-color 150ms ease;
}

.nav-card:hover {
  transform: translateY(-3px);
  border-color: rgba(35, 91, 131, 0.28);
}

.nav-card span {
  display: inline-block;
  margin-bottom: 26px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 900;
}

.nav-card p,
.info-card p,
.project-card p,
.resume-section p,
.skills-panel p,
.contact-card p {
  margin-bottom: 0;
}

.content-grid.two-col,
.resume-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 22px;
  align-items: start;
}

.text-block.large {
  padding: 32px;
}

.project-list {
  display: grid;
  gap: 18px;
}

.project-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 22px;
  padding: 28px;
}

.project-card dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.project-card dt {
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.project-card dd {
  margin: 2px 0 0;
  color: var(--muted);
}

.resume-main {
  display: grid;
  gap: 18px;
}

.timeline-item {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.timeline-item + .timeline-item {
  margin-top: 20px;
}

.muted {
  color: var(--muted);
}

.skills-panel {
  position: sticky;
  top: 98px;
}

.skill-group {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.skill-group + .skill-group {
  margin-top: 18px;
}

.contact-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.contact-link {
  display: inline-flex;
  max-width: 100%;
  color: var(--accent-strong);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 850;
  overflow-wrap: anywhere;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,0.65);
}

.footer-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 0.94rem;
}

.footer-inner p {
  margin: 0;
}

.footer-inner a {
  color: var(--muted);
  text-decoration: none;
}

.footer-inner a:hover {
  color: var(--accent-strong);
}

@media (max-width: 980px) {
  .home-hero,
  .room-layout,
  .content-grid.two-col,
  .resume-layout,
  .project-card {
    grid-template-columns: 1fr;
  }

  .intro-card,
  .skills-panel {
    position: static;
  }

  .card-grid,
  .content-grid.three-col,
  .contact-card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .nav-shell,
  main,
  .footer-inner {
    padding-left: 18px;
    padding-right: 18px;
  }

  .nav-shell {
    min-height: 66px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-menu {
    position: fixed;
    left: 18px;
    right: 18px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: white;
    box-shadow: var(--shadow);
  }

  body.menu-open .site-menu {
    display: flex;
  }

  .site-menu a {
    padding: 12px 14px;
  }

  main {
    padding-top: 46px;
  }

  h1 {
    font-size: clamp(2.6rem, 14vw, 4.2rem);
  }

  .hero-actions,
  .footer-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .room-stage {
    height: 430px;
  }

  .room-help {
    display: none;
  }

  .mobile-controls {
    display: grid;
  }

  .card-grid,
  .content-grid.three-col,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .project-card,
  .text-block.large,
  .resume-section,
  .skills-panel,
  .contact-card,
  .nav-card,
  .info-card,
  .side-note {
    padding: 22px;
  }

  .object-caption {
    display: none;
  }
}

@media (max-width: 460px) {
  .room-stage {
    height: 390px;
  }

  .object-desk { width: 140px; }
  .object-shelf { width: 96px; }
  .object-board { width: 116px; }
  .object-mail { width: 92px; }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}


/* Language switch */
.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.site-menu {
  margin-left: auto;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 8px 22px rgba(16, 32, 51, 0.07);
}

.lang-button {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 9px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.02em;
}

.lang-button:hover,
.lang-button[aria-pressed="true"] {
  color: var(--ink);
  background: var(--surface-soft);
}

.lang-button .flag {
  font-size: 1rem;
  line-height: 1;
}

@media (max-width: 720px) {
  .nav-shell {
    gap: 10px;
  }

  .brand-text {
    display: none;
  }

  .nav-actions {
    margin-left: auto;
    gap: 8px;
  }

  .language-switch {
    padding: 3px;
  }

  .lang-button {
    min-height: 32px;
    padding: 5px 8px;
    font-size: 0.78rem;
  }

  .site-menu {
    margin-left: 0;
    top: 76px;
  }
}

@media (max-width: 420px) {
  .lang-code {
    display: none;
  }

  .lang-button {
    padding-left: 8px;
    padding-right: 8px;
  }
}
