/* Mobile Coaching Page Styles */

@media (max-width: 768px) {
  /* ========================================
     Mobile Coaching Hero/Video Section
     ======================================== */
  .video-banner {
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    margin-top: 0;
    position: relative;
    overflow: hidden;
  }
  
  .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;
  }
  
  /* Add H.U.B. title overlay */
  .video-banner::before {
    content: "H.U.B.";
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
    font-size: 28px;
    font-weight: 700;
    z-index: 10;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
  }
  
  /* Add Coaching title overlay */
  .video-banner::after {
    content: "Coaching";
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
    font-size: 36px;
    font-weight: 700;
    z-index: 10;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
    letter-spacing: -0.5px;
  }
  
  /* Dark overlay for better text visibility */
  .video-container::after {
    content: '';
    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%
    );
    pointer-events: none;
  }
  
  /* ========================================
     Mobile Meet the Coach Section
     ======================================== */
  .meet-coach {
    padding: 40px 0;
    background-color: white;
  }
  
  .meet-coach-title {
    font-size: 24px;
    margin-bottom: 24px;
    text-align: center;
    padding: 0 var(--mobile-padding);
  }
  
  .coach-showcase {
    display: block;
    padding: 0 var(--mobile-padding);
  }
  
  .coach-visual {
    position: static;
    text-align: center;
    margin-bottom: 32px;
  }
  
  .coach-image-frame {
    margin-bottom: 24px;
    max-width: 200px;
    margin: 0 auto 24px;
  }
  
  .coach-photo {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  }
  
  /* Coach Stats */
  .coach-highlights {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
  }
  
  .highlight-item {
    flex: 1;
    max-width: 100px;
    padding: 12px 8px;
    background: #f8f9fa;
    border-radius: 8px;
    box-shadow: none;
    text-align: center;
  }
  
  .highlight-number {
    font-size: 1.25rem;
    margin-bottom: 4px;
  }
  
  .highlight-text {
    font-size: 10px;
    line-height: 1.2;
  }
  
  /* Coach Content */
  .coach-content {
    padding-top: 0;
  }
  
  .coach-header {
    text-align: center;
    margin-bottom: 24px;
  }
  
  .coach-name {
    font-size: 28px;
    margin-bottom: 8px;
  }
  
  .coach-tagline {
    font-size: 16px;
  }
  
  .coach-story {
    font-size: 14px;
    line-height: 1.6;
  }
  
  .coach-intro {
    font-size: 16px;
    margin-bottom: 24px;
    text-align: center;
  }
  
  .coach-philosophy,
  .coach-expertise {
    margin-bottom: 24px;
  }
  
  .coach-philosophy h3,
  .coach-expertise h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary);
  }
  
  .coach-philosophy p,
  .coach-expertise p {
    font-size: 14px;
    margin-bottom: 12px;
  }
  
  /* ========================================
     Mobile Coaching Programs Section
     ======================================== */
  .coaching-programs {
    padding: 40px 0 80px; /* Extra bottom padding for fixed CTA */
    background-color: #f8f9fa;
  }
  
  .coaching-programs .section-header {
    margin-bottom: 24px;
  }
  
  .coaching-programs .section-title {
    font-size: 24px;
    margin-bottom: 8px;
  }
  
  .coaching-programs .section-subtitle {
    font-size: 14px;
    padding: 0 var(--mobile-padding);
  }
  
  .programs-buttons {
    flex-direction: column;
    padding: 0 var(--mobile-padding);
    gap: 12px;
  }
  
  .program-button {
    width: 100%;
    padding: 16px 20px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white !important;
    color: var(--hub-primary) !important;
    border: 1px solid #e0e0e0 !important;
    font-size: 16px;
    text-decoration: none;
  }
  
  .program-button::after {
    content: '→';
    font-size: 20px;
    color: var(--hub-primary);
  }
  
  .program-button:hover,
  .program-button:active {
    transform: none;
    background: white !important;
    color: var(--hub-primary) !important;
    border-color: var(--hub-primary) !important;
  }
  
  /* ========================================
     Mobile Sub-Page Styles
     ======================================== */
  
  /* Back Navigation */
  .back-navigation {
    padding: 16px;
    background: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
  }
  
  .back-button {
    font-size: 14px;
    padding: 0.625rem 1.25rem;
  }
  
  /* Program Header */
  .program-header {
    padding: 32px var(--mobile-padding);
    margin-top: 0;
    background: white;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
  }
  
  .program-title {
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 8px;
  }
  
  .program-tagline {
    font-size: 16px;
    color: var(--text-light);
  }
  
  /* Program Content */
  .program-content {
    padding: 32px 0 100px; /* Bottom padding for fixed CTA */
  }
  
  .content-grid {
    display: block;
  }
  
  .content-main {
    padding: 0 var(--mobile-padding);
    margin-bottom: 32px;
  }
  
  .program-description {
    margin-bottom: 32px;
  }
  
  .program-description p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
  }
  
  .lead-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 16px !important;
  }
  
  .program-features h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--hub-primary);
  }
  
  .feature-list li {
    font-size: 14px;
    padding: 12px 0 12px 32px;
  }
  
  .feature-list li::before {
    font-size: 1.25rem;
    top: 10px;
  }
  
  /* Details Block */
  .content-sidebar {
    background: #f8f9fa;
    padding: 24px var(--mobile-padding);
  }
  
  .details-block,
  .pricing-card {
    position: static;
    background: transparent;
    padding: 0;
    box-shadow: none;
    border: none;
  }
  
  .details-block h3,
  .pricing-card h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--hub-primary);
  }
  
  .detail-item {
    margin-bottom: 16px;
    font-size: 14px;
  }
  
  .detail-icon {
    font-size: 1.25rem;
  }
  
  /* Mobile CTA Button */
  .cta-button {
    position: fixed;
    bottom: 70px; /* Above bottom nav */
    left: var(--mobile-padding);
    right: var(--mobile-padding);
    width: auto;
    z-index: 90; /* Below nav */
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    pointer-events: auto;
  }
  
  /* ========================================
     Mobile-Specific Utilities
     ======================================== */
  
  /* Hide desktop navigation only */
  .navbar.desktop-only {
    display: none !important;
  }
  
  /* Mobile elements handled by mobile-nav.css */
  
  /* Remove desktop-specific styles */
  .container {
    max-width: 100%;
    padding: 0;
  }
  
  /* Adjust section spacing */
  .section-header {
    text-align: center;
    margin-bottom: 24px;
  }
  
  .section-title {
    font-size: 24px;
  }
  
  .section-subtitle {
    font-size: 14px;
  }
}

/* Ensure mobile styles override desktop */
@media (max-width: 768px) {
  
  /* Fix display issues */
  .video-banner.desktop-only,
  .meet-coach.desktop-only,
  .coaching-programs.desktop-only {
    display: block !important;
  }
  
  .back-navigation.desktop-only,
  .program-header.desktop-only,
  .program-content.desktop-only {
    display: block !important;
  }
  
  /* Ensure contact section shows */
  .contact-section {
    display: block !important;
    padding-bottom: 60px; /* Space for bottom nav */
  }
  
  /* Remove conflicting mobile nav styles */
}
