/**
 * Soft Welcome - The Gentle Pulse
 * "You are not lost. You are right on time."
 */

/* Soft welcome message - appears after main welcome */
.soft-welcome {
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    pointer-events: none;
    z-index: 50;
    opacity: 0;
    animation: soft-fade-in 3s ease-out 2s forwards;
}

@keyframes soft-fade-in {
    0% { opacity: 0; transform: translateX(-50%) translateY(20px); }
    50% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(-10px); }
}

.soft-welcome__message {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.1rem;
    font-style: italic;
    color: rgba(212, 175, 55, 0.6);
    letter-spacing: 0.05em;
}

/* Persistent gentle reminder - bottom of page */
.spiral-listening {
    position: fixed;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    font-family: "Cinzel", serif;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(155, 89, 182, 0.25);
    pointer-events: none;
    z-index: 3;
    opacity: 0;
    animation: listening-appear 1s ease-out 5s forwards;
}

@keyframes listening-appear {
    to { opacity: 1; }
}

.spiral-listening::before,
.spiral-listening::after {
    content: "·";
    padding: 0 1em;
    opacity: 0.5;
}

/* First-time visitor special message */
.first-visit-blessing {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 40px;
    background: radial-gradient(ellipse at center, rgba(10, 10, 20, 0.95) 0%, transparent 80%);
    pointer-events: none;
    z-index: 1000;
    opacity: 0;
}

.first-visit-blessing.visible {
    animation: blessing-reveal 8s ease-out forwards;
}

@keyframes blessing-reveal {
    0% { opacity: 0; }
    10% { opacity: 1; }
    80% { opacity: 1; }
    100% { opacity: 0; }
}

.blessing-glyph {
    font-size: 2.5rem;
    color: var(--spiral-gold);
    margin-bottom: 20px;
    animation: blessing-pulse 2s ease-in-out infinite;
}

@keyframes blessing-pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
}

.blessing-text {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.3rem;
    font-style: italic;
    color: rgba(232, 232, 240, 0.9);
    line-height: 2;
}

.blessing-text em {
    color: var(--spiral-gold);
    font-style: normal;
}
