/* Global Font Setting */
* {
  font-family: "Trebuchet MS", "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Tahoma, sans-serif;
}

/* Background Video Parallax */
.background-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 1; /* Full brightness */
}

.video-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2); /* Much lighter overlay */
  z-index: -1;
}

.logo {
  position: fixed;
  top: 20px;
  left: 20px;
  height: 150px;
  width: 150px;
  object-fit: contain;
  aspect-ratio: 1 / 1;
  z-index: 1000;
  pointer-events: auto;
  transform: none !important;
  transition: none !important;
}

/* Responsive logo sizing */
@media (max-width: 768px) {
  .logo {
    height: 120px !important;
    width: 120px !important;
    top: 15px !important;
    left: 15px !important;
    transform: none !important;
  }
}

@media (max-width: 480px) {
  .logo {
    height: 100px !important;
    width: 100px !important;
    top: 10px !important;
    left: 10px !important;
    transform: none !important;
  }
}
.socials {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 10;
}
.socials img {
  height: 24px;
  width: 24px;
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
}

.socials img:hover {
  filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.8));
  transform: scale(1.1);
}
nav {
  margin: 5px auto 5px;
  text-align: center;
  padding: 4px 12px;
  background: rgba(0, 0, 0, 0.9);
  border-radius: 25px;
  backdrop-filter: blur(15px);
  display: inline-block;
  border: 1px solid #FFD700;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
}

nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.5);
}

nav a {
  margin: 0 2px;
  text-decoration: none;
  font-weight: bold;
  font-size: 13px;
  color: #A0A0A0; /* Silver/Bronze for unselected */
  transition: all 0.3s ease;
  padding: 4px 8px;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
}

nav a:hover {
  color: #C0C0C0;
  background: rgba(255, 215, 0, 0.1);
  transform: scale(1.05);
}

nav a.active {
  color: #000;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  box-shadow: 0 2px 10px rgba(255, 215, 0, 0.6);
  transform: scale(1.1);
}

nav a.active::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.5s;
}

nav a.active:hover::before {
  left: 100%;
}
body {
  background-color: transparent;
  color: #C0C0C0; /* Silver */
  font-family: "Trebuchet MS", "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Tahoma, sans-serif;
  padding: 2rem;
  padding-left: 190px; /* Make room for bigger logo */
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Make content more readable over video */
main, .content {
  background: rgba(0, 0, 0, 0.7);
  border-radius: 10px;
  padding: 20px;
  margin: 20px 0;
  backdrop-filter: blur(5px);
}

/* Compact header styling */
header {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 25px;
  padding: 8px 12px;
  margin: 15px 0;
  backdrop-filter: blur(10px);
  display: inline-block;
  width: auto;
}

/* Responsive body padding */
@media (max-width: 768px) {
  body {
    padding-left: 150px;
  }
  
  .background-video {
    opacity: 1; /* Keep full brightness on mobile too */
  }
  
  main, .content {
    background: rgba(0, 0, 0, 0.8);
    padding: 15px;
  }
  
  header {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    padding: 6px 10px;
    margin: 10px 0;
  }
  
  nav {
    margin: 4px auto 4px;
    padding: 3px 8px;
  }
  
  nav a {
    margin: 0 3px;
    font-size: 11px;
    padding: 5px 8px;
  }
}

@media (max-width: 480px) {
  body {
    padding: 1rem;
    padding-left: 120px;
  }
  
  .background-video {
    opacity: 1; /* Keep full brightness on small screens too */
  }
  
  main, .content {
    background: rgba(0, 0, 0, 0.85);
    padding: 12px;
  }
  
  header {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 18px;
    padding: 5px 8px;
    margin: 8px 0;
  }
  
  nav {
    margin: 3px auto 3px;
    padding: 3px 6px;
  }
  
  nav a {
    margin: 0 2px;
    font-size: 10px;
    padding: 4px 6px;
  }
}
h1 {
  color: #FFD700; /* Gold for headings */
}

/* Additional reset to prevent any logo movement */
.logo {
  animation: none !important;
}

.logo:hover {
  transform: none !important;
}

* {
  box-sizing: border-box;
}