/* Careers Page Specific Styles */

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
    padding-top: 4rem; /* Account for fixed navigation */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Careers Section */
.careers {
    background: var(--bg-primary);
}

.job-openings {
    display: grid;
    gap: 1.5rem;
    margin-top: 3rem;
}

.job-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.job-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.job-meta {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.job-meta-pill {
    background: var(--bg-secondary);
    color: var(--text-primary);
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid var(--border-color);
}

.job-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
}

.job-type {
    background: var(--gradient-secondary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.job-description {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.job-requirements {
    list-style: none;
    margin-bottom: 1.5rem;
}

.job-requirements li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.job-requirements li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.apply-btn {
    background: var(--gradient-primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Company Culture Section */
.culture {
    background: var(--bg-secondary);
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.culture-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    text-align: center;
}

.culture-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.culture-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.culture-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text p {
        font-size: 1.125rem;
    }

    .job-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .job-card {
        padding: 1.5rem;
    }

    .culture-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .job-card {
        padding: 1.25rem;
    }

    .job-title {
        font-size: 1.125rem;
    }

    .culture-card {
        padding: 1rem;
    }
}

/* Spontaneous Candidacy Section */
.spontaneous {
    background: var(--bg-secondary);
}

.spontaneous-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: start;
}

.spontaneous-message {
    background: white;
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.spontaneous-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.message-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.spontaneous-message h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.spontaneous-message p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.spontaneous-benefits {
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: var(--bg-secondary);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: var(--bg-accent);
    transform: translateX(5px);
}

.benefit-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit-item span:last-child {
    color: var(--text-primary);
    font-weight: 500;
}

.spontaneous-action {
    background: white;
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--primary-color);
    position: relative;
}

.spontaneous-action::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-primary);
    border-radius: 1rem;
    z-index: -1;
}

.spontaneous-action h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.spontaneous-action p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.spontaneous-action ul {
    list-style: none;
    margin-bottom: 2rem;
}

.spontaneous-action li {
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.6;
}

.spontaneous-action li::before {
    content: '✨';
    position: absolute;
    left: 0;
    top: 0;
}

.spontaneous-btn {
    width: 100%;
    justify-content: center;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.spontaneous-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.spontaneous-btn::after {
    content: '📧';
    margin-left: 0.5rem;
}

/* Responsive Design for Spontaneous Section */
@media (max-width: 768px) {
    .spontaneous-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .spontaneous-message,
    .spontaneous-action {
        padding: 2rem;
    }

    .message-icon {
        font-size: 2.5rem;
    }

    .spontaneous-message h3 {
        font-size: 1.5rem;
    }

    .spontaneous-action h4 {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .spontaneous-message,
    .spontaneous-action {
        padding: 1.5rem;
    }

    .message-icon {
        font-size: 2rem;
    }

    .spontaneous-message h3 {
        font-size: 1.25rem;
    }

    .spontaneous-action h4 {
        font-size: 1.125rem;
    }

    .benefit-item {
        padding: 0.5rem;
    }

    .benefit-icon {
        font-size: 1.25rem;
    }
}
