@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
}

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

/* Custom focus styles */
button:focus, a:focus, input:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}
/* Animation for buttons */
.btn-animate {
    transition: all 0.2s ease-in-out;
    transform: translateY(0);
}

.btn-animate:hover {
    transform: translateY(-2px);
}

/* Image hover effects */
img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

img:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Lightbox styling */
.lightbox img {
    max-height: 80vh;
    max-width: 80vw;
}
/* Custom underline animation */
.link-underline {
    position: relative;
}

.link-underline::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #3b82f6;
    transition: width 0.3s ease;
}

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