/* Ekibimiz 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: 18rem 2rem 6rem;
    margin-top: 0px;
    position: relative;
    overflow: hidden;
}


.cta-button {
    background: white;
    color: #000;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.4);
    background: #f8fafc;
}
.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;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 3 auto;
}

/* Team Section */
.team-section {
    padding: 8rem 0;
    background: #f8fafc;
}

.team-intro {
    text-align: center;
    margin-bottom: 5rem;
}

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

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

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.team-member {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(30, 58, 138, 0.05);
}

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

/* Member Photo */
.member-photo {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.photo-placeholder {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
    border: 3px dashed #94a3b8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
    transition: all 0.3s ease;
}

.team-member:hover .photo-placeholder {
    border-color: #3b82f6;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: #000;
}

/* Gerçek fotoğraf kullanımı için */
.member-photo img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #e2e8f0;
    transition: all 0.3s ease;
}

.team-member:hover .member-photo img {
    border-color: #3b82f6;
    transform: scale(1.05);
}

/* Member Info */
.member-info h3 {
    font-size: 1.5rem;
    color: #000;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.member-title {
    font-size: 1.1rem;
    color: #3b82f6;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.member-description {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

/* Member Social */
.member-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.member-social a {
    color: #64748b;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.member-social a:hover {
    background: #3b82f6;
    color: white;
    border-color: #3b82f6;
    transform: translateY(-2px);
}

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

.join-team-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.join-team-section p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-header {
        padding: 16rem 2rem 4rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-header p {
        font-size: 1.1rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .team-member {
        padding: 2rem;
    }
    
    .photo-placeholder {
        width: 120px;
        height: 120px;
        font-size: 12px;
    }
    
    .member-photo img {
        width: 120px;
        height: 120px;
    }
    
    .team-intro h2 {
        font-size: 2.2rem;
    }
    
    .join-team-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .team-section {
        padding: 4rem 0;
    }
    
    .team-member {
        padding: 1.5rem;
    }
    
    .photo-placeholder {
        width: 100px;
        height: 100px;
        font-size: 11px;
    }
    
    .member-photo img {
        width: 200px;
        height: 200px;
    }
    
    .member-social {
        flex-direction: column;
        align-items: center;
    }
    
    .member-social a {
        width: 120px;
        text-align: center;
    }
}