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

:root {
    --monash-blue: #003087;
    --accent-blue: #006DAE;
}

body {
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

.glass-nav {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.hero-gradient {
    background: radial-gradient(circle at 70% 30%, rgba(0, 48, 135, 0.05) 0%, #ffffff 100%);
}

.card-hover {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -15px rgba(0, 48, 135, 0.15);
}

.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--monash-blue);
    transition: width 0.3s ease;
}

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

.seminal-work-item {
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.seminal-work-item:hover {
    border-left-color: var(--monash-blue);
    background: rgba(0, 48, 135, 0.02);
    padding-left: 1rem;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #999;
}
