#landing {
  background-color: #e3e3db;
  height: 100%;
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-blend-mode: overlay;
  border-bottom: 3px solid var(--temple-gold);
  box-shadow: 0 0 40px 10px var(--temple-gold); /* glow effect */
}


/* Subtle glow animation rising from bottom */
#landing::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: radial-gradient(ellipse at bottom, var(--temple-gold) 0%, transparent 80%);
  opacity: 0.7;
  filter: blur(20px);
  animation: glowPulse 3s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 2;
}

/* Texture overlay (your original after) */
#landing::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    url("Images/old-wall.png"),
    url("Images/asfalt-dark.png");
  background-blend-mode: multiply;
  opacity: 0.6;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 1;
}


/* Floating gold particles rising upward */
@keyframes particleRise {
  0% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateY(-200px) scale(0.5);
    opacity: 0;
  }
}

/* Glow pulsing gently */
@keyframes glowPulse {
  from {
    opacity: 0.5;
    filter: blur(15px);
  }
  to {
    opacity: 0.9;
    filter: blur(25px);
  }
}

/* Particle container */
.particles {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 200px;
  overflow: visible;
  pointer-events: none;
  z-index: 3;
}

/* Individual particle */
.particle {
  position: absolute;
  bottom: 0;
  width: 6px;
  height: 6px;
  background: var(--temple-gold);
  border-radius: 50%;
  opacity: 0.8;
  animation: particleRise linear infinite;
}

/* Randomize particles using nth-child */
.particle:nth-child(1) { left: 10%; animation-duration: 4s; animation-delay: 0s; }
.particle:nth-child(2) { left: 25%; animation-duration: 5s; animation-delay: 1s; }
.particle:nth-child(3) { left: 40%; animation-duration: 3.5s; animation-delay: 0.5s; }
.particle:nth-child(4) { left: 55%; animation-duration: 4.5s; animation-delay: 1.5s; }
.particle:nth-child(5) { left: 70%; animation-duration: 6s; animation-delay: 2s; }
.particle:nth-child(6) { left: 85%; animation-duration: 5.5s; animation-delay: 0.3s; }


