﻿/* =========================================
   HOCALARIMIZ SAYFASI
========================================= */

.coach-section {
    padding: 85px 0;
    background-color: #f5f8f6;
}

.coach-section-header {
    max-width: 720px;
    margin: 0 auto 50px;
    text-align: center;
}

    .coach-section-header span {
        display: block;
        margin-bottom: 10px;
        color: #009750;
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

    .coach-section-header h2 {
        margin-bottom: 16px;
        color: #151515;
        font-size: 38px;
        font-weight: 800;
        line-height: 1.2;
    }

    .coach-section-header p {
        margin: 0;
        color: #737373;
        font-size: 15px;
        line-height: 1.8;
        overflow-wrap: anywhere;
    }

/* =========================================
   FOTOĞRAF GALERİSİ
========================================= */

.coach-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
    gap: 24px;
}

.coach-card {
    min-width: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #e2ebe6;
    border-radius: 12px;
    background-color: #ffffff;
    box-shadow: 0 16px 35px rgba(0, 45, 30, 0.09);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.coach-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    background-color: #e8eeeb;
}

    .coach-image-wrapper::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( to top, rgba(0, 45, 30, 0.16), transparent 38% );
        pointer-events: none;
    }

    .coach-image-wrapper img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        object-position: center;
        transition: transform 0.35s ease;
    }

.coach-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 45px rgba(0, 45, 30, 0.16);
}

    .coach-card:hover .coach-image-wrapper img {
        transform: scale(1.04);
    }

.coach-card-content {
    flex: 1;
    padding: 22px 20px 24px;
    text-align: center;
}

.coach-name {
    margin: 0 0 10px;
    color: #171717;
    font-size: 19px;
    font-weight: 800;
    line-height: 1.3;
    overflow-wrap: anywhere;
}

.coach-description {
    margin: 0;
    color: #737373;
    font-size: 14px;
    line-height: 1.7;
    overflow-wrap: anywhere;
}
/* =========================================
   BOŞ VERİ DURUMU
========================================= */

.coach-empty {
    max-width: 650px;
    margin: 0 auto;
    padding: 55px 35px;
    border: 1px solid #dce6e1;
    border-radius: 12px;
    background-color: #ffffff;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 45, 30, 0.08);
}

.coach-empty-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #009750;
    font-size: 28px;
}

.coach-empty h3 {
    margin-bottom: 12px;
    color: #171717;
    font-size: 24px;
    font-weight: 800;
}

.coach-empty p {
    max-width: 480px;
    margin: 0 auto;
    color: #747474;
    font-size: 14px;
    line-height: 1.75;
    overflow-wrap: anywhere;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1050px) {
    .coach-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .coach-section {
        padding: 65px 0;
    }

    .coach-section-header {
        margin-bottom: 38px;
    }

        .coach-section-header h2 {
            font-size: 31px;
        }

    .coach-grid {
        gap: 18px;
    }
}

@media (max-width: 520px) {
    .coach-grid {
        grid-template-columns: 1fr;
    }

    .coach-card {
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
    }

    .coach-card-content {
        padding: 20px 18px 22px;
    }

    .coach-name {
        font-size: 18px;
    }

    .coach-empty {
        padding: 42px 24px;
    }

        .coach-empty h3 {
            font-size: 21px;
        }
}
