/* static/css/style.css */

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

:root {
    --accent: #003366;
}

* {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

body {
    font-family: 'Inter', system_ui, sans-serif;
}

.heading-font {
    font-family: 'Space Grotesk', sans-serif;
}

.resume-container {
    box-shadow: 0 25px 50px -12px rgb(0 51 102 / 0.15);
}

.section-header {
    position: relative;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 64px;
    height: 3px;
    background-color: #003366;
}

.job-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.job-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.skill-pill {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.skill-pill:hover {
    transform: scale(1.08) translateY(-1px);
    background-color: #003366;
    color: white !important;
    box-shadow: 0 10px 15px -3px rgb(0 51 102);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
}

.header-gradient {
    background: linear-gradient(90deg, #003366, #004080);
}

@media print {
    .resume-container {
        box-shadow: none;
        max-width: 100%;
        margin: 0;
    }
    .no-print {
        display: none !important;
    }
}
