/* Careers Hero Section */
.careers-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #827f7f 100%);
    color: white;
    padding: 120px 0 60px;
    text-align: center;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.careers-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.careers-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Open Positions Section */
.open-positions {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.open-positions h2 {
    text-align: center;
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.positions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.position-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.position-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.position-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.position-card h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.position-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.position-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.position-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.position-meta i {
    color: var(--secondary-color);
}

/* Why Join Us Section */
.why-join-us {
    padding: 80px 0;
    background-color: white;
}

.why-join-us h2 {
    text-align: center;
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.benefit-card {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.benefit-card h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

/* Mobile Menu Styles */
.mobile-menu {
    display: none;
    font-size: 1.5rem;
    color: #2c3e50;
    cursor: pointer;
    transition: color 0.3s ease;
}

.mobile-menu:hover {
    color: var(--secondary-color)
}

.mobile-menu.active {
    color: var(--primary-color);
}

.mobile-menu.active i {
    transform: rotate(90deg);
}

/* Responsive Design */
@media (max-width: 900px) {
    .mobile-menu {
        display: block;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        padding: 1rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .careers-hero h1 {
        font-size: 2.5rem;
    }

    .open-positions h2,
    .why-join-us h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .careers-hero {
        padding: 100px 0 40px;
    }

    .careers-hero h1 {
        font-size: 2rem;
    }

    .open-positions h2,
    .why-join-us h2 {
        font-size: 1.8rem;
    }

    .position-card,
    .benefit-card {
        padding: 1.5rem;
    }
} 