/* Coaching Page Specific Styles */

/* Video Banner Section */
.video-banner {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    max-height: 720px; /* Match video height */
    background-color: #000;
    overflow: hidden;
    margin-top: 150px; /* Height of navbar */
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.coaching-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
}

/* Video overlay for text content */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-content {
    text-align: center;
    color: white;
    padding: 2rem;
    max-width: 800px;
}

.video-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    font-family: 'Poppins', sans-serif;
    letter-spacing: -1px;
}

.video-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
    opacity: 0.95;
}

/* Meet the Coach Section - New Layout */
.meet-coach {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.meet-coach-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3rem;
    font-family: 'Poppins', sans-serif;
}

.coach-showcase {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

/* Coach Visual Side */
.coach-visual {
    position: sticky;
    top: 180px;
}

.coach-image-frame {
    width: 100%;
    margin-bottom: 2rem;
}

.coach-photo {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

/* Highlight Stats */
.coach-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.highlight-item {
    background: white;
    padding: 1.5rem 1rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.highlight-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Poppins', sans-serif;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.highlight-text {
    display: block;
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.3;
}

/* Coach Content Side */
.coach-content {
    padding-top: 1rem;
}

.coach-header {
    margin-bottom: 3rem;
}

.coach-name {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
    line-height: 1.1;
}

.coach-tagline {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 500;
}

.coach-story {
    font-size: 1.125rem;
    line-height: 1.8;
}

.coach-intro {
    font-size: 1.25rem;
    color: var(--text);
    margin-bottom: 2.5rem;
    font-weight: 500;
}

.coach-philosophy,
.coach-expertise {
    margin-bottom: 2.5rem;
}

.coach-philosophy h3,
.coach-expertise h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.coach-philosophy p,
.coach-expertise p {
    color: var(--text);
    margin-bottom: 1rem;
}

.coach-philosophy p:last-child,
.coach-expertise p:last-child {
    margin-bottom: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.coaches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Single coach layout */
.coach-single {
    max-width: 600px;
    margin: 0 auto;
}

.coach-single .coach-card {
    max-width: 100%;
}

.coach-single .coach-image-placeholder {
    height: 400px;
}

.coach-single .coach-info {
    padding: 2.5rem;
}

.coach-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.coach-image-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.coach-image-icon {
    width: 100px;
    height: 100px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.coach-info {
    padding: 2rem;
}

.coach-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.coach-title {
    font-size: 1.125rem;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 1rem;
}

.coach-bio {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.coach-bio:last-of-type {
    margin-bottom: 1.5rem;
}

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

.coach-credentials li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--text);
}

.coach-credentials li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* Coaching Programs Section */
.coaching-programs {
    padding: 4rem 0 5rem;
    background-color: #f8f9fa;
}

.coaching-programs .section-header {
    margin-bottom: 3rem;
}

.programs-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.program-button {
    display: inline-block;
    padding: 14px 28px;
    background-color: var(--hub-primary);
    color: var(--white);
    border: 2px solid var(--hub-primary);
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: all 0.3s ease;
    cursor: pointer;
}

.program-button:hover {
    background-color: var(--hub-primary-dark);
    border-color: var(--hub-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(50, 78, 138, 0.3);
}

.program-button:active {
    transform: translateY(0);
}

/* Desktop-specific styles */
@media (min-width: 769px) {
    .mobile-only {
        display: none !important;
    }
}

/* Medium desktop adjustments */
@media (max-width: 1200px) {
    .video-title {
        font-size: 3rem;
    }
    
    .video-subtitle {
        font-size: 1.25rem;
    }
}

/* Small desktop adjustments */
@media (max-width: 992px) {
    .video-title {
        font-size: 2.5rem;
    }
    
    .video-subtitle {
        font-size: 1.125rem;
    }
}

/* Hide desktop elements on mobile */
@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
    
    /* We'll add mobile-specific styles later */
}

/* Coaching Sub-pages Styles */
.back-navigation {
    padding: 2rem 0;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: white;
    color: var(--hub-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--border-radius);
    border: 2px solid var(--hub-primary);
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.back-button::before {
    content: '←';
    font-size: 1.2rem;
    line-height: 1;
}

.back-button:hover {
    background-color: var(--hub-primary);
    color: white;
    transform: translateX(-3px);
    box-shadow: 0 2px 8px rgba(50, 78, 138, 0.2);
}

.program-header {
    padding: 3rem 0 2rem;
    background-color: white;
    text-align: center;
    margin-top: 150px; /* Account for navbar */
    border-bottom: 1px solid #f0f0f0;
}

.program-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.program-tagline {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

.program-content {
    padding: 5rem 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: start;
}

.content-main h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
}

.content-main h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.content-main p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.content-main ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.content-main ul li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--text);
}

.content-main ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #3498DB;
    font-weight: bold;
    font-size: 1.25rem;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 180px; /* Below navbar */
}

.pricing-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-family: 'Poppins', sans-serif;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.price-item:last-of-type {
    margin-bottom: 2rem;
}

.price-label {
    font-weight: 500;
    color: var(--text);
}

.price-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.cta-button {
    display: block;
    width: 100%;
    padding: 14px 28px;
    background-color: var(--hub-primary);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    border: 2px solid var(--hub-primary);
}

.cta-button:hover {
    background-color: var(--hub-primary-dark);
    border-color: var(--hub-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(50, 78, 138, 0.3);
}

/* New styles for updated coaching pages */
.program-description {
    margin-bottom: 3rem;
}

.program-description p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.program-description p:last-child {
    margin-bottom: 0;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text);
    font-weight: 400;
    margin-bottom: 2rem !important;
}

.program-features {
    margin-bottom: 2rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 0.875rem 0;
    padding-left: 2.5rem;
    position: relative;
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--text);
    border-bottom: 1px solid #f0f0f0;
}

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

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.5rem;
    top: 0.75rem;
}

/* Details Block Styling */
.details-block {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    position: sticky;
    top: 180px;
}

.details-block h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-family: 'Poppins', sans-serif;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.detail-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.detail-content {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text);
}

.detail-content strong {
    color: var(--text-dark);
    font-weight: 600;
}

.pricing-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #f0f0f0;
}

.pricing-section .price-item {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.bulk-price {
    border: 2px solid var(--primary);
}

.price-savings {
    display: block;
    font-size: 0.875rem;
    color: var(--primary);
    font-weight: 500;
    margin-top: 0.25rem;
}

.featured-price {
    background-color: var(--primary) !important;
    color: white;
}

.featured-price .price-label,
.featured-price .price-value {
    color: white !important;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .pricing-card,
    .details-block {
        position: static;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .coach-showcase {
        grid-template-columns: 350px 1fr;
        gap: 3rem;
    }
    
    .coach-name {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .coach-showcase {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .coach-visual {
        position: static;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .coach-highlights {
        max-width: 400px;
        margin: 0 auto;
    }
}
