﻿
body {
    font-family: 'Inter', sans-serif;
}

.page {
    display: none;
}

    .page.active {
        display: block;
    }

.nav-link.active {
    color: #3b82f6; /* blue-500 */
    font-weight: 600;
}
/* Simple animation for page transitions */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.active {
    animation: fadeIn 0.5s ease-in-out;
}

.gallery-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .gallery-item:hover {
        transform: scale(1.03);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }



