body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #0d0024;
  overflow-x: hidden;
  color: #fff;
}

/* Starry Background Layer */
.universe-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: radial-gradient(circle at center, #1f003b, #0d0024);
  background-image: url('../Assets/images/stars-bg.jpg');
  background-size: cover;
  background-position: center;
  z-index: -1;
}

/* Lightbulb + Slogan Centering */
.centerpiece {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  animation: fadeIn 2s ease-in;
}

.glow-bulb {
  width: 150px;
  height: auto;
  cursor: pointer;
  filter: drop-shadow(0 0 20px #ffd60a);
  transition: transform 0.3s ease;
}

.glow-bulb:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 30px #ffee80);
}

.slogan {
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
  color: #ffd60a;
  margin-top: 1.5rem;
  text-shadow: 0 0 10px #ffd60a;
  animation: float 6s ease-in-out infinite;
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes fadeIn {
  0% { opacity: 0; transform: scale(0.98); }
  100% { opacity: 1; transform: scale(1); }
}

/* General Reset */
body, h1, h2, p, ul {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* NAVIGATION BAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  padding: 1rem 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links li a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  position: relative;
  transition: color 0.3s;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #5f48ea;
  transition: 0.3s ease-in-out;
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
  width: 100%;
}

.logo {
  width: 70px;
  height: auto;
  border-radius: 1px;
}

/* MOBILE STYLES */
@media screen and (max-width: 768px) {
  .navbar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
  }

  .hamburger {
    display: block;
    font-size: 2rem;
    cursor: pointer;
    z-index: 999;
    color: #333;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    left: 1rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 1rem;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 998;
  }

  .nav-links.show {
    display: flex;
  }

  .logo {
    width: 60px;
    height: auto;
  }
}

/* Flare Animation */
.flare {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.8) 10%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  opacity: 0;
  pointer-events: none;
  z-index: 10;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.flare.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(6);
  animation: flareExpand 1s ease-out forwards;
}

@keyframes flareExpand {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(6);
  }
}

/* Ripple Full-Page Overlay */
.ripple-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.3) 10%, transparent 80%);
  opacity: 0;
  pointer-events: none;
  z-index: 20;
  transition: opacity 0.5s ease;
}

.ripple-overlay.show {
  opacity: 1;
  animation: rippleFlash 0.8s ease-out forwards;
}

@keyframes rippleFlash {
  0% {
    opacity: 0.7;
  }
  100% {
    opacity: 0;
  }
}

/* Gradient Transition Overlay */
.gradient-transition {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(78, 121, 255, 0.6), rgba(226, 102, 255, 0.6));
  opacity: 0;
  pointer-events: none;
  z-index: 30;
  transition: opacity 0.8s ease-in;
}

.gradient-transition.show {
  opacity: 1;
}

/* Optional: Fade out effect on body */
body.fade-out {
  transition: opacity 0.6s ease-in;
  opacity: 0;
}
@keyframes throb{0%,100%{opacity:.55; transform:scale(.98)}50%{opacity:1; transform:scale(1.03)}}

.site-footer{position:relative; z-index:1; text-align:center; padding:24px 16px; color:#9fb1ff}

