/* Literacy Page Specific Styles */

/* What We Do - Strategic Plan Section - Professional White/Grey Design */
.what-we-do-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    min-height: 800px;
    padding: var(--spacing-xl) 0;
}

#literacy-strategic-canvas-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.6;
}

.strategic-content {
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section-header .section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #1a1a1a;
    font-weight: 300;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.title-divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #666666, transparent);
    margin: 0 auto;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 2rem auto 0;
    color: #666666;
    font-size: 1.125rem;
    line-height: 1.8;
    font-weight: 300;
}

/* Interactive Strategic Tabs */
.strategic-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3rem);
    flex-wrap: wrap;
}

.strategic-tab {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    padding: 1.25rem 2rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    min-width: 160px;
    max-width: 200px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.strategic-tab:hover {
    border-color: #999999;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.strategic-tab.active {
    background: #333333;
    border-color: #333333;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

.tab-number {
    font-size: 0.875rem;
    font-weight: 600;
    color: #999999;
    font-family: var(--font-accent);
    letter-spacing: 0.1em;
}

.strategic-tab.active .tab-number {
    color: #cccccc;
}

.tab-title {
    font-size: 0.9375rem;
    color: #333333;
    font-weight: 400;
    text-align: center;
    font-family: var(--font-accent);
    letter-spacing: 0.02em;
}

.strategic-tab.active .tab-title {
    color: #ffffff;
}

/* Strategic Content Cards */
.strategic-content-container {
    position: relative;
    min-height: 600px;
    margin-bottom: clamp(3rem, 6vw, 5rem);
}

.strategic-content-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff;
    padding: clamp(2.5rem, 5vw, 4rem);
    border-left: 3px solid #e0e0e0;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.strategic-content-card.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.strategic-content-card h3 {
    color: #1a1a1a;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 300;
    letter-spacing: -0.01em;
}

.card-content > p {
    color: #666666;
    font-size: 1.0625rem;
    line-height: 1.9;
    margin-bottom: 2rem;
    font-weight: 300;
}

.content-highlight {
    background: #f8f9fa;
    padding: 1.5rem 2rem;
    margin-bottom: 1.5rem;
    border-left: 2px solid #cccccc;
    flex: 1;
    min-width: 0;
}

.card-content {
    display: flex;
    flex-direction: column;
}

.highlights-container {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .highlights-container {
        flex-direction: column;
    }
}

.content-highlight h4 {
    color: #333333;
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
    font-family: var(--font-accent);
    letter-spacing: 0.02em;
}

.content-highlight p {
    color: #666666;
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
    font-weight: 300;
}

.why-box {
    background: #333333;
    color: #ffffff;
    padding: 2rem;
    margin-top: 2rem;
}

.why-box strong {
    display: block;
    font-size: 1.125rem;
    margin-bottom: 1rem;
    font-family: var(--font-accent);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #ffffff;
}

.why-box p {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
    font-weight: 300;
}

/* Video Showcases */
.video-showcases {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin: 2.5rem 0;
}

.video-showcase {
    display: flex;
    flex-direction: column;
}

.video-showcase h4 {
    color: #333333;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-family: var(--font-accent);
    letter-spacing: 0.02em;
}

.video-subtitle {
    color: #666666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-weight: 300;
    font-style: italic;
}

.video-container {
    width: 100%;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .video-showcases {
        gap: 2rem;
        margin: 2rem 0;
    }
    
    .video-showcase h4 {
        font-size: 1.125rem;
    }
    
    .video-subtitle {
        font-size: 0.9375rem;
    }
}

/* Timeline Section - Redesigned */
.timeline-section {
    margin: clamp(4rem, 8vw, 6rem) 0 0;
}

.timeline-content {
    background: #ffffff;
    padding: clamp(2.5rem, 5vw, 4rem);
    border-left: 3px solid #e0e0e0;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.timeline-content h3 {
    color: #1a1a1a;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 300;
    letter-spacing: -0.01em;
}

.timeline-content > p {
    color: #666666;
    font-size: 1.0625rem;
    line-height: 1.9;
    margin-bottom: 2rem;
    font-weight: 300;
}

.timeline-content ul {
    list-style: none;
    margin-bottom: 2rem;
    padding: 0;
}

.timeline-content li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1.5rem;
    color: #666666;
    line-height: 1.9;
    font-size: 1.0625rem;
    font-weight: 300;
}

.timeline-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 8px;
    height: 8px;
    background-color: #333333;
    border-radius: 50%;
}

.timeline-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.timeline-footer p {
    color: #666666;
    font-size: 1.0625rem;
    line-height: 1.9;
    margin-bottom: 1rem;
    font-weight: 300;
}

.timeline-footer p strong {
    color: #333333;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .what-we-do-section {
        min-height: auto;
    }
    
    .strategic-tabs {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .strategic-tab {
        min-width: 100%;
        padding: 1rem 1.5rem;
    }
    
    .strategic-content-card {
        padding: 2rem 1.5rem;
    }
    
    .content-highlight {
        padding: 1.25rem 1.5rem;
    }
    
    .why-box {
        padding: 1.5rem;
    }
    
    .timeline-content {
        padding: 2rem 1.5rem;
    }
}
