/* Custom Styles */
body {
    font-family: 'Lato', sans-serif;
    background-color: #FDFBF7;
}

h1, h2, h3, h4, .font-serif {
    font-family: 'Playfair Display', serif;
}

/* Smooth scroll offset for fixed header */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

/* Custom Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 20px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Blob shape animation */
@keyframes blob-bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.rounded-blob {
    animation: blob-bounce 4s ease-in-out infinite;
}

/* Hide scrollbar for clean look */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #FDFBF7;
}

::-webkit-scrollbar-thumb {
    background: #d4a5a5;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #b03333;
}
