/* Careers - Specific Styles */

/* Language content switching */
.lang-content {
    display: none;
}

.lang-content.active {
    display: block;
}

/* Main content */
main {
    padding-top: 80px;
}

/* Container utility */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.careers-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6rem 2rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.careers-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.careers-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Culture Section */
.culture-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

.culture-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #1d1d1f;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #86868b;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.value-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 1rem;
}

.value-card p {
    color: #86868b;
    line-height: 1.6;
}

/* Opportunities Section */
.opportunities-section {
    padding: 6rem 0;
    background: white;
}

.opportunities-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #1d1d1f;
}

.departments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.department-card {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.department-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
}

.department-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.department-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1d1d1f;
}

.division-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.division-badge.tech {
    background: #e3f2fd;
    color: #1976d2;
}

.division-badge.media {
    background: #fce4ec;
    color: #c2185b;
}

.division-badge.corp {
    background: #e8f5e8;
    color: #2e7d32;
}

.department-card p {
    color: #86868b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.role-list {
    list-style: none;
    padding: 0;
}

.role-list li {
    padding: 0.5rem 0;
    color: #1d1d1f;
    position: relative;
    padding-left: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    transition: color 0.3s ease;
}

.role-list li:last-child {
    border-bottom: none;
}

.role-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #0071e3;
    font-weight: 600;
}

.role-list li:hover {
    color: #0071e3;
}

/* Benefits Section */
.benefits-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

.benefits-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #1d1d1f;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.benefit-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 0.75rem;
}

.benefit-item p {
    color: #86868b;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Interest Form Section */
.interest-section {
    padding: 6rem 0;
    background: white;
}

.interest-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.interest-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1d1d1f;
}

.interest-section p {
    font-size: 1.2rem;
    color: #86868b;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.interest-form {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: #1d1d1f;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d2d2d7;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: white;
    color: #1d1d1f;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0071e3;
    box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group input[type="file"] {
    padding: 0.5rem;
    background: #f8f9fa;
}

.submit-btn {
    background: #0071e3;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: #005bb5;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .careers-hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .departments-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .interest-form {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .careers-hero {
        padding: 4rem 1rem 3rem;
    }
    
    .careers-hero h1 {
        font-size: 2rem;
    }
    
    .value-card,
    .department-card,
    .benefit-item {
        padding: 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .culture-section,
    .opportunities-section,
    .benefits-section,
    .interest-section {
        padding: 4rem 0;
    }
    
    .culture-section h2,
    .opportunities-section h2,
    .benefits-section h2,
    .interest-section h2 {
        font-size: 2rem;
    }
    
    .interest-form {
        padding: 1.5rem;
    }
}