@import url('https://fonts.googleapis.com/css2?family=Crimson+Pro:wght@400;600&family=Work+Sans:wght@300;400;500&display=swap');

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Work Sans', sans-serif;
}

.font-serif {
    font-family: 'Crimson Pro', serif;
}

/* Custom animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-fade-in {
    animation: fadeIn 1.5s ease-in-out;
}

/* Gallery hover effect */
.gallery-item {
    transition: transform 0.5s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

/* Custom underline effect */
.custom-underline {
    position: relative;
}

.custom-underline::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: currentColor;
    transition: width 0.3s ease;
}

.custom-underline:hover::after {
    width: 100%;
}