/* ===== VIDEO BACKGROUND SECTION ===== */
#video-bg {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;           /* sub content */
  overflow: hidden;
  pointer-events: none;  /* să nu blocheze click-urile */
}

/* video */
#video-bg video,
#bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(75%);
  transform: translateZ(0);
  transition: opacity .5s ease-out;
}

/* overlay de culoare peste video */
#video-bg .video-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
  z-index: 1;
  pointer-events: none;
}

/* stratul negru pentru fade înainte de pornire video */
#video-fade {
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 0;
  transition: opacity .4s ease-out;
  z-index: 2;
}

/* font global – dacă vrei să rămână aici */
body {
  font-family: 'Inter', Arial, sans-serif;
}
