/* WorkUp Custom Styles */

body {
    font-family: 'Inter', sans-serif;
    color: #4a4a4a;
}

/* Navbar */
.trans-nav {
    background: transparent;
    padding-top: 20px;
    transition: background 0.3s;
}

.trans-nav.scrolled {
    background: rgba(40, 57, 101, 0.95);
    padding-top: 10px;
    padding-bottom: 10px;
}

.navbar-brand .logo-icon {
    font-size: 1.2rem;
    color: var(--brand-blue);
}

.nav-link {
    color: #4a4a4a !important;
    font-size: 0.85rem;
    font-weight: 600;
    margin-right: 15px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

.nav-link:hover,
.nav-link.active {
    color: var(--brand-blue) !important;
}

.small-icon {
    font-size: 0.6rem;
    margin-left: 5px;
    opacity: 0.7;
}

.btn-register {
    background-color: #008CFF;
    border: none;
    font-size: 0.85rem;
    font-weight: 600;
    font-weight: 600;
    padding: 8px 25px;
}

/* Brand Colors */
:root {
    --brand-blue: #009EE4;
    --brand-orange: #EF6C17;
}

.text-brand-blue {
    color: var(--brand-blue) !important;
}

.text-brand-orange {
    color: var(--brand-orange) !important;
}

.bg-primary {
    background-color: var(--brand-blue) !important;
}

.text-primary {
    color: var(--brand-blue) !important;
}

.btn-primary {
    background-color: var(--brand-blue);
    border-color: var(--brand-blue);
}

.btn-primary:hover {
    background-color: #007bb5;
    border-color: #007bb5;
}

.btn-outline-primary {
    color: var(--brand-blue);
    border-color: var(--brand-blue);
}

.btn-outline-primary:hover {
    background-color: var(--brand-blue);
    color: white;
}

.page-header {
    background: linear-gradient(135deg, var(--brand-blue) 0%, #007bb5 100%);
    padding-top: 100px !important;
    /* Spacing for fixed nav */
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 85vh;
    min-height: 700px;
    background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') no-repeat center center/cover;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient from candidate-signup */
    background: linear-gradient(to right, rgba(0, 158, 228, 0.9), rgba(239, 108, 23, 0.9));
    z-index: 1;
}

.hero-title {
    font-weight: 700;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    max-width: 800px;
    font-size: 1rem;
    opacity: 0.9;
}

/* Search Box */
.search-box {
    width: 100%;
    max-width: 1000px;
    padding: 10px;
}

.search-box .form-control {
    font-size: 0.95rem;
}

.search-box .input-group-text {
    color: #ccc;
}

.btn-find {
    background-color: var(--brand-orange);
    /* Orange button for contrast */
    border: none;
    border-radius: 4px;
}

.btn-find:hover {
    background-color: #d85c0f;
}

/* Stats */
.stats-row {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-icon {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.check-badge {
    position: absolute;
    bottom: -2px;
    right: -5px;
    width: 16px;
    height: 16px;
    background: var(--brand-orange);
    color: white;
    font-size: 0.6rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

/* Jobs Section */
.bg-light-gray {
    background-color: #f9f9fc;
}

.btn-group .btn {
    border-radius: 4px !important;
    font-size: 0.9rem;
}

.btn-group .active-tab {
    background-color: transparent;
    color: var(--brand-blue);
    border-color: var(--brand-blue);
}

.btn-group .inactive-tab {
    background-color: var(--brand-blue);
    color: white;
    border-color: var(--brand-blue);
}

.job-card {
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    border-radius: 8px;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05) !important;
}

.badge-internship {
    color: #2ecc71;
    background: rgba(46, 204, 113, 0.1);
}

.badge-contract {
    color: #95a5a6;
    background: rgba(149, 165, 166, 0.1);
}

.badge-fulltime {
    color: #e74c3c;
    background: rgba(231, 76, 60, 0.1);
}

.badge-parttime {
    color: #f1c40f;
    background: rgba(241, 196, 15, 0.1);
}

.badge-freelancer {
    color: #34495e;
    background: rgba(52, 73, 94, 0.1);
}

.badge {
    padding: 6px 10px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.7rem;
    letter-spacing: 0.5px;
}

.logo-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
}

.bg-dark-blue {
    background-color: #1e2532;
}

.cat-card {
    transition: transform 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.cat-card:hover {
    transform: translateY(-5px);
}

.text-primary-light {
    color: #4da6ff;
}

/* Landing Page Refinements */
.footer-gradient {
    background: linear-gradient(to right, #009EE4, #EF6C17) !important;
    color: white;
}

.bg-brand-blue {
    background-color: var(--brand-blue) !important;
    color: white;
}

.job-card {
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
    border-color: var(--brand-blue);
}

.advert-section {
    position: relative;
    overflow: hidden;
    background-color: #f8f9fa;
}

.advert-content {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Pricing Page */
.pricing-card {
    border: none;
    transition: transform 0.3s;
    border-radius: 12px;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-header {
    background: #f8f9fa;
    padding: 30px 20px;
    border-bottom: 1px solid #eee;
}

.pricing-header.popular {
    background: linear-gradient(135deg, var(--brand-blue) 0%, #007bb5 100%);
    color: white;
}

.pricing-features li {
    margin-bottom: 10px;
}