/* ===================================
   Coaches Page Specific Styles
   =================================== */

/* Hero Section */
.coaches-hero {
    padding: calc(var(--spacing-xl) * 2) 0 var(--spacing-xl);
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    margin-top: 70px;
    text-align: center;
}

.coaches-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.coaches-hero-eyebrow {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--turquoise);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.coaches-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.coaches-hero-title .highlight {
    color: var(--turquoise);
    position: relative;
    display: inline-block;
}

.coaches-hero-subtitle {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Coach Philosophy */
.coach-philosophy {
    background: var(--white);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.philosophy-card {
    background: #f8f9fa;
    padding: var(--spacing-md);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.philosophy-card:hover {
    background: var(--white);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
    border-color: var(--turquoise);
}

.philosophy-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--turquoise) 0%, #3a8fa5 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.philosophy-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
}

.philosophy-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
}

/* Coaches List */
.coaches-list {
    background: #f8f9fa;
}

.coach-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    margin-bottom: var(--spacing-lg);
    transition: all 0.3s ease;
}

.coach-card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

/* Featured Coach (Representative) */
.featured-coach {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: var(--spacing-lg);
    padding: var(--spacing-lg);
    border: 3px solid var(--turquoise);
}

.coach-image-wrapper {
    position: relative;
}

.coach-image {
    width: 100%;
    aspect-ratio: 3 / 4;
    background: linear-gradient(135deg, #e9ecef 0%, #f8f9fa 100%);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.coach-placeholder {
    font-size: 5rem;
    color: var(--turquoise);
    opacity: 0.3;
}

.coach-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--orange);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 4px 8px rgba(255, 107, 53, 0.3);
}

.coach-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.coach-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.coach-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0;
}

.coach-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.tag-school {
    background: linear-gradient(135deg, var(--navy) 0%, #2a4a6c 100%);
    color: var(--white);
}

.tag-university {
    background: linear-gradient(135deg, var(--turquoise) 0%, #3a8fa5 100%);
    color: var(--white);
}

.coach-details {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.coach-detail-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    color: #495057;
}

.coach-detail-item i {
    color: var(--turquoise);
    font-size: 1.1rem;
    width: 20px;
}

.coach-message h4,
.coach-strengths h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.coach-message h4 i,
.coach-strengths h4 i {
    color: var(--turquoise);
}

.coach-message p {
    font-size: 1rem;
    line-height: 1.8;
    color: #495057;
}

.coach-strengths ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.coach-strengths li {
    padding: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
    color: #495057;
    border-bottom: 1px solid #e9ecef;
}

.coach-strengths li:last-child {
    border-bottom: none;
}

.coach-strengths li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--turquoise);
    font-weight: 700;
    font-size: 1.2rem;
}

/* Coaches Grid (Other Coaches) */
.coaches-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.loading-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: var(--spacing-xl) 0;
    font-size: 1.1rem;
    color: var(--turquoise);
}

.loading-message i {
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

.coaches-grid .coach-card {
    padding: var(--spacing-md);
}

.coaches-grid .coach-image-wrapper {
    margin-bottom: var(--spacing-md);
}

.coaches-grid .coach-image {
    width: 100%;
    aspect-ratio: 3 / 4;
}

.coaches-grid .coach-placeholder {
    font-size: 3rem;
}

.coaches-grid .coach-name {
    font-size: 1.3rem;
}

.coach-details.compact {
    flex-direction: row;
    flex-wrap: wrap;
}

.coach-message.compact p {
    font-size: 0.95rem;
}

/* Coach Recruitment */
.coach-recruitment {
    background: linear-gradient(135deg, var(--navy) 0%, #2a4a6c 100%);
    color: var(--white);
    padding: calc(var(--spacing-xl) * 1.5) 0;
}

.recruitment-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.recruitment-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
    backdrop-filter: blur(10px);
}

.recruitment-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.recruitment-content > p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.recruitment-requirements {
    background: rgba(255, 255, 255, 0.1);
    padding: var(--spacing-md);
    border-radius: 12px;
    margin-bottom: 2rem;
    text-align: left;
    backdrop-filter: blur(10px);
}

.recruitment-requirements h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.recruitment-requirements h3 i {
    color: var(--turquoise);
}

.recruitment-requirements ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recruitment-requirements li {
    padding: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.recruitment-requirements li:last-child {
    border-bottom: none;
}

.recruitment-requirements li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--turquoise);
    font-weight: 700;
    font-size: 1.2rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--navy) 0%, #2a4a6c 100%);
    color: var(--white);
    padding: calc(var(--spacing-xl) * 1.5) 0;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.cta-note {
    font-size: 0.9rem;
    opacity: 0.85;
    line-height: 1.8;
}

.cta-note i {
    color: var(--turquoise);
    margin-right: 0.5rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .philosophy-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .featured-coach {
        grid-template-columns: 1fr;
    }

    .coaches-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .coaches-hero {
        padding: var(--spacing-xl) 0 var(--spacing-md);
    }

    .coaches-hero-title {
        font-size: 1.8rem;
    }

    .coaches-hero-subtitle {
        font-size: 1rem;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
    }

    .featured-coach {
        padding: var(--spacing-md);
    }

    .coach-name {
        font-size: 1.5rem;
    }

    .coach-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .cta-description {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .coaches-hero-title {
        font-size: 1.5rem;
    }

    .coach-name {
        font-size: 1.3rem;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .recruitment-content h2 {
        font-size: 1.6rem;
    }
}
