﻿/* Hakkımızda Sayfası Font Tanımı */
* {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Ana Container Stilleri */
.content-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Liderlik Kartları */
.leadership-cards {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

/* Mobilde kartı ortala */
@media (max-width: 768px) {
    .leadership-cards {
        align-items: center;
    }
    
    .board-member {
        width: 160px;
        flex-shrink: 0;
    }
}

.board-member {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgb(0 0 0 / 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    width: 180px;
    flex-shrink: 0;
}

.board-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgb(0 0 0 / 0.15);
}

.board-member img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.member-info {
    padding: 1rem;
    text-align: center;
}

.member-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: #000;
    font-weight: 600;
}

.member-info p {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
    color: #333;
    font-weight: 500;
}

.member-info small {
    font-size: 0.8rem;
    color: #666;
}

/* Sağ Taraf - İçerik */
.content-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Hakkımızda Sayfası Stilleri */
.hakkimizda-section {
    max-width: 100%;
    margin: 0;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    box-shadow: 0 6px 20px rgb(0 0 0 / 0.15);
    border-left: 5px solid #000;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #222;
    line-height: 1.6;
}

.hakkimizda-section h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #000;
    text-align: center;
    font-weight: 700;
    position: relative;
}

.hakkimizda-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #000, #333);
    border-radius: 2px;
}

.hakkimizda-section p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    background: white;
    padding: 1.2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgb(0 0 0 / 0.05);
    border-left: 3px solid #000;
    transition: all 0.3s ease;
}

.hakkimizda-section p:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgb(0 0 0 / 0.1);
    border-left-color: #333;
}

.hakkimizda-section strong {
    color: #000;
    font-weight: 600;
}

/* Vizyonumuz Bölmesi Stilleri */
.vizyon-section {
    max-width: 100%;
    margin: 0;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    box-shadow: 0 6px 20px rgb(0 0 0 / 0.15);
    border-left: 5px solid #000;
}

.vizyon-section h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #000;
    text-align: center;
    font-weight: 700;
    position: relative;
}

.vizyon-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #000, #333);
    border-radius: 2px;
}

.vizyon-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.vizyon-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgb(0 0 0 / 0.08);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.vizyon-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #000, #333);
}

.vizyon-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgb(0 0 0 / 0.15);
    border-color: #000;
}

.vizyon-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #000;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.vizyon-item h3 i {
    color: #000;
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.vizyon-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

/* Responsive Tasarım */
@media (max-width: 1024px) {
    .content-container {
        padding: 1.5rem;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .content-container {
        padding: 1rem;
        gap: 1.5rem;
    }
    
    .leadership-cards {
        order: 1;
        margin-bottom: 1rem;
    }
    
    .content-right {
        order: 2;
    }
    
    .hakkimizda-section {
        order: 1;
    }
    
    .vizyon-section {
        order: 2;
    }
    
    .hakkimizda-section,
    .vizyon-section {
        margin: 0;
        padding: 1.5rem;
    }
    
    .hakkimizda-section h2,
    .vizyon-section h2 {
        font-size: 1.8rem;
    }
    
    .hakkimizda-section p {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .vizyon-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .vizyon-item {
        padding: 1.2rem;
    }
    
    .board-member img {
        height: 160px;
    }
    
    .member-info {
        padding: 1rem;
    }
    
    .member-info h3 {
        font-size: 1.1rem;
    }
    
    .member-info p {
        font-size: 1rem;
    }
}
