/* Ekip Sayfası CSS - Başkent Psikoloji Akademisi */

/* Founder Hero */
.founder-hero {
    position: relative;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    padding: 80px 0;
    overflow: hidden;
}

.founder-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(60% 80% at 20% 50%, rgba(220,20,60,0.25), transparent 70%);
    pointer-events: none;
}

.founder-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 2rem;
}

.founder-left {
    color: #fff;
}

.founder-name {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 0 .5rem 0;
    background: linear-gradient(45deg, #ffffff, #dc143c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.founder-title { font-size: 1.2rem; color: #ddd; margin-bottom: .75rem; }
.founder-experience { color: #bdbdbd; margin-bottom: 1rem; }
.founder-bio { color: #cccccc; line-height: 1.7; margin-bottom: 1.25rem; }

.founder-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: linear-gradient(45deg, #dc143c, #ff1744);
    color: #fff;
    padding: .9rem 1.6rem;
    border-radius: 28px;
    text-decoration: none;
    font-weight: 700;
}

.founder-right { display: flex; justify-content: flex-end; align-items: flex-end; }
.founder-photo {
    width: 420px;
    height: 520px;
    object-fit: contain; /* kart yok, kırpma yok */
    border-radius: 0;
    box-shadow: none;
    background: transparent;
}
.founder-photo.placeholder {
    width: 420px;
    height: 520px;
    background: transparent;
    border-radius: 0;
    display:flex; align-items:center; justify-content:center; color:#777;
}

@media (max-width: 768px) {
    .founder-grid { grid-template-columns: 1fr; }
    .founder-right { justify-content: center; }
    .founder-photo, .founder-photo.placeholder { width: 320px; height: 420px; }
}

@media (max-width: 576px) {
    .founder-hero { padding: 50px 0; }
    .founder-name { font-size: 2rem; }
    .founder-photo, .founder-photo.placeholder { width: 260px; height: 360px; }
}

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

/* Team Member Card */
.team-member {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(220, 20, 60, 0.2);
    position: relative;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(220, 20, 60, 0.3);
    border-color: #dc143c;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #dc143c, #ff1744);
}

/* Member Photo */
.member-photo {
    width: 100%;
    height: 250px;
    background: linear-gradient(45deg, #dc143c, #ff1744);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: inherit;
}

.member-photo .photo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.member-photo .photo-placeholder i {
    font-size: 4rem;
}

.member-photo .photo-placeholder span {
    font-size: 1rem;
    font-weight: bold;
}

/* Member Info */
.member-info {
    padding: 2rem;
}

.member-name {
    color: #dc143c;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.member-title {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.member-experience {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.member-bio {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Specialties */
.member-specialties {
    margin-bottom: 1.5rem;
}

.specialties-title {
    color: #dc143c;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.specialties-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.specialty-tag {
    background: rgba(220, 20, 60, 0.1);
    color: #dc143c;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid rgba(220, 20, 60, 0.2);
    transition: all 0.3s ease;
}

.specialty-tag:hover {
    background: rgba(220, 20, 60, 0.2);
    transform: translateY(-1px);
}

/* Education Info */
.member-education {
    margin-bottom: 1.5rem;
}

.education-title {
    color: #dc143c;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.education-item {
    color: #cccccc;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
    padding-left: 1rem;
    position: relative;
}

.education-item::before {
    content: '•';
    color: #dc143c;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Contact Info */
.member-contact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #333;
}

.contact-links {
    display: flex;
    gap: 1rem;
}

.contact-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(220, 20, 60, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dc143c;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(220, 20, 60, 0.2);
}

.contact-link:hover {
    background: #dc143c;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(220, 20, 60, 0.4);
}

/* Team Stats */
.team-stats {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    padding: 60px 0;
    text-align: center;
}

.team-stats h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.stat-item {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(220, 20, 60, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(220, 20, 60, 0.2);
    border-color: #dc143c;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #dc143c;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #cccccc;
    font-size: 1.1rem;
}

/* Join Team Section */
.join-team {
    background: linear-gradient(45deg, #dc143c, #ff1744);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.join-team h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.join-team p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.join-team .btn {
    background: white;
    color: #dc143c;
    font-weight: bold;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.join-team .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Team Filters */
.team-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    background: transparent;
    color: #cccccc;
    border: 2px solid #333;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: #dc143c;
    color: white;
    border-color: #dc143c;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .member-info {
        padding: 1.5rem;
    }
    
    .member-name {
        font-size: 1.3rem;
    }
    
    .member-contact {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .team-filters {
        flex-direction: column;
        align-items: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .member-photo {
        height: 200px;
        font-size: 3rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .join-team h2 {
        font-size: 2rem;
    }
}
