/* Custom Styles */
html {
    scroll-behavior: smooth;
}

body {
    background-color: #FDFBF7; /* Cream */
    color: #1a1a1a;
}

/* Typography tweaks */
h1, h2, h3 {
    font-family: 'Cormorant Garamond', serif;
}

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

/* Animation classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}
