/* About Page Specific Styles - Only loads on about.html */
/* Cycling Over Sixty - About Page CSS */

/* ===== ABOUT HERO SECTION ===== */
.about-hero {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-green) 100%);
    color: white;
    padding: 80px 20px;
    margin-bottom: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-heavy);
    text-align: center;
}

.about-hero .hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease-out;
}

.about-hero .hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.2s both;
}

/* ===== TOM'S STORY SECTION ===== */
.toms-story {
    margin-bottom: 50px;
}

.story-header {
    text-align: center;
    margin-bottom: 40px;
}

.story-header h3 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    font-style: italic;
    margin: 0;
}

/* ===== BIO SECTION ===== */
.bio-section {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: start;
    background: var(--background-white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    margin-bottom: 40px;
}

.bio-image-container {
    position: relative;
}

.headshot-main {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    transition: transform var(--transition-smooth);
}

.headshot-main:hover {
    transform: scale(1.02);
}

.bio-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.transformation-story h4 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.transformation-story p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.journey-highlight {
    background: linear-gradient(135deg, #e8f5e9, #f0fff0);
    border-left: 5px solid var(--primary-green);
    padding: 20px;
    border-radius: var(--border-radius);
    margin: 25px 0;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-dark);
}

/* ===== MISSION STATEMENT ===== */
.mission-statement {
    background: linear-gradient(135deg, var(--text-dark), var(--text-medium));
    color: white;
    padding: 50px 40px;
    border-radius: var(--border-radius);
    margin-bottom: 50px;
    text-align: center;
    box-shadow: var(--shadow-heavy);
}

.mission-statement h3 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.mission-statement blockquote {
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.6;
    margin: 0 auto 30px;
    max-width: 800px;
    opacity: 0.95;
}

.mission-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.value-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: var(--border-radius);
    font-size: 0.95rem;
    line-height: 1.5;
    backdrop-filter: blur(5px);
    transition: all var(--transition-smooth);
    cursor: pointer;
}

.value-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.value-item.highlighted {
    background: rgba(164, 226, 31, 0.3) !important;
    transform: scale(1.05);
    border: 2px solid var(--primary-green);
}

/* ===== PODCAST FOCUS SECTION ===== */
.podcast-focus {
    margin-bottom: 50px;
}

.podcast-focus h3 {
    font-size: 2.2rem;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 30px;
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.focus-card {
    background: var(--background-white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: all var(--transition-smooth);
    border: 2px solid transparent;
    cursor: pointer;
}

.focus-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-green);
}

.focus-card.featured {
    border-color: var(--primary-green);
    background: linear-gradient(135deg, #f8fff8, #ffffff);
}

.focus-card.expanded {
    border-color: var(--primary-green);
    background: linear-gradient(135deg, #f0fff0, #ffffff);
    transform: scale(1.02);
    z-index: 10;
    position: relative;
}

.focus-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-align: center;
    transition: transform var(--transition-smooth);
}

.focus-card:hover .focus-icon {
    transform: scale(1.2) rotate(5deg);
}

.focus-card h4 {
    color: var(--text-dark);
    font-size: 1.4rem;
    margin-bottom: 15px;
    text-align: center;
}

.focus-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
}

.season-focuses {
    margin-top: 20px;
}

.focus-area {
    background: rgba(164, 226, 31, 0.1);
    padding: 12px;
    margin-bottom: 10px;
    border-radius: 6px;
    border-left: 3px solid var(--primary-green);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ===== COMMUNITY INITIATIVE SECTION ===== */
.community-initiative {
    background: var(--background-white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    margin-bottom: 50px;
}

.initiative-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.initiative-header h3 {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin: 0;
}

.new-badge {
    background: #e74c3c;
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.initiative-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.initiative-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 25px;
}

.community-goals h4 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.goals-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.goals-list li {
    background: var(--background-hero);
    padding: 12px 15px;
    margin-bottom: 10px;
    border-radius: 6px;
    border-left: 4px solid var(--primary-green);
    font-size: 0.95rem;
    line-height: 1.5;
}

.goals-list li:before {
    content: "✓ ";
    color: var(--primary-green);
    font-weight: bold;
    margin-right: 8px;
}

.tacoma-pilot {
    background: linear-gradient(135deg, #e8f5e9, #f0fff0);
    padding: 25px;
    border-radius: var(--border-radius);
    border: 2px solid var(--primary-green);
}

.tacoma-pilot h4 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.tacoma-pilot p {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 20px;
}

.learn-more-link {
    color: var(--accent-green);
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: color var(--transition-smooth);
}

.learn-more-link:hover {
    color: var(--primary-green);
    text-decoration: underline;
}

/* ===== GET INVOLVED SECTION ===== */
.get-involved {
    margin-bottom: 50px;
}

.get-involved h3 {
    font-size: 2.2rem;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 30px;
}

.involvement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.involvement-card {
    background: var(--background-white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: all var(--transition-smooth);
    border: 2px solid transparent;
    cursor: pointer;
}

.involvement-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-green);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.involvement-card h4 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.involvement-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.involvement-link {
    background: var(--primary-green);
    color: white;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color var(--transition-smooth);
    display: inline-block;
}

.involvement-link:hover {
    background: var(--accent-green);
}

/* Compact podcast buttons in involvement card */
.involvement-card .podcast-links-compact {
    margin: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
}

.involvement-card .podcast-buttons {
    gap: 8px;
}

.involvement-card .podcast-btn {
    padding: 8px 12px;
    font-size: 0.8rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .about-hero {
        padding: 60px 20px;
    }
    
    .about-hero .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .about-hero .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .bio-section {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 20px;
    }
    
    .bio-image-container {
        text-align: center;
    }
    
    .headshot-main {
        max-width: 250px;
    }
    
    .story-header h3 {
        font-size: 2rem;
    }
    
    .focus-grid {
        grid-template-columns: 1fr;
    }
    
    .focus-card {
        padding: 25px;
    }
    
    .initiative-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .initiative-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .initiative-header h3 {
        font-size: 1.8rem;
    }
    
    .community-initiative {
        padding: 30px 20px;
    }
    
    .involvement-grid {
        grid-template-columns: 1fr;
    }
    
    .involvement-card {
        padding: 25px;
    }
    
    .mission-statement {
        padding: 40px 25px;
    }
    
    .mission-statement h3 {
        font-size: 1.8rem;
    }
    
    .mission-statement blockquote {
        font-size: 1.2rem;
    }
    
    .mission-values {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 40px 15px;
    }
    
    .about-hero .hero-content h2 {
        font-size: 2rem;
    }
    
    .about-hero .hero-subtitle {
        font-size: 1rem;
    }
    
    .bio-section {
        padding: 25px 15px;
    }
    
    .headshot-main {
        max-width: 200px;
    }
    
    .story-header h3 {
        font-size: 1.8rem;
    }
    
    .transformation-story h4 {
        font-size: 1.3rem;
    }
    
    .transformation-story p,
    .journey-highlight {
        font-size: 1rem;
    }
    
    .focus-card {
        padding: 20px;
    }
    
    .focus-icon {
        font-size: 2rem;
    }
    
    .focus-card h4 {
        font-size: 1.2rem;
    }
    
    .community-initiative {
        padding: 25px 15px;
    }
    
    .initiative-header h3 {
        font-size: 1.6rem;
    }
    
    .tacoma-pilot {
        padding: 20px;
    }
    
    .involvement-card {
        padding: 20px;
    }
    
    .card-icon {
        font-size: 2rem;
    }
    
    .involvement-card h4 {
        font-size: 1.2rem;
    }
    
    .mission-statement {
        padding: 30px 20px;
    }
    
    .mission-statement h3 {
        font-size: 1.6rem;
    }
    
    .mission-statement blockquote {
        font-size: 1.1rem;
    }
    
    .value-item {
        padding: 12px;
        font-size: 0.9rem;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .about-hero {
        background: white !important;
        color: black !important;
        border: 2px solid #ddd;
    }
    
    .bio-section {
        break-inside: avoid;
        grid-template-columns: 200px 1fr;
        gap: 20px;
    }
    
    .focus-grid,
    .involvement-grid {
        grid-template-columns: 1fr;
    }
    
    .focus-card,
    .involvement-card {
        break-inside: avoid;
        margin-bottom: 20px;
        border: 1px solid #ddd;
    }
    
    .mission-statement {
        background: white !important;
        color: black !important;
        border: 2px solid #ddd;
    }
}

/* ===== ANIMATION DELAYS ===== */
.focus-card:nth-child(1) { animation: fadeInUp 0.8s ease-out 0.1s both; }
.focus-card:nth-child(2) { animation: fadeInUp 0.8s ease-out 0.2s both; }
.focus-card:nth-child(3) { animation: fadeInUp 0.8s ease-out 0.3s both; }

.involvement-card:nth-child(1) { animation: fadeInUp 0.8s ease-out 0.1s both; }
.involvement-card:nth-child(2) { animation: fadeInUp 0.8s ease-out 0.2s both; }
.involvement-card:nth-child(3) { animation: fadeInUp 0.8s ease-out 0.3s both; }

.value-item:nth-child(1) { animation: fadeInUp 0.8s ease-out 0.1s both; }
.value-item:nth-child(2) { animation: fadeInUp 0.8s ease-out 0.2s both; }
.value-item:nth-child(3) { animation: fadeInUp 0.8s ease-out 0.3s both; }
.value-item:nth-child(4) { animation: fadeInUp 0.8s ease-out 0.4s both; }
.value-item:nth-child(5) { animation: fadeInUp 0.8s ease-out 0.5s both; } /* ADD THIS LINE */