/* General Body Styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #F9F9F9;
    color: #333333;
}

/* Navbar */
.navbar {
    background-color: #FFFFFF;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.navbar-brand {
    font-weight: 700;
    color: #4A90E2 !important;
}

.navbar-brand img {
    height: 30px;
}

/* Hero Section */
.hero-section {
    background: #222 url('https://picsum.photos/seed/milkyway/1600/800') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 6rem 0;
    text-align: center;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-weight: 700;
    font-size: 3.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-section p {
    font-size: 1.25rem;
    opacity: 0.9;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

/* Job Listings */
.job-listings {
    padding: 4rem 0;
}

.job-card {
    background-color: #FFFFFF;
    border: 1px solid #EAEAEA;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.job-card h5 {
    color: #4A90E2;
    font-weight: 600;
}

.job-card .badge {
    border-radius: 6px;
    font-weight: 500;
    padding: 0.4em 0.7em;
}

/* Buttons */
.btn-primary {
    background-color: #4A90E2;
    border-color: #4A90E2;
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #357ABD;
    border-color: #357ABD;
}

.btn-secondary {
    background-color: #50E3C2;
    border-color: #50E3C2;
    color: #fff;
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: background-color 0.2s;
}

.btn-secondary:hover {
    background-color: #40B59A;
    border-color: #40B59A;
}

/* Footer */
.footer {
    background-color: #FFFFFF;
    padding: 2rem 0;
    margin-top: 4rem;
    border-top: 1px solid #EAEAEA;
    text-align: center;
    font-size: 0.9rem;
    color: #666;
}

/* Search Form Toggle */
#search-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

#job-search-form {
    transition: all 0.3s ease-in-out;
}

/* Job Details Page */
.job-header {
    background: linear-gradient(135deg, #4A90E2 0%, #50E3C2 100%);
    color: white;
    padding: 4rem 0;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.job-header h1 {
    font-weight: 700;
}

.card {
    border-radius: 12px;
    border: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.breadcrumb-item a {
    color: #4A90E2;
    text-decoration: none;
}

.list-group-item {
    border: none;
    padding-left: 0;
}

.list-group-item i {
    color: #50E3C2;
    margin-right: 10px;
}
