/* Home Page Specific Styles */

.hero-section {
    background: transparent;
    color: var(--secondary-color);
    padding: 4rem 0;
    text-align: center;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-content h2 span {
    color: #ffd700;
}

.hero-content p {
    font-size: 1.2rem;
}

.jobs-section {
    padding: 4rem 0;
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.job-card {
    background: var(--secondary-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s;
}

.job-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.job-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.job-category {
    display: inline-block;
    background: var(--bg-light);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.job-qualifications {
    margin: 1.5rem 0;
}

.job-qualifications h4 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.job-qualifications p {
    color: var(--text-light);
    line-height: 1.8;
}

.job-description {
    margin: 1rem 0;
    color: var(--text-light);
}

.job-salary {
    font-weight: 600;
    color: var(--primary-color);
    margin: 1rem 0;
}

.no-jobs {
    text-align: center;
    padding: 3rem;
    background: var(--bg-light);
    border-radius: 12px;
}

.no-jobs p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.admin-link {
    background: var(--danger-color) !important;
}

.admin-link:hover {
    background: #dc2626 !important;
}

.message-box {
    max-width: 700px;
    margin: 2rem auto;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
}

.message-box.success {
    background-color: #d1fae5;
    color: #065f46;
}

.message-box.error {
    background-color: #fee2e2;
    color: #991b1b;
}

