/* theme.css — dynamic CSS variables injected by theme.php if needed */
/* Base overrides and dark/light transition */

body {
    transition: background-color 0.3s ease, color 0.3s ease;
}

.sidebar, .glass-card, .product-card, .job-card, .step-card, .press-card, .modal {
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

/* FontAwesome override to use our fonts folder */
@font-face {
    font-family: 'Font Awesome 6 Free';
    font-style: normal;
    font-weight: 900;
    src: url('/assets/fonts/fa-solid-900.woff2') format('woff2'),
         url('/assets/fonts/fa-solid-900.ttf') format('truetype');
}
@font-face {
    font-family: 'Font Awesome 6 Brands';
    font-style: normal;
    font-weight: 400;
    src: url('/assets/fonts/fa-brands-400.woff2') format('woff2'),
         url('/assets/fonts/fa-brands-400.ttf') format('truetype');
}
