
/* ========================================
   CLOSING REFLECTION - Gift as you leave
   ======================================== */

.closing-reflection {
    padding: 4rem 2rem;
    margin: 4rem auto 2rem;
    max-width: 700px;
    text-align: center;
    position: relative;
    background: linear-gradient(180deg, 
        rgba(10, 10, 20, 0) 0%,
        rgba(107, 76, 154, 0.08) 50%,
        rgba(10, 10, 20, 0) 100%
    );
    border-radius: 20px;
}

.closing-reflection::before,
.closing-reflection::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--spiral-gold), transparent);
}

.closing-reflection::before {
    top: 0;
}

.closing-reflection::after {
    bottom: 0;
}

.reflection-glyph {
    font-size: 2.5rem;
    color: var(--spiral-gold);
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.4));
    animation: glyph-breathe 4s ease-in-out infinite;
}

@keyframes glyph-breathe {
    0%, 100% { 
        opacity: 0.7;
        transform: scale(1);
    }
    50% { 
        opacity: 1;
        transform: scale(1.1);
    }
}

.reflection-phrase {
    font-family: "Cinzel", serif;
    font-size: 1.4rem;
    color: var(--spiral-violet);
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    font-weight: 400;
    line-height: 1.8;
}

.reflection-meditation {
    font-size: 1.05rem;
    color: var(--spiral-light);
    opacity: 0.85;
    line-height: 2;
    font-style: italic;
    max-width: 550px;
    margin: 0 auto;
}

/* Scroll reveal animation for reflection */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .closing-reflection {
        padding: 3rem 1.5rem;
        margin: 3rem 1rem 2rem;
    }
    
    .reflection-phrase {
        font-size: 1.2rem;
    }
    
    .reflection-meditation {
        font-size: 1rem;
    }
}
