/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 25%, #111111 50%, #0a0a0a 75%, #000000 100%);
    min-height: 100vh;
    color: white;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow-x: hidden;
}

/* Clean Navigation Styles */
.glass-radio-group {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    display: flex;
    gap: 3rem;
    background: none;
    border: none;
    backdrop-filter: none;
    box-shadow: none;
    padding: 0;
    border-radius: 0;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    font-size: 16px;
    padding: 0.5rem 0;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #ffffff;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: #ffffff;
}

.nav-link.active::after {
    width: 100%;
    background: #ffffff;
}

/* Content Wrapper Base */
.content-wrapper {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: all 0.2s ease;
    clip-path: polygon(20px 0%, 100% 0%, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0% 100%, 0% 20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.content-wrapper:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
    background: rgba(255, 255, 255, 0.08);
}

.content-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.02) 50%, transparent 70%);
    pointer-events: none;
}

/* Sections */
.section {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 2rem;
    padding-top: 120px;
    position: relative;
    z-index: 1;
}

.container {
    display: block;
    width: 100%;
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

/* Typography */
.section h2 {
    font-family: 'Orbitron', 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: #ffffff;
    letter-spacing: 1px;
}

.intro {
    font-family: 'Rajdhani', 'Inter', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 2rem;
    color: #e5e5e5;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-align: center;
}

.about-content p {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #d0d0d0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    letter-spacing: 0.3px;
    text-align: center;
}

/* Scroll-triggered animation base classes */
.scroll-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.scroll-animate.slide-left {
    transform: translateX(-50px);
}

.scroll-animate.slide-left.animate-in {
    transform: translateX(0);
}

/* Featured Head Coach Styling */
.featured-coach-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin-top: 2rem;
    margin-bottom: 4rem;
    align-items: start;
}

.coach-image-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.coach-image-frame.featured {
    width: 320px;
    height: 320px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 0 0 10px rgba(255, 255, 255, 0.1),
        0 25px 50px rgba(0, 0, 0, 0.6);
}

.coach-image-frame.featured:hover {
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 
        0 0 0 10px rgba(255, 255, 255, 0.2),
        0 30px 60px rgba(0, 0, 0, 0.8);
}

.achievements-section {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.achievement-badge {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 0.8rem 1.5rem;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.achievement-badge svg {
    color: #ffffff;
    flex-shrink: 0;
}

.achievement-badge:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.15));
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

/* Team Showcase Section */
.team-showcase {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
    align-items: center;
    width: 100%;
}

.team-image {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    width: 240px;
    height: 180px;
}

.team-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.showcase-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
    background: rgba(0, 0, 0, 0.1);
}

.team-image:hover .showcase-image {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .team-showcase {
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .team-image {
        width: 180px;
        height: 130px;
    }
}

/* Additional Coaches Section */
.additional-coaches-section {
    margin-top: 4rem;
}

.section-subtitle {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    color: #ffffff;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-subtitle::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
}

.coaches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.coach-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    height: 300px; /* Fixed height for image showcase */
}

.coach-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.coach-card-image {
    position: relative;
    height: 100%; /* Full height for image showcase */
    overflow: hidden;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.coach-card:hover .card-image {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        rgba(0, 0, 0, 0.3) 0%,
        transparent 50%,
        rgba(255, 255, 255, 0.1) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.coach-card:hover .card-overlay {
    opacity: 1;
}

.coach-card-info {
    padding: 2rem;
    text-align: center;
}

.card-coach-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.card-coach-title {
    font-size: 1rem;
    color: #e5e5e5;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.card-stats {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.card-stats span {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    color: #d0d0d0;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-contact-btn {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.card-contact-btn:hover {
    background: linear-gradient(135deg, #ffd700, #ffcc00);
    color: #000;
    border-color: #ffd700;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.coach-image-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.coach-image-frame {
    position: relative;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 0 0 8px rgba(255, 255, 255, 0.1),
        0 20px 40px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
}

.coach-image-frame:hover {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 
        0 0 0 8px rgba(255, 255, 255, 0.2),
        0 25px 50px rgba(0, 0, 0, 0.7);
}

.coach-profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.4s ease;
}

.coach-image-frame:hover .coach-profile-image {
    transform: scale(1.1);
}

.image-border-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(255, 255, 255, 0.1) 50%, 
        transparent 70%);
    pointer-events: none;
}

.coach-info-section {
    padding: 1rem 0;
}

.coach-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

.coach-title {
    font-size: 1.3rem;
    color: #e5e5e5;
    margin-bottom: 2rem;
    font-weight: 300;
    font-style: italic;
}

.coach-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-box:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.stat-number {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #cccccc;
    font-weight: 400;
}

.coach-description {
    margin-top: 2rem;
}

.coach-description .intro {
    font-style: italic;
    font-size: 1.2rem;
    color: #ffffff;
    text-align: left;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid #ffffff;
    border-radius: 0 8px 8px 0;
}

.specialties-section h4 {
    font-family: 'Orbitron', sans-serif;
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.specialties-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.specialties-list li {
    padding: 0.8rem 0;
    color: #d0d0d0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.specialties-list li:hover {
    color: #ffffff;
    padding-left: 1rem;
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.specialties-list li:last-child {
    border-bottom: none;
}

.contact-coach-btn {
    background: linear-gradient(135deg, #ffffff, #e5e5e5);
    color: #000000;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.contact-coach-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #e5e5e5, #ffffff);
}

/* Specific positioning for Matthew's profile image */
img[src="IMG_5435.jpg"] {
    object-position: center 20% !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .glass-radio-group {
        top: 20px;
        gap: 2rem;
    }
    
    .nav-link {
        font-size: 14px;
        letter-spacing: 0.5px;
    }
    
    .content-wrapper {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .section h2 {
        font-size: 2rem;
    }
    
    .section {
        padding-top: 80px;
    }
    
    .coach-profile-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .coach-image-frame {
        width: 250px;
        height: 250px;
    }
    
    .coach-name {
        font-size: 2rem;
    }
    
    .coach-stats-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .stat-box {
        padding: 1rem;
    }
    
    .coach-description .intro {
        text-align: center;
    }
}