/* Custom styles that can't be easily done with Tailwind */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom animation for gallery cards */
.gallery-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Custom publication card styling */
.publication-card {
    transition: box-shadow 0.3s ease;
}

.publication-card:hover {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}