/* Careers Hero Section */
.careers-hero {
    position: relative;
    padding: 6rem 2rem 5rem calc(50px + 2rem);
    background: linear-gradient(135deg, 
        rgba(74, 123, 140, 0.95), 
        rgba(245, 167, 167, 0.85)),
        url('https://images.unsplash.com/photo-1582213782179-e0d53f98f2ca?auto=format&fit=crop&q=80') center/cover;
    text-align: center;
    color: white;
    overflow: hidden;
}

.careers-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    opacity: 0.3;
}

.careers-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

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

.careers-hero .intro-text {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-text {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Why Join Section */
.why-join {
    padding: 6rem 2rem;
    background-color: white;
}

.why-join h2 {
    text-align: center;
    color: var(--primary-blue);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.benefit-item {
    text-align: center;
    padding: 2rem;
    background: var(--background-light);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

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

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.benefit-item h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.benefit-item p {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
}

/* Open Positions Section */
.open-positions {
    padding: 6rem 2rem;
    background-color: var(--background-light);
}

.open-positions h2 {
    text-align: center;
    color: var(--primary-blue);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.position-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

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

.position-card h3 {
    color: var(--primary-blue);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.position-type {
    color: var(--primary-pink);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.position-details {
    list-style: none;
    margin-bottom: 2rem;
}

.position-details li {
    color: #666;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.position-details li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-pink);
}

.apply-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: var(--primary-pink);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.apply-button:hover {
    background-color: var(--primary-blue);
    transform: translateX(5px);
}

/* Application Process Section */
.application-process {
    padding: 6rem 2rem;
    background-color: white;
}

.application-process h2 {
    text-align: center;
    color: var(--primary-blue);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-pink);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: 600;
}

.step h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.step p {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .positions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .careers-hero h1 {
        font-size: 2.8rem;
    }

    .careers-hero .intro-text {
        font-size: 1.4rem;
    }

    .hero-text {
        font-size: 1rem;
    }

    .benefits-grid,
    .positions-grid {
        grid-template-columns: 1fr;
    }

    .benefit-item,
    .position-card {
        max-width: 400px;
        margin: 0 auto;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
} 