/* Yönetim Sayfası Özel Stilleri */

/* Active Navigation Link */
.nav-menu li a.active {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 25px;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #000 0%, #000 100%);
    color: white;
    text-align: center;
    padding: 8rem 2rem 6rem;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><radialGradient id="g" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:rgba(255,255,255,0.1);stop-opacity:1" /><stop offset="100%" style="stop-color:rgba(255,255,255,0);stop-opacity:0" /></radialGradient></defs><circle cx="50" cy="50" r="50" fill="url(%23g)" /></svg>') center/300px;
    opacity: 0.1;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

/* Management Introduction */
.management-intro {
    padding: 6rem 0;
    background: white;
}

.intro-content h2 {
    text-align: center;
    font-size: 2.8rem;
    color: #000;
    margin-bottom: 2rem;
    font-weight: 700;
}

.intro-content p {
    text-align: center;
    font-size: 1.2rem;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 20px;
    border: 1px solid rgba(30, 58, 138, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(30, 58, 138, 0.1);
}

.stat-item h3 {
    font-size: 3rem;
    color: #000;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.stat-item p {
    color: #64748b;
    font-size: 1rem;
    font-weight: 600;
}

/* Management Hierarchy */
.management-hierarchy {
    padding: 6rem 0;
    background: #f8fafc;
}

.management-hierarchy h2 {
    text-align: center;
    font-size: 2.8rem;
    color: #000;
    margin-bottom: 4rem;
    font-weight: 700;
}

.hierarchy-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.hierarchy-item {
    background: white;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.15);
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    min-width: 250px;
    text-align: center;
}

.hierarchy-item span {
    font-weight: 600;
    font-size: 1.1rem;
    color: #000;
}

.hierarchy-item.founder {
    background: linear-gradient(135deg, #000, #000);
    color: white;
    border-color: #000;
}

.hierarchy-item.founder span {
    color: white;
}

.hierarchy-item.co-founder {
    background: linear-gradient(135deg, #000, #000);
    color: white;
    border-color: #3b82f6;
}

.hierarchy-item.co-founder span {
    color: white;
}

.hierarchy-item.admin {
    border-color: #10b981;
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
}

.hierarchy-item.assistant-admin {
    border-color: #f59e0b;
    background: linear-gradient(135deg, #fffbeb, #fef3c7);
}

.hierarchy-item.chief-editor {
    border-color: #8b5cf6;
    background: linear-gradient(135deg, #faf5ff, #e9d5ff);
}

.hierarchy-item.editor {
    border-color: #ef4444;
    background: linear-gradient(135deg, #fef2f2, #fecaca);
}

.arrow-down {
    font-size: 2rem;
    color: #3b82f6;
    font-weight: bold;
}

/* Management Roles */
.management-roles {
    padding: 6rem 0;
    background: white;
}

.management-roles h2 {
    text-align: center;
    font-size: 2.8rem;
    color: #000;
    margin-bottom: 4rem;
    font-weight: 700;
}

.roles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

/* Role Cards */
.role-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.1);
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.role-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #000, #000);
}

.role-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(30, 58, 138, 0.15);
}

.role-card.founder-card::before {
    background: linear-gradient(90deg, #000, #000);
}

.role-card.co-founder-card::before {
    background: linear-gradient(90deg, #000, #000);
}

.role-card.admin-card::before {
    background: linear-gradient(90deg, #000, #000);
}

.role-card.assistant-admin-card::before {
    background: linear-gradient(90deg, #000, #000);
}

.role-card.chief-editor-card::before {
    background: linear-gradient(90deg, #8b5cf6, #a78bfa);
}

.role-card.editor-card::before {
    background: linear-gradient(90deg, #ef4444, #f87171);
}

.role-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.role-card h3 {
    color: #000;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.role-level {
    background: #3b82f6;
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.role-responsibilities,
.role-requirements {
    margin-bottom: 2rem;
}

.role-responsibilities h4,
.role-requirements h4 {
    color: #000;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.role-responsibilities ul,
.role-requirements ul {
    list-style: none;
    padding: 0;
}

.role-responsibilities li,
.role-requirements li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}

.role-responsibilities li::before {
    content: '▶';
    color: #3b82f6;
    position: absolute;
    left: 0;
    font-size: 0.8rem;
}

.role-requirements li::before {
    content: '✓';
    color: #10b981;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Join Team Section */
.join-team-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #000, #000);
    color: white;
}

.join-content h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.join-content > p {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 4rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-section {
    margin-bottom: 4rem;
}

.benefits-section h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    font-weight: 600;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.benefit-item h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.benefit-item p {
    opacity: 0.9;
    line-height: 1.6;
}

/* Application Process */
.application-process {
    margin-bottom: 4rem;
}

.application-process h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    font-weight: 600;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.step-number {
    background: white;
    color: #000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h4 {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.step-content p {
    opacity: 0.9;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    text-align: center;
}

.cta-section h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-primary-large {
    background: white;
    color: #000;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.4);
    background: #f8fafc;
}

.cta-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Management Contact */
.management-contact {
    padding: 4rem 0;
    background: #f8fafc;
    text-align: center;
}

.management-contact h2 {
    color: #000;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.management-contact p {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(30, 58, 138, 0.1);
    min-width: 200px;
}

.contact-icon {
    font-size: 2rem;
}

.contact-item h4 {
    color: #000;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.contact-item p {
    color: #64748b;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .roles-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 6rem 2rem 4rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .hierarchy-flow {
        max-width: 300px;
    }
    
    .hierarchy-item {
        min-width: 200px;
        padding: 1rem 2rem;
    }
    
    .hierarchy-item span {
        font-size: 1rem;
    }
    
    .role-card {
        padding: 2rem 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-methods {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .join-content h2,
    .benefits-section h3,
    .application-process h3 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-item {
        padding: 1.5rem;
    }
    
    .stat-item h3 {
        font-size: 2.5rem;
    }
    
    .role-card {
        padding: 1.5rem 1rem;
    }
    
    .role-icon {
        font-size: 2.5rem;
    }
    
    .role-card h3 {
        font-size: 1.5rem;
    }
    
    .benefit-item,
    .step {
        padding: 1.5rem;
    }
}