/*
Theme Name: Harrigan Talent Engine Theme
Description: Native WordPress theme for HTE, replacing the Next.js frontend.
Version: 1.0.0
Author: Antigravity
Text Domain: hte-theme
*/

/* Tailwind utility classes via CDN will be enqueued in functions.php, 
   but any custom overrides go here. */

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #f9fafb;
    color: #111827;
}

.hte-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hte-btn {
    display: inline-block;
    background-color: #E11D2E;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s;
}
.hte-btn:hover {
    background-color: #c81a28;
}

.hte-card {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    padding: 1.5rem;
}
