/**
 * 채용 페이지 전용 CSS 스타일
 */

/* 채용 히어로 섹션 */
.recruit-hero {
    position: relative;
    height: 500px;
    width: 100%;
    overflow: hidden;
    margin-top: 70px;
    display: flex;
    align-items: center;
    text-align: center;
    background: linear-gradient(45deg, rgba(43, 46, 74, 0.85) 0%, rgba(231, 40, 85, 0.85) 100%), url('/api/placeholder/1200/500');
    background-size: cover;
    background-position: center;
}

.recruit-hero h1 {
    font-size: 3.5rem;
    color: white;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.recruit-hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto 30px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* 인재상 섹션 */
.talent-section {
    background-color: var(--light);
    position: relative;
    overflow: hidden;
}

.talent-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 200px;
    height: 200px;
    background-color: rgba(231, 40, 85, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.talent-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 200px;
    height: 200px;
    background-color: rgba(43, 46, 74, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.talent-card {
    text-align: center;
    background-color: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin-bottom: 40px;
}

.talent-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
}

.talent-card h3 {
    color: var(--secondary);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.talent-card p {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.talent-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.talent-value {
    text-align: center;
    background-color: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.talent-value:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.talent-value-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    background-color: rgba(231, 40, 85, 0.1);
    border-radius: 50%;
    margin-bottom: 20px;
    color: var(--primary);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.talent-value:hover .talent-value-icon {
    background-color: var(--primary);
    color: white;
    transform: rotateY(360deg);
}

.talent-value h4 {
    color: var(--secondary);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.talent-value p {
    color: var(--gray);
    line-height: 1.6;
}

/* 직무 소개 섹션 */
.job-section {
    background-color: white;
}

.job-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.job-card {
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    border-bottom: 3px solid transparent;
}

.job-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid var(--primary);
}

.job-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(231, 40, 85, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
    color: var(--primary);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.job-card:hover .job-icon {
    background-color: var(--primary);
    color: white;
    transform: rotateY(360deg);
}

.job-content {
    padding: 30px;
    text-align: center;
    flex: 1;
}

.job-content h3 {
    font-size: 1.3rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.job-content p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.job-cta {
    margin-top: auto;
    padding: 15px 30px;
    background-color: var(--light);
    text-align: center;
    transition: all 0.3s ease;
}

.job-card:hover .job-cta {
    background-color: rgba(231, 40, 85, 0.05);
}

.job-cta a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.job-cta a:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

.job-cta a i {
    margin-left: 5px;
    transition: all 0.3s ease;
}

.job-cta a:hover i {
    transform: translateX(3px);
}

.text-center {
    text-align: center;
    margin-top: 40px;
}

/* 복지제도 섹션 */
.benefit-section {
    background-color: var(--light);
    position: relative;
    overflow: hidden;
}

.benefit-section::before {
    content: '';
    position: absolute;
    top: -150px;
    left: -150px;
    width: 300px;
    height: 300px;
    background-color: rgba(231, 40, 85, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.benefit-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 300px;
    height: 300px;
    background-color: rgba(43, 46, 74, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.benefit-card {
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    background-color: rgba(231, 40, 85, 0.1);
    border-radius: 50%;
    margin-bottom: 20px;
    color: var(--primary);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    background-color: var(--primary);
    color: white;
    transform: rotateY(360deg);
}

.benefit-card h3 {
    font-size: 1.3rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.benefit-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* 채용 프로세스 섹션 */
.process-section {
    background-color: white;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-top: 50px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    z-index: 0;
}

.process-step {
    width: 22%;
    min-width: 180px;
    text-align: center;
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
}

.step-number {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 auto 20px;
    box-shadow: 0 10px 20px rgba(231, 40, 85, 0.2);
}

.process-step h3 {
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 10px;
}

.process-step p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.process-note {
    margin-bottom: 20px;
    color: var(--gray);
    font-style: italic;
}

/* FAQ 섹션 */
.faq-section {
    background-color: var(--light);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    padding: 20px 30px;
    background-color: white;
    font-weight: 600;
    color: var(--secondary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question i {
    transform: rotate(0);
    transition: all 0.3s ease;
    color: var(--primary);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer p {
    color: var(--gray);
    padding-bottom: 20px;
    line-height: 1.6;
}

.faq-item.active .faq-question {
    color: var(--primary);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* 반응형 디자인 */
@media screen and (max-width: 992px) {
    .recruit-hero h1 {
        font-size: 3rem;
    }
    
    .process-steps::before {
        display: none;
    }
    
    .process-step {
        width: 45%;
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 768px) {
    .recruit-hero h1 {
        font-size: 2.5rem;
    }
    
    .recruit-hero p {
        font-size: 1.1rem;
    }
    
    .talent-card h3 {
        font-size: 1.5rem;
    }
    
    .process-step {
        width: 100%;
    }
}

@media screen and (max-width: 576px) {
    .recruit-hero {
        height: 400px;
    }
    
    .recruit-hero h1 {
        font-size: 2rem;
    }
    
    .talent-card {
        padding: 30px 20px;
    }
    
    .job-content {
        padding: 20px;
    }
}