@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Montserrat:wght@300;400;500;600;700;800;900&family=Dancing+Script:wght@400;700&display=swap');

body {
    font-family: 'Cormorant Garamond', serif;
    background-color: #fae7d1;
    color: #90241d;
}

.font-sans {
    font-family: 'Montserrat', sans-serif;
}

.font-script {
    font-family: 'Dancing Script', cursive;
}

.bg-paper {
    background-image: url('https://www.transparenttextures.com/patterns/paper-fibers.png');
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.animate-scroll {
    animation: scroll 35s linear infinite;
}

@keyframes bounce-slow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.animate-bounce-slow {
    animation: bounce-slow 2s ease-in-out infinite;
}
