/* Careers Page Styles */

/* Careers Hero Section */
.careers-hero {
    position: relative;
    width: 100%;
    height: 600px;
    margin-top: var(--header-height);
    overflow: hidden;
}

.careers-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.careers-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.careers-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.careers-hero-content {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 0 165px;
    text-align: center;
}

.careers-hero-title {
    font-size: 56px;
    font-weight: 300;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.5px;
    max-width: 900px;
    margin: 0 auto;
}

/* Careers Content Section */
.careers-content-section {
    width: 100%;
    background-color: #FFFFFF;
    padding: 100px 0;
}

.careers-content-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 165px;
}

.careers-content-text {
    max-width: 900px;
}

.careers-content-text p {
    font-size: 17px;
    font-weight: 400;
    color: #666;
    line-height: 1.8;
    margin: 0 0 25px 0;
}

.careers-content-text p:last-child {
    margin-bottom: 0;
}

/* Professional Development Section */
.professional-dev-section {
    width: 100%;
    background-color: #F5F5F5;
    padding: 0;
}

.professional-dev-container {
    display: flex;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    gap: 80px;
}

/* Left Side - Image */
.professional-dev-image {
    width: 50%;
    flex-shrink: 0;
}

.dev-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Right Side - Content */
.professional-dev-content {
    flex: 1;
    padding: 80px 165px 80px 0;
}

.dev-title {
    font-size: 42px;
    font-weight: 300;
    color: var(--primary-color);
    line-height: 1.3;
    margin: 0 0 30px 0;
    letter-spacing: -0.5px;
}

.dev-text p {
    font-size: 17px;
    font-weight: 400;
    color: #666;
    line-height: 1.8;
    margin: 0 0 25px 0;
}

.dev-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dev-list li {
    font-size: 17px;
    font-weight: 400;
    color: #8BA888;
    line-height: 1.8;
    margin-bottom: 12px;
}

/* Working With Us Section */
.working-with-us-section {
    width: 100%;
    background-color: #FFFFFF;
    padding: 100px 0;
}

.working-with-us-container {
    max-width: 1300px;
    margin: 0 auto;
}

.working-title {
    font-size: 42px;
    font-weight: 300;
    color: var(--primary-color);
    text-align: center;
    margin: 0 0 60px 0;
    letter-spacing: -0.5px;
}

/* Working Grid */
.working-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.working-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.working-image {
    position: relative;
    width: 645px;
    height: 585px;
    overflow: hidden;
}

.working-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.working-card:hover .working-image img {
    transform: scale(1.05);
}

.working-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.5) 100%);
    display: flex;
    align-items: flex-end;
    padding: 40px;
    transition: background 0.3s ease;
}

.working-card:hover .working-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.working-card-title {
    font-size: 32px;
    font-weight: 400;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.3;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .careers-hero-content {
        padding: 0 80px;
    }
    
    .careers-hero-title {
        font-size: 48px;
    }
    
    .careers-content-container {
        padding: 0 80px;
    }
    
    .careers-content-text p {
        font-size: 16px;
    }
    
    .professional-dev-container {
        gap: 60px;
    }
    
    .professional-dev-content {
        padding: 60px 80px 60px 0;
    }
    
    .dev-title {
        font-size: 36px;
    }
    
    .dev-text p,
    .dev-list li {
        font-size: 16px;
    }
    
    .working-with-us-section {
        padding: 70px 0;
    }
    
    .working-with-us-container {
        padding: 0;
    }
    
    .working-title {
        font-size: 36px;
        margin-bottom: 50px;
    }
    
    .working-grid {
        gap: 30px;
    }
    
    .working-image {
        width: 100%;
        height: auto;
        aspect-ratio: 645 / 585;
    }
    
    .working-card-title {
        font-size: 28px;
    }
    
    .working-overlay {
        padding: 35px;
    }
}

@media (max-width: 768px) {
    .careers-hero {
        height: 500px;
    }
    
    .careers-hero-content {
        padding: 0 40px;
    }
    
    .careers-hero-title {
        font-size: 36px;
    }
    
    .careers-content-section {
        padding: 60px 0;
    }
    
    .careers-content-container {
        padding: 0 40px;
    }
    
    .careers-content-text p {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .professional-dev-container {
        flex-direction: column;
        gap: 0;
    }
    
    .professional-dev-image {
        width: 100%;
    }
    
    .professional-dev-content {
        padding: 50px 40px;
    }
    
    .dev-title {
        font-size: 30px;
        margin-bottom: 25px;
    }
    
    .dev-text p,
    .dev-list li {
        font-size: 15px;
    }
    
    .working-with-us-section {
        padding: 50px 0;
    }
    
    .working-with-us-container {
        padding: 0;
    }
    
    .working-title {
        font-size: 30px;
        margin-bottom: 40px;
    }
    
    .working-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .working-image {
        width: 100%;
        height: auto;
        aspect-ratio: 645 / 585;
    }
    
    .working-card-title {
        font-size: 24px;
    }
    
    .working-overlay {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .careers-hero {
        height: 400px;
    }
    
    .careers-hero-content {
        padding: 0 20px;
    }
    
    .careers-hero-title {
        font-size: 28px;
    }
    
    .careers-content-section {
        padding: 40px 0;
    }
    
    .careers-content-container {
        padding: 0 20px;
    }
    
    .careers-content-text p {
        font-size: 14px;
        margin-bottom: 18px;
    }
    
    .professional-dev-content {
        padding: 40px 20px;
    }
    
    .dev-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .dev-text p,
    .dev-list li {
        font-size: 14px;
    }
    
    .dev-list li {
        margin-bottom: 10px;
    }
    
    .working-with-us-section {
        padding: 40px 0;
    }
    
    .working-with-us-container {
        padding: 0;
    }
    
    .working-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .working-grid {
        gap: 20px;
    }
    
    .working-image {
        width: 100%;
        height: auto;
        aspect-ratio: 645 / 585;
    }
    
    .working-card-title {
        font-size: 20px;
    }
    
    .working-overlay {
        padding: 25px;
    }
}

