/* 
 * Junior Current Website
 * Coaches Page Styles
 */

/* Coaches intro */
.coaches-intro {
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: center;
    font-size: 1.1rem;
}

/* Coach cards */
.coach-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.coach-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--navy-blue);
}

.coach-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.coach-icon {
    width: 100px;
    height: 100px;
    background-color: var(--navy-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.coach-icon i {
    font-size: 3rem;
}

.coach-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--navy-blue);
}

.coach-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.coach-name {
    color: var(--navy-blue);
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.coach-role {
    color: var(--red);
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-block;
    padding: 0.2rem 0.5rem;
    background-color: rgba(214, 31, 38, 0.1);
    border-radius: 4px;
}

.coach-description {
    line-height: 1.6;
    color: var(--dark-gray);
}

/* Coaching philosophy */
.coaching-philosophy {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.coaching-philosophy h2 {
    color: var(--navy-blue);
    margin-bottom: 1rem;
}

.coaching-philosophy p {
    margin-bottom: 1rem;
}

.coaching-philosophy ul {
    list-style-position: inside;
    margin-bottom: 1rem;
    padding-left: 1rem;
}

.coaching-philosophy li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .coach-icon {
        width: 80px;
        height: 80px;
    }
    
    .coach-icon i {
        font-size: 2.5rem;
    }
    
    .coach-image {
        width: 120px;
        height: 120px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .coach-cards {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}