:root {
  --brand: #ffd700;
  --brand-light: #ffed4a;
  --brand-dark: #caab00;
  --wine: #722f37;
  --wine-light: #8b3a42;
  --wine-dark: #4a1f24;
  --dark: #0d0d0d;
  --dark-light: #1a1a1a;
  --dark-lighter: #262626;
}

.desktop-menu {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.mobile-menu-btn, .mobile-controls {
  display: none;
}

@media (min-width: 768px) {
  .mobile-controls {
    display: none !important;
  }
  .mobile-menu-btn {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .desktop-menu {
    display: none !important;
  }
  .mobile-menu-btn {
    display: block !important;
  }
  .mobile-controls {
    display: flex !important;
  }
}

#copyright-year {
  display: inline;
}

#desktop-menu a.active,
#mobile-menu a.active {
  color: var(--brand) !important;
  font-weight: 500;
}

#lang-switcher button.active,
#mobile-lang-btn.active {
  color: var(--brand) !important;
}
