/* Light Rays effect for footer — vanilla CSS adaptation of MagicUI LightRays */
/* Uses site gold color scheme (#c99a53) — intensified 100% */

.footer-rays{position:absolute;inset:0;overflow:hidden;pointer-events:none;z-index:0}
.footer-ray{position:absolute;top:0;width:140px;height:85%;background:linear-gradient(to bottom,rgba(201,154,83,.36),rgba(201,154,83,.08) 60%,transparent);filter:blur(36px);opacity:0;animation:footer-ray-shine 14s ease-in-out infinite}
.footer-ray:nth-child(1){left:5%;animation-delay:0s;animation-duration:12s}
.footer-ray:nth-child(2){left:18%;animation-delay:2s;animation-duration:16s}
.footer-ray:nth-child(3){left:32%;animation-delay:5s;animation-duration:14s}
.footer-ray:nth-child(4){left:46%;animation-delay:1s;animation-duration:18s}
.footer-ray:nth-child(5){left:60%;animation-delay:4s;animation-duration:13s}
.footer-ray:nth-child(6){left:74%;animation-delay:7s;animation-duration:15s}
.footer-ray:nth-child(7){left:88%;animation-delay:3s;animation-duration:17s}
.footer-ray:nth-child(8){left:95%;animation-delay:6s;animation-duration:14s}

@keyframes footer-ray-shine{
  0%,100%{opacity:0;transform:translateY(0) scaleY(.8)}
  50%{opacity:1;transform:translateY(0) scaleY(1)}
}

footer{position:relative;overflow:hidden}
footer .footer-wrap{position:relative;z-index:1}