/* 
 * HireFast Recruitment - Design System
 * Bold, High-Energy, Sales-Driven
 */

:root {
    /* Color Palette */
    --hf-primary: #FF5722;
    /* Bright Orange */
    --hf-primary-hover: #E64A19;
    --hf-secondary: #121212;
    /* Charcoal Black */
    --hf-dark: #0A0A0A;
    --hf-light: #F9FAFB;
    --hf-white: #FFFFFF;
    --hf-gray-100: #F3F4F6;
    --hf-gray-200: #E5E7EB;
    --hf-gray-500: #6B7280;
    --hf-gray-800: #1F2937;

    /* Typography */
    --hf-font-heading: 'Bebas Neue', sans-serif;
    --hf-font-ui: 'Outfit', sans-serif;

    /* Spacing & Borders */
    --hf-radius: 4px;
    /* Sharper, more aggressive */
    --hf-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    --hf-shadow-bold: 0 20px 40px rgba(255, 87, 34, 0.2);
}

body {
    font-family: var(--hf-font-ui);
    color: var(--hf-gray-800);
    line-height: 1.6;
    background-color: var(--hf-white);
    overflow-x: hidden;
}

/* Typography Overrides */
h1,
h2,
h3,
.h1,
.h2,
.h3 {
    font-family: var(--hf-font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
}

.font-outfit {
    font-family: var(--hf-font-ui);
}

/* Buttons */
.btn {
    font-family: var(--hf-font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.8rem 1.5rem;
    border-radius: var(--hf-radius);
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.btn-primary {
    background-color: var(--hf-primary);
    border-color: var(--hf-primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--hf-primary-hover);
    border-color: var(--hf-primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--hf-shadow-bold);
}

.btn-outline-primary {
    color: var(--hf-primary);
    border-color: var(--hf-primary);
}

.btn-outline-primary:hover {
    background-color: var(--hf-primary);
    color: white;
}

/* Navbar Customization */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand img {
    filter: brightness(0);
    /* Black logo placeholder effect */
}

.nav-link {
    font-family: var(--hf-font-heading);
    text-transform: uppercase;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    color: var(--hf-secondary) !important;
    margin: 0 0.5rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--hf-primary) !important;
}

/* Sections */
section {
    padding: 100px 0;
    position: relative;
}

/* Angled Divider */
.angled-divider-bottom {
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%);
    padding-bottom: 150px;
}

.angled-divider-top {
    clip-path: polygon(0 15%, 100% 0, 100% 100%, 0% 100%);
    padding-top: 150px;
    margin-top: -100px;
}

/* Hero Section (Split Screen Prep) */
.hero-split {
    background-color: var(--hf-secondary);
    color: white;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    z-index: 2;
}

.hero-image-pane {
    position: absolute;
    right: 0;
    top: 0;
    width: 45%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

/* Job Cards */
.job-card-hf {
    background: white;
    border: 3px solid var(--hf-secondary);
    border-radius: var(--hf-radius);
    transition: all 0.3s ease;
}

.job-card-hf:hover {
    border-color: var(--hf-primary);
    transform: scale(1.02);
    box-shadow: var(--hf-shadow);
}

/* Footer */
footer {
    background-color: var(--hf-secondary) !important;
    border-top: 5px solid var(--hf-primary);
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--hf-primary);
}

.hover-bold-white {
    transition: all 0.2s ease;
    color: white !important;
    opacity: 1 !important;
    font-weight: 400 !important;
}

.hover-bold-white:hover {
    color: white !important;
    font-weight: 800 !important;
    opacity: 1 !important;
}

.logo-box-white {
    background-color: white;
    padding: 8px 15px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    height: 40px;
}

/* Utilities */
.text-primary {
    color: var(--hf-primary) !important;
}

.text-secondary {
    color: var(--hf-secondary) !important;
}

.bg-primary {
    background-color: var(--hf-primary) !important;
}

.bg-secondary {
    background-color: var(--hf-secondary) !important;
}

.bg-dark {
    background-color: var(--hf-dark) !important;
}

.uppercase {
    text-transform: uppercase;
}

.italic {
    font-style: italic;
}

.ls-wide {
    letter-spacing: 2px;
}

.hover-lift:hover {
    transform: translateY(-10px);
}

.transition {
    transition: all 0.3s ease;
}

.shadow-xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.shadow-2xl {
    box-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.3);
}

.bg-gradient-dark-to-top {
    background: linear-gradient(to top, rgba(18, 18, 18, 0.9) 0%, rgba(18, 18, 18, 0) 100%);
}

/* Testimonial Cards - Overlapping Style */
.testimonial-card-hf {
    background: var(--hf-white);
    padding: 3rem;
    border-left: 10px solid var(--hf-primary);
    position: relative;
    box-shadow: var(--hf-shadow);
    z-index: 1;
}

.testimonial-card-hf::before {
    content: '"';
    position: absolute;
    top: -20px;
    right: 20px;
    font-family: var(--hf-font-heading);
    font-size: 8rem;
    color: var(--hf-primary);
    opacity: 0.1;
    line-height: 1;
}

.testimonial-overlap-left {
    margin-right: -50px;
    margin-top: 50px;
}

.testimonial-overlap-right {
    margin-left: -50px;
    margin-bottom: 50px;
}

@media (max-width: 991px) {

    .testimonial-overlap-left,
    .testimonial-overlap-right {
        margin: 0;
    }
}