@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Space+Grotesk:wght@500;600&display=swap');

:root {
    --accent: 234 179 8;
}

.tail-container {
    font-family: 'Inter', system_ui, sans-serif;
}

.logo-font {
    font-family: 'Space Grotesk', sans-serif;
}

.hero-bg {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
}

.card-hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgb(234 179 8 / 0.2);
}

.skill-tag {
    transition: all 0.2s ease;
}

.skill-tag:hover {
    transform: scale(1.05);
    background-color: rgb(234 179 8);
    color: black;
}

.nav-link {
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: rgb(234 179 8);
    transition: width 0.3s ease;
}

.nav-link:hover:after {
    width: 100%;
}

.section-header {
    position: relative;
}

.section-header:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, rgb(234 179 8), transparent);
    bottom: -8px;
    left: 0;
}
