/* Header adjustments */
header.bg-primary {
    padding: 2.5rem 0 !important;
}

header .display-4 {
    font-size: 2.5rem !important;
    margin-bottom: 0.5rem;
}

header .lead {
    font-size: 1.1rem !important;
}

/* Button adjustments */
.btn-lg {
    padding: 0.5rem 1rem !important;
    font-size: 1rem !important;
}

/* Featured jobs section */
.featured-jobs-header {
    font-size: 1.5rem;
    margin-bottom: 1rem !important;
    padding: 0.75rem 0;
    color: #007bff;
}

.star-icon {
    font-size: 1.2rem;
    margin-right: 0.5rem;
    color: #ffc107;
}

.featured-jobs-section {
    border: 1px solid #007bff;
    border-radius: 8px;
    padding: 30px;
    background-color: #f8f9ff;
}

.featured-job {
    border: 1px solid #C4A484;
    background-color: #fff9e6;
    box-shadow: 0 2px 4px rgba(0, 123, 255, 0.1);
}

/* Value Propositions */
.value-prop-card {
    transition: transform 0.2s;
    height: 100%;
}

.value-prop-card:hover {
    transform: translateY(-5px);
}

.value-prop-card .card-body {
    padding: 1.5rem;
}

.value-prop-card ul li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: start;
}

.value-prop-card ul li i {
    margin-top: 0.25rem;
}

/* Job listing adjustments */
.job-listing {
    padding: 1rem !important;
    margin-bottom: 1rem !important;
    cursor: pointer;
    transition: all 0.3s ease;
}

.job-listing:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.job-title {
    font-size: 1.1rem !important;
    color: #2c3e50;
}

.company-name {
    font-size: 0.9rem;
    color: #6c757d;
}

.posted-date {
    font-size: 0.8rem;
    color: #6c757d;
}

/* Categories section */
.card {
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-5px);
}

.card-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.card-text {
    font-size: 0.9rem;
    color: #6c757d;
}

.card-body {
    padding: 1.5rem !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    header .display-4 {
        font-size: 2rem !important;
    }
    
    header .lead {
        font-size: 1rem !important;
    }
    
    .job-listing {
        padding: 0.75rem !important;
    }
    
    .job-details, .salary-range {
        font-size: 0.8rem;
    }
}

/* Add favorite button styles */
.favorite-btn {
    padding: 0;
    margin-left: 10px;
    border: none;
    background: none;
    cursor: pointer;
    transition: transform 0.2s;
}

.favorite-btn:hover {
    transform: scale(1.1);
}

.favorite-btn i {
    font-size: 1.2rem;
}

.favorite-btn i.text-danger {
    color: #dc3545;
}

/* Ensure job title and favorite button container alignment */
.job-title {
    margin-right: 5px;
}
