@charset "utf-8";


/* styles.css */

body {
  margin: 0;
  padding: 0;
  height: 100vh;
  background: url('images/klaviactor-bg.png') no-repeat center center fixed;
  background-size: cover;
  font-family: 'Segoe UI', sans-serif;
  color: white;
  overflow: hidden;
}

.overlay {
  text-align: center;
  padding-top: 20vh;
}

h1 {
  font-size: 3rem;
  text-shadow: 0 0 10px #00ffff;
}

.glow-header {
  position: relative;
  padding: 15px 0;
  text-align: center;
  background: radial-gradient(
    circle at center,
    rgba(0, 50, 180, 0.25) 0%,
    rgba(0, 50, 180, 0.15) 40%,
    rgba(0, 50, 180, 0.0) 80%
  ),
  rgba(0, 255, 255, 0.05); /* base color under radial */

  box-shadow:
    0 0 15px rgba(0, 255, 255, 0.3), /* outer glow */
    inset 0 0 10px rgba(0, 255, 200, 0.4); /* inner glow */
  backdrop-filter: blur(5px);
  border-bottom: 1px solid rgba(0, 255, 255, 0.2);
  z-index: 10;
}


.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 30px;
}

.nav-links li a {
  text-decoration: none;
  color: #40ffe7; /* bright turquoise */
  font-size: 1.1rem;
  padding: 8px 12px;
  transition: all 0.3s ease;
  border-radius: 10px;
  text-shadow:
    /* Outline directions */
    -1px -1px 0 rgba(0, 50, 180, 1),
     1px -1px 0 rgba(0, 50, 180, 1),
    -1px  1px 0 rgba(0, 50, 180, 1),
     1px  1px 0 rgba(0, 50, 180, 1),
    /* Optional glow */
     0 0 8px rgba(0, 50, 180, 0.7);
}





.nav-links li a:hover {
  background-color: rgba(0, 255, 255, 0.1);
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
  color: #ffffff;
  text-shadow: 0 0 8px rgba(0, 80, 255, 0.9), 0 0 15px rgba(0, 80, 255, 0.6);
}



/* CSS Document */

