/* Careers Page Styles */

.page-hero {
    height: 400px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.page-hero h1 {
    font-size: 56px;
    margin-bottom: 20px;
    color: var(--deep-gold);
}

.page-hero p {
    font-size: 20px;
}

.careers-intro h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    text-align: center;
    padding: 30px;
    background-color: var(--cream);
    border-radius: 12px;
}

.value-card i {
    font-size: 40px;
    color: var(--deep-gold);
    margin-bottom: 20px;
}

.open-positions {
    margin-top: 60px;
}

.open-positions h3 {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
}

.position-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    background-color: white;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.pos-info h4 {
    font-size: 20px;
    margin-bottom: 5px;
}

.pos-meta {
    font-size: 14px;
    color: var(--light-green);
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
    .position-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}
