﻿/* =========================================
   BAŞKAN MESAJI
========================================= */
.president-message-section {
    padding: 75px 0;
    background-color: #f5f8f6;
}

.president-message-container {
    width: min(900px, calc(100% - 40px));
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
}

.president-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 18px 40px rgba(0, 45, 30, 0.1);
}

    .president-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.president-message-card {
    position: relative;
    width: 100%;
    min-height: auto;
    padding: 42px 55px 34px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-top: 5px solid #009750;
    border-radius: 8px;
    background-color: #ffffff;
    box-shadow: 0 18px 40px rgba(0, 45, 30, 0.1);
    overflow-wrap: anywhere;
}

.quote-icon {
    position: absolute;
    top: 12px;
    left: 20px;
    color: #d9f1e3;
    font-family: Georgia, serif;
    font-size: 75px;
    line-height: 1;
}

.president-message-card blockquote {
    position: relative;
    margin: 0;
    color: #242424;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    font-style: italic;
    line-height: 1.85;
    text-align: center;
}

.president-information {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    text-align: center;
}

    .president-information strong {
        color: #009750;
        font-size: 14px;
    }

    .president-information span {
        color: #999999;
        font-size: 11px;
    }
/* =========================================
   YÖNETİM KURULU KARTLARI
========================================= */

.board-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.management-section-header {
    margin-bottom: 45px;
    text-align: center;
}

    .management-section-header span {
        display: block;
        margin-bottom: 9px;
        color: #009750;
        font-size: 10px;
        font-weight: 800;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

    .management-section-header h2 {
        color: #111111;
        font-size: 35px;
        font-weight: 800;
    }

.board-chart {
    max-width: 920px;
    margin: 0 auto;
}

.board-chart-president {
    position: relative;
    width: min(380px, 100%);
    margin: 0 auto 62px;
}

    .board-chart-president::after {
        position: absolute;
        top: 100%;
        left: 50%;
        width: 1px;
        height: 32px;
        background-color: #b8c9c0;
        content: "";
    }

.board-chart-members {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px 24px;
}

    .board-chart-members::before {
        position: absolute;
        top: -30px;
        left: 16.666%;
        right: 16.666%;
        height: 1px;
        background-color: #b8c9c0;
        content: "";
    }

    .board-chart-members .board-card::before {
        position: absolute;
        bottom: 100%;
        left: 50%;
        width: 1px;
        height: 31px;
        background-color: #b8c9c0;
        content: "";
    }

    .board-chart-members .board-card:nth-child(n + 4)::before {
        display: none;
    }

.board-card {
    position: relative;
    min-height: 108px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    overflow: visible;
    border: 1px solid #dde5e1;
    border-radius: 8px;
    background-color: #ffffff;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.board-card-president {
    border-top: 4px solid #009750;
}

.board-card:hover {
    border-color: #009750;
    box-shadow: 0 12px 28px rgba(0, 75, 45, 0.1);
    transform: translateY(-4px);
}

.board-member-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
    background-color: #009750;
}

    .board-member-icon svg {
        width: 21px;
        height: 21px;
        fill: #ffffff;
    }

.board-member-title {
    display: block;
    margin-bottom: 5px;
    color: #009750;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
}

.board-member-content h3 {
    color: #111111;
    font-size: 16px;
    font-weight: 700;
}

.board-member-content p {
    margin-top: 5px;
    color: #999999;
    font-size: 10px;
    line-height: 1.5;
}

.management-empty-message {
    padding: 30px;
    border: 1px solid #dde5e1;
    text-align: center;
}
/* =========================================
   YÖNETİM VİZYONU
========================================= */

.management-vision-section {
    padding: 75px 0;
    background-color: #003c2c;
}

.management-section-header.light h2 {
    color: #ffffff;
}

.management-vision-grid {
    max-width: 760px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.management-vision-card {
    padding: 27px 24px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.06);
}

.vision-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #00a65a;
    font-size: 17px;
}

.management-vision-card h3 {
    margin-bottom: 13px;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.4;
}

.management-vision-card p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    line-height: 1.75;
}
/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 850px) {
    .president-message-container {
        width: min(720px, calc(100% - 32px));
    }

    .president-image {
        height: auto;
        aspect-ratio: 16 / 10;
    }

    .board-chart-members {
        grid-template-columns: 1fr;
        gap: 24px;
    }

        .board-chart-members::before {
            display: none;
        }

        .board-chart-members .board-card::before {
            left: 50%;
            height: 25px;
        }

        .board-chart-members .board-card:nth-child(n + 4)::before {
            display: block;
        }

    .management-vision-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {

    .president-message-section {
        padding: 48px 0;
    }

    .president-message-card {
        padding: 42px 24px 28px;
    }

        .president-message-card blockquote {
            font-size: 16px;
        }

    .management-section-header h2 {
        font-size: 29px;
    }
}
