/* ==========================================
   Sayar Perfume - Thematic Decorations
   ========================================== */
.perfume-decorations {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100svh;
    pointer-events: none;
    z-index: 2;
    /* Sits above content but lets clicks through */
    overflow: hidden;
}

/* 
   Scent Mist / Smoke Effect 
   Represents the diffusion of fragrance
*/
.mist-layer {
    position: absolute;
    bottom: -100px;
    left: 0;
    width: 100%;
    height: 60vh;
    background: radial-gradient(ellipse at 50% 100%, rgba(212, 175, 55, 0.2) 0%, transparent 80%);
    filter: blur(50px);
    opacity: 0.8;
    animation: mistRise 20s infinite ease-in-out;
    mix-blend-mode: screen;
}

.mist-layer:nth-child(2) {
    bottom: -150px;
    left: 30%;
    width: 40%;
    height: 50vh;
    background: radial-gradient(ellipse at 50% 100%, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    animation-delay: -5s;
    animation-duration: 25s;
}

/* 
   Gold Particles 
   Represents the premium quality / "Magic" of the scent
*/
.particle {
    position: absolute;
    background: var(--color-gold);
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 0 4px var(--color-gold);
    animation: floatParticle 15s infinite linear;
}

.particle:nth-child(3) {
    left: 10%;
    width: 2px;
    height: 2px;
    animation-duration: 20s;
    animation-delay: 0s;
}

.particle:nth-child(4) {
    left: 25%;
    width: 3px;
    height: 3px;
    animation-duration: 25s;
    animation-delay: -5s;
}

.particle:nth-child(5) {
    left: 50%;
    width: 2px;
    height: 2px;
    animation-duration: 18s;
    animation-delay: -10s;
}

.particle:nth-child(6) {
    left: 75%;
    width: 3px;
    height: 3px;
    animation-duration: 22s;
    animation-delay: -2s;
}

.particle:nth-child(7) {
    left: 90%;
    width: 2px;
    height: 2px;
    animation-duration: 28s;
    animation-delay: -15s;
}



/* Animations */
@keyframes mistRise {

    0%,
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.8;
    }

    50% {
        transform: translateY(-30px) scale(1.15);
        opacity: 0.6;
    }
}

@keyframes floatParticle {
    0% {
        transform: translateY(110vh) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 0.8;
    }

    90% {
        opacity: 0.5;
    }

    100% {
        transform: translateY(-10vh) translateX(20px);
        opacity: 0;
    }
}

/* Hide heavy decorations on mobile to save performance/screen space */
@media (max-width: 768px) {


    .mist-layer {
        height: 40vh;
    }
}