/* Custom animations and fine-tuning for Quiet Classics Club - Girly Sanctuary Edition */

@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fade-in 1.2s ease-out forwards;
}

/* Custom Serif adjustments */
h1,
h2,
h3 {
    letter-spacing: -0.01em;
}

/* Subtle texture overlay - Softer Pinkish tint */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/natural-paper.png');
    background-color: rgba(253, 242, 242, 0.05);
    opacity: 0.05;
    pointer-events: none;
    z-index: 9999;
}

/* Softer Johnson Box border */
.border-dashed {
    border-style: dashed;
    border-width: 2px;
}