/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

video#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: contain;
  z-index: -1;
  background: black; /* irinda ibice bituzuye kuba white */
}


/* Mute/Unmute Control */
.controls {
  position: absolute;
  bottom: 10px;
  left: 10px;
  z-index: 10;
}
.controls button {
  font-size: 24px;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  border-radius: 50%;
  padding: 10px;
  cursor: pointer;
}

/* Marquee Text */
.marquee-text {
  position: absolute;
  top: 20px;
  width: 100%;
  font-size: 1.5rem;
  text-align: center;
  color: #fff;
  text-shadow: 0 0 10px #ff00ff, 0 0 20px #ff00ff, 0 0 30px #ff00ff;
  white-space: nowrap;
  overflow: hidden;
  z-index: 5;
}

/* Red Numbered Links */
.links-right {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 10;
}


.links-right a {
  color: red;
  font-size: 3.5rem;  /* kongera font size kugira ngo zibe nini */
  text-decoration: none;
  text-shadow: 0 0 8px red, 0 0 15px red;
  transition: color 0.3s ease, text-shadow 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  user-select: none; /* ntibishobore guhitwamo text by accident */
}

/* Hover: zahinduka green yaka */
.links-right a:hover {
  color: #00ff00; /* neon green */
  text-shadow:
    0 0 10px #00ff00,
    0 0 20px #00ff00,
    0 0 30px #00ff00,
    0 0 40px #00ff00;
  transform: scale(1.3);
}

/* Active/Focus (iyo user akanda cyangwa afunguye link aka green) */
.links-right a:active,
.links-right a:focus {
  color: #00ff00;
  text-shadow:
    0 0 15px #00ff00,
    0 0 30px #00ff00,
    0 0 45px #00ff00;
  transform: scale(1.2);
  outline: none; /* gukuraho umuzenguruko w’akajisho (optional) */
}





.links-right a {
  color: red;
  font-size: 2rem;
  text-decoration: none;
  text-shadow: 0 0 5px red, 0 0 10px red;
  transition: transform 0.3s ease;
}
.links-right a:hover {
  transform: scale(1.2);
}



.site-heading {
  position: absolute;
  top: 10px;
  left: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #faa5fd;
  z-index: 10;

  /* Romantic neon glow */
  text-shadow:
    0 0 5px #ff66cc,
    0 0 10px #ff66cc,
    0 0 20px #ff99cc,
    0 0 30px #ff3399,
    0 0 40px #ff3399,
    0 0 60px #cc0066;

  /* Optional background to improve readability over video */
  background: rgba(255, 255, 255, 0.05);
  padding: 5px 15px;
  border-radius: 8px;
}

.site-subheading {
  position: absolute;
  top: 60px; /* iri munsi ya heading ya mbere (wasohoza kuri 70px cyangwa 80px niba bikenewe) */
  left: -3px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: #ffd6e7;
  z-index: 10;

  /* Romantic subtle glow */
  text-shadow:
    0 0 4px #ff99cc,
    0 0 8px #ff66b2,
    0 0 12px #ff3399;

  background: rgba(255, 255, 255, 0.03);
  padding: 4px 12px;
  border-radius: 6px;
}







/* Responsive Tweaks */
@media (max-width: 768px) {
  .marquee-text {
    font-size: 1.1rem;
  }
  .links-right a {
    font-size: 1.5rem;
  }
  .controls button {
    font-size: 20px;
    padding: 8px;
  }
}
