body {
    background-color: #1c1c24;
    color: white;
    font-family: 'Patrick Hand', sans-serif;
    margin: 0;
    padding: 0;
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.content {
    flex: 1;
    padding: 0rem 1rem;
    text-align: center;
    background-color: #1c1c24;
    ;
}

.classy {
    font-size: 2.5rem;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    animation: fadeSlideIn 1s ease forwards;
    opacity: 0;
}

.coaches-intro {
    color: white;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0.5rem auto 2.5rem;
    text-align: center;
    font-style: italic;
    animation: fadeSlideIn 1s ease 0.3s forwards;
    opacity: 0;
}

.coaches-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto 3rem;
    padding: 0 1rem;
}

.coach-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
    padding: 1.5rem;
    width: 280px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: fadeSlideIn 1s ease 0.3s forwards;
    opacity: 0;
}

.coach-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 20px rgba(176, 132, 247, 0.4);
}

.coach-photo {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #b084f7;
    margin: 0 auto 1rem;
    display: block;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.coach-photo {
    filter: grayscale(100%);
    transition: filter 0.4s ease;
}

.coach-photo:hover {
    filter: grayscale(0%);
}

.coach-name {
    font-size: 1.5rem;
    margin: 0.5rem 0 0.3rem;
    color: white;
}

.coach-role {
    color: #b084f7;
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 0.8rem;
}

.coach-bio {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.5;
}

.coaches-footer-text {
    max-width: 700px;
    margin: 1.5rem auto 3rem;
    padding: 0 1rem;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;

    animation: fadeSlideIn 1s ease 0.3s forwards;
    opacity: 0;
}

@media (max-width: 640px) {
    .coach-card {
        width: 100%;
        max-width: 320px;
    }
}