/* Recruit Page Specific Styles */

/* Hero Section */
.recruit-hero {
    position: relative;
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.3), rgba(218, 165, 32, 0.3), rgba(139, 105, 20, 0.3));
    color: white;
    text-align: center;
    overflow: hidden;
}

.recruit-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/assets/images/recruit/hero.png') center/cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    z-index: -1;
}

.recruit-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-message {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 3rem auto;
    max-width: 700px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.message-main {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.message-sub {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.btn-primary, .btn-secondary {
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: inline-block;
}

.btn-primary {
    background: #B8860B;
    color: white;
    border-color: #B8860B;
}

.btn-primary:hover {
    background: #9A7209;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.3);
}

.btn-secondary {
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    border-color: rgba(255, 255, 255, 0.6);
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.7;
}

.btn-secondary:hover {
    /* 移除悬停效果，因为按钮已禁用 */
}

/* Recruitment Status Section */
.recruitment-status {
    padding: 6rem 0;
    background: #fff;
}

.recruitment-status h2 {
    text-align: center;
    font-size: 2.8rem;
    color: #B8860B;
    margin-bottom: 3rem;
    font-weight: 600;
}

.status-card {
    max-width: 900px;
    margin: 0 auto;
    background: #f8f9fa;
    border-radius: 20px;
    padding: 4rem;
    text-align: center;
    border-left: 6px solid #B8860B;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.status-card h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 2rem;
    font-weight: 600;
}

.status-card p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.status-btn {
    display: inline-block;
    background: rgba(184, 134, 11, 0.6);
    color: rgba(255, 255, 255, 0.8);
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.7;
}

.status-btn:hover {
    /* 移除悬停效果，因为按钮已禁用 */
}

.status-btn span {
    font-size: 0.9em;
    opacity: 0.8;
}

/* Company Culture Section */
.company-culture {
    padding: 6rem 0;
    background: #f8f9fa;
}

.culture-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.culture-text h2 {
    font-size: 2.8rem;
    color: #333;
    margin-bottom: 2rem;
    font-weight: 600;
}

.culture-intro {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.culture-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #B8860B, #DAA520);
    border-radius: 50%;
    color: white;
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    stroke: currentColor;
}

.feature-content h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.feature-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.culture-image {
    position: relative;
}

.culture-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .recruit-hero {
        padding: 6rem 0 4rem;
    }
    
    .recruit-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-message {
        padding: 2rem;
        margin: 2rem auto;
    }
    
    .message-main {
        font-size: 1.2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .recruitment-status h2 {
        font-size: 2.2rem;
    }
    
    .status-card {
        padding: 2.5rem;
        margin: 0 1rem;
    }
    
    .culture-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .culture-text h2 {
        font-size: 2.2rem;
    }
    
    .culture-image {
        order: -1;
    }
    
    .culture-image img {
        height: 300px;
    }
    
    .feature-item {
        padding: 1.5rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
    }

    .feature-icon svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .recruit-hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-message {
        padding: 1.5rem;
    }
    
    .status-card {
        padding: 2rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}
