/* Think North Design System & Design Tokens */

:root {
    --primary: #202A44;
    /* Deep Navy */
    --primary-light: #2D3A5F;
    --accent: #E6B325;
    /* Premium Gold */
    --accent-hover: #D4A31F;
    --text-main: #1F2937;
    /* Charcoal */
    --text-muted: #6B7280;
    --bg-light: #F9FAFB;
    --white: #FFFFFF;
    --shadow-soft: 0 4px 20px -2px rgba(0, 0, 0, 0.05);
    --shadow-card: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --radius: 12px;
}

/* Custom Overrides for Tailwind */
.bg-navy {
    background-color: var(--primary);
}

.text-navy {
    color: var(--primary);
}

.bg-gold {
    background-color: var(--accent);
}

.text-gold {
    color: var(--accent);
}

.border-gold {
    border-color: var(--accent);
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Card Hover Effects */
.job-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
}

/* Hero Overlay */
.hero-overlay {
    background: linear-gradient(rgba(32, 42, 68, 0.7), rgba(32, 42, 68, 0.4));
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

/* Marquee Animation */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.animate-marquee {
    display: flex;
    width: max-content;
    animation: marquee 30s linear infinite;
}

.animate-marquee:hover {
    animation-play-state: paused;
}