:root {
  --overlay: rgba(10, 15, 25, 0.65);
  --panel: rgba(255, 255, 255, 0.94);
  --text-dark: #1c1c1c;
  --accent: #6bcf7a;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Georgia", "Times New Roman", serif;
  color: var(--text-dark);
  background: #0b0f18;
}

/* ---------- VIDEO BACKGROUND (HOME ONLY) ---------- */
#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.video-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--overlay);
  z-index: -1;
}

/* ---------- SHARED LAYOUT ---------- */
header {
  background: transparent;
}

.nav {
  max-width: 1200px;
  margin: auto;
  padding: 30px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav img {
  height: 78px;
}

.nav