/* =========================================================
   LE VANDAE — Linkbar Stylesheet (Bottom Links Only)
   ========================================================= */

:root {
  --gold: #c9a96e;
  --cream: #faf7f2;
  --deep: #1a1208;
  --border: rgba(201, 169, 110, 0.15);
  --text-muted: rgba(250, 247, 242, 0.65);
  --dark-bg: #0e0a04;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Jost", sans-serif;
  background: var(--deep);
  color: var(--cream);
  /*overflow-x: hidden;*/
}

/* =========================================================
   LINKBAR — Normal flow, scrolls with page
   ========================================================= */
#site-linkbar {
  width: 100%;
  z-index: 999;
  display: flex;
  flex-direction: column;
  background: rgba(14, 10, 4, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

/* --- Links strip --- */
.linkbar-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 14px 60px;
}

.linkbar-links {
  display: flex;
  gap: 38px;
  list-style: none;
}

.linkbar-links a {
  color: var(--text-muted);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: 0.3s;
  position: relative;
  padding: 4px 0;
}

.linkbar-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.linkbar-links a:hover {
  color: var(--gold);
}

.linkbar-links a:hover::after {
  width: 100%;
}

/* =========================================================
   MOBILE SLIDE-IN MENU
   ========================================================= */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1090;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.mobile-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 340px;
  height: 100vh;
  background: rgba(14, 10, 4, 0.98);
  border-left: 1px solid var(--border);
  z-index: 1100;
  transition: right 0.4s ease;
  padding: 90px 30px 40px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow-y: auto;
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 22px;
  right: 22px;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 22px;
  cursor: pointer;
}

.mobile-menu a {
  color: var(--text-muted);
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: 0.2s;
}

.mobile-menu a:hover {
  color: var(--gold);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .linkbar-strip {
    padding: 12px 30px;
    gap: 24px;
  }
  .linkbar-links {
    gap: 28px;
  }
}

@media (max-width: 900px) {
  .linkbar-strip {
    display: none;
  }
}

@media (max-width: 480px) {
  .mobile-menu {
    width: 85%;
    max-width: none;
  }
}