/* Athlete Profile Single Page Styles */

/* Single Team Page Header */
.single-team-page-header {
    min-height: 800px;
    position: relative;
    display: grid;
    justify-content: center;
    align-items: center;
    background-image: url('../images/team-profile/team-header-bg.jpg');
    background-size: cover;
    background-position: center;
}

.overlay {
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.overlay-gradient-white {
    background: linear-gradient(180deg, transparent 0%, transparent 60%, rgba(255, 255, 255, 1) 100%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.single-team-page-header h1 {
    color: white;
    position: relative;
    z-index: 2;
    font-size: 100px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    margin: 0;
}

.athlete-profile {
    margin: 20px auto 80px auto;
}

.athlete-profile-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: flex-start;
}

/* Left Column */
.athlete-profile-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.athlete-profile-image {
    width: 100%;
    overflow: hidden;
    border-radius: 4px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
}

.athlete-profile-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
    pointer-events: none;
    z-index: 1;
}

.athlete-profile-data
{
    padding:20px;
}

.athlete-profile-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Athlete Header Info */
.athlete-header-info {
    margin-bottom: 0px;
    position: relative;
    z-index: 2;
    padding: 0px;
}

.athlete-name {
    font-family: 'Anton', sans-serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 12px 0;
    color: #ffffff;
    text-transform: uppercase;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.athlete-event {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    margin: 0;
    color: #ffffff;
    text-transform: uppercase;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

/* Social Links */
.athlete-social {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    padding-top: 20px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #f5f5f5;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
}

.social-link:hover {
    background-color: #e0e0e0;
    transform: translateY(-2px);
}

.social-link img {
    width: 20px;
    height: 20px;
    display: block;
}

/* Info Boxes */
.athlete-info-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 0px;
}

.info-box {
    background-color: #FFE5E8;
    padding: 16px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.info-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #E84C5F;
}

.info-value {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
}

/* Right Column */
.athlete-profile-right {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

/* Section Title */
.athlete-profile-right .section-title {
    font-family: 'Anton', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 20px 0;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-top: 0px;
}

/* Athlete Bio Section */
.athlete-bio-content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin: 0;
}

.athlete-bio-content p {
    margin: 0 0 15px 0;
}

.athlete-bio-content p:last-child {
    margin-bottom: 0;
}

/* Career Highlights Section */
.career-highlights-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.career-highlights-list li {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    padding-left: 24px;
    position: relative;
}

.career-highlights-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    font-size: 18px;
    color: #E84C5F;
    font-weight: bold;
}

/* Responsive Design */

/* Tablets (768px and below) */
@media (max-width: 767px) {
    .single-team-page-header {
        min-height: 400px;
    }

    .single-team-page-header h1 {
        font-size: 48px;
    }

    .athlete-profile-right .section-title {
        padding-top: 10px;
    }
}

/* Tablets (768px and below) */
@media (max-width: 991px) {
    .single-team-page-header {
        min-height: 500px;
    }

    .single-team-page-header h1 {
        font-size: 72px;
    }

    .athlete-profile-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .athlete-name {
        font-size: 36px;
    }

    .athlete-profile-right .section-title {
        font-size: 28px;
    }
}

/* Mobile (576px and below) */
@media (max-width: 575px) {
    .single-team-page-header {
        min-height: 300px;
    }

    .single-team-page-header h1 {
        font-size: 32px;
    }

    .athlete-profile-container {
        gap: 30px;
    }

    .athlete-profile-left {
        gap: 20px;
    }

    .athlete-profile-right {
        gap: 40px;
    }

    .athlete-name {
        font-size: 28px;
    }

    .athlete-event {
        font-size: 12px;
    }

    .info-label {
        font-size: 11px;
    }

    .info-value {
        font-size: 14px;
    }

    .athlete-profile-right .section-title {
        font-size: 24px;
    }

    .athlete-bio-content {
        font-size: 14px;
        line-height: 1.6;
    }

    .career-highlights-list li {
        font-size: 14px;
    }
}
