﻿/* =========================
   GALLERY HERO / BREADCRUMB
========================= */

.coaches-hero {
    position: relative;
    width: 100%;
    height: 380px;
    background: url("/images/gallery/manappuram-badminton-academy-gallery-09.jpg") center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

    /* Dark overlay */
    .coaches-hero::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( to right, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.4) );
    }

/* Content */
.coaches-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: fadeSlide 1.2s ease forwards;
    opacity: 0;
}

    .coaches-hero-content h1 {
        font-size: 48px;
        font-weight: 700;
        color: #ffffff;
        padding: 14px 40px;
        background: rgba(0, 0, 0, 0.55);
        border-radius: 6px;
        letter-spacing: 1px;
    }

/* Animation */
@keyframes fadeSlide {
    from {
        transform: translateY(40px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .coaches-hero {
        height: 260px;
    }

    .coaches-hero-content h1 {
        font-size: 32px;
        padding: 10px 24px;
    }
}


.coach-section {
    padding: 80px 20px;
    background: #0d0d0d;
    color: #fff;
}

.coach-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 50px;
    align-items: center;
    background: linear-gradient(135deg, #1a0f0f, #000);
    border-radius: 20px;
    padding: 40px;
}

/* IMAGE */
.coach-image {
    position: relative;
    flex: 1;
}

    .coach-image img {
        width: 100%;
        border-radius: 15px;
        object-fit: cover;
    }

/* EXPERIENCE BADGE */
.experience-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: #ff5a2c;
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
}

/* CONTENT */
.coach-content {
    flex: 1;
}

.coach-role {
    color: #ff5a2c;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 14px;
}

.coach-content h2 {
    font-size: 36px;
    margin: 10px 0 20px;
}

.coach-content p {
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* BLOCKS */
.coach-block {
    margin-bottom: 20px;
}

    .coach-block h4 {
        margin-bottom: 10px;
        color: #fff;
    }

    /* LIST */
    .coach-block ul {
        list-style: none;
        padding: 0;
    }

        .coach-block ul li {
            margin-bottom: 8px;
            color: #ccc;
            position: relative;
            padding-left: 20px;
        }

            .coach-block ul li::before {
                content: "✔";
                position: absolute;
                left: 0;
                color: #ff5a2c;
            }

/* TAGS */
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

    .tags span {
        background: #1f1f1f;
        padding: 8px 15px;
        border-radius: 20px;
        font-size: 13px;
        border: 1px solid #333;
    }

/* RESPONSIVE */
@media (max-width: 768px) {
    .coach-container {
        flex-direction: column;
        padding: 20px;
    }

    .coach-content h2 {
        font-size: 26px;
    }
}
