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

body { font-family: 'Inter', system-ui, sans-serif; }
.heading-font { font-family: 'Playfair Display', sans-serif; }

.hero-bg {
    background: linear-gradient(180deg, #0f172a 0%, #1e2937 100%);
}

.nav-link {
    position: relative;
}
.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #d97706;
    transition: width 0.4s ease;
}
.nav-link:hover:after { width: 100%; }

.blog-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.blog-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.5);
}