/* --- Careers Page Styling --- */

.careers-page {
    background-color: #f8f9fa;
}

/* --- Hero Section --- */
.careers-hero {
    position: relative;
    padding: 100px 0;
    text-align: center;
    color: #fff;
    background: url("../images/IMG-20250716-WA0012.b5cc8ef1b675.jpg") no-repeat center center/cover;
}

.careers-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

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

.careers-hero .hero-title {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    font-weight: 700;
}

.careers-hero .hero-subtitle {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 15px auto 0;
}

/* --- Intro Section --- */
.careers-intro-section {
    padding: 80px 0;
    background-color: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .section-title {
    font-family: 'Cinzel', serif;
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.section-header .section-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 800px;
    margin: 0 auto;
}

.intro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    text-align: center;
}

.intro-card .card-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.intro-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.intro-card p {
    color: #555;
    line-height: 1.7;
}

/* --- Open Positions Section --- */
.open-positions-section {
    padding: 80px 0;
}

.job-listings {
    max-width: 900px;
    margin: 0 auto;
}

.job-card {
    background-color: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.job-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.job-card .job-meta {
    color: #6c757d;
    margin-bottom: 20px;
    font-size: 1rem;
}

.job-card .job-meta i {
    color: var(--gold);
    margin-right: 5px;
}

.job-card p {
    line-height: 1.7;
    margin-bottom: 20px;
}

.job-card .btn {
    background-color: var(--gold);
    border-color: var(--gold);
    color: #fff;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 50px;
    transition: background-color 0.3s ease;
}

.job-card .btn:hover {
    background-color: var(--dark-gold);
    border-color: var(--dark-gold);
}

/* --- CTA Section --- */
.cta-section {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
}

.cta-section h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
}

.cta-section p {
    font-size: 1.2rem;
    color: #6c757d;
    margin: 15px 0 30px;
}

.cta-section .btn-primary {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.cta-section .btn-primary:hover {
    background: var(--dark-gold);
    border-color: var(--dark-gold);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    .careers-hero .hero-title {
        font-size: 2.8rem;
    }
    .section-header .section-title {
        font-size: 2.2rem;
    }
    .job-card h3 {
        font-size: 1.5rem;
    }
}
