/* ========== CAREERS.CSS - SADECE CAREERS İÇERİĞİ İÇİN ========== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: #000;
    color: #fff;
    padding-top: 56px; /* Header için boşluk */
}

/* Careers Content */
.careers-hero {
    text-align: center;
    padding: 40px 24px 60px;
    max-width: 900px;
    margin: 0 auto;
    background: radial-gradient(ellipse at center, rgba(102, 126, 234, 0.15) 0%, transparent 70%);
}

.careers-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(to bottom, #fff, rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.careers-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.jobs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto 60px auto;
    padding: 0 20px;
}

.job-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.job-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.6);
}

.job-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 8px;
}

.job-department {
    color: #3b82f6;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.job-description {
    color: #bbb;
    line-height: 1.6;
    margin-bottom: 20px;
}

.job-requirements {
    list-style: none;
    margin-bottom: 20px;
}

.job-requirements li {
    padding: 4px 0;
    color: #bbb;
    position: relative;
    padding-left: 20px;
}

.job-requirements li:before {
    content: "•";
    color: #3b82f6;
    position: absolute;
    left: 0;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 12px 24px;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .2s;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, .2);
}

.btn-secondary {
    padding: 12px 24px;
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: all .2s;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .5);
}

/* Footer */
.footer-bottom {
    padding: 20px 0;
    margin-top: 40px;
    text-align: center;
    border-top: 1px solid #222;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: .85rem;
    color: #777;
}

.footer-bottom .social-icons {
    margin-bottom: 12px;
}

.social-icons {
    margin-bottom: 15px;
}

.social-icons a {
    margin-right: 12px;
    font-size: 1.2rem;
    color: #aaa;
    transition: color .3s;
}

.social-icons a:hover {
    color: #fff;
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin: 140px 0 60px;
}

.cta-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #e5e5ff;
    line-height: 1.3;
    margin-bottom: 35px;
}

/* Mobile Responsive */
@media (max-width: 1100px) {
    .careers-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        gap: 12px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}