/* About Page Specific Styles */

/* Main content padding adjustment for about page */
main {
    padding-top: 120px;
    padding-bottom: 2rem;
}

/* About page headings */
h1 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 2.5rem;
    margin-top: 7rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

p {
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

/* Animation delays for sequential appearance */
p:nth-of-type(1) { animation-delay: 0.1s; }
p:nth-of-type(2) { animation-delay: 0.2s; }
p:nth-of-type(3) { animation-delay: 0.3s; }
h2:nth-of-type(1) { animation-delay: 0.05s; }
h2:nth-of-type(2) { animation-delay: 0.15s; }
h2:nth-of-type(3) { animation-delay: 0.25s; }
h2:nth-of-type(4) { animation-delay: 0.35s; }
h2:nth-of-type(5) { animation-delay: 0.45s; }

/* Founder Note */
.founder-note {
    background-color: var(--accent-color);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 5px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
    animation-delay: 0.3s;
}

/* Stats Section */
.stats-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin: 2rem 0 3rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
    animation-delay: 0.2s;
}

.stat-card {
    flex: 1;
    min-width: 220px;
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

/* Redefine stat-value and stat-label for the .stat-card elements on about page */
.stat-card .stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-card .stat-label {
    font-size: 1.1rem;
    color: #666;
}

/* Healthcare AI Section */
.healthcare-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
    animation-delay: 0.3s;
}

.healthcare-stat {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.stat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.8rem;
}

.stat-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
}

.stat-percentage {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-bar {
    height: 10px;
    background-color: #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 0.8rem;
}

.stat-fill {
    height: 100%;
    background-color: var(--primary-color);
    border-radius: 5px;
}

.stat-description {
    font-size: 0.95rem;
    color: #666;
}

/* Blockquote styling */
blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 1rem;
    margin: 2rem 0;
    font-style: italic;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
    animation-delay: 0.4s;
}

/* Avatar Section */
.avatars-section {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 2rem 0;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
    animation-delay: 0.4s;
}

.avatar-card {
    flex: 1;
    min-width: 280px;
    background-color: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.avatar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.avatar-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.avatar-info {
    padding: 1.5rem;
}

.avatar-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.avatar-description {
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.avatar-link {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.avatar-link:hover {
    background-color: #00695c;
}

/* Story Deck Section */
.story-deck-section {
    margin: 3rem 0;
    padding: 2rem;
    background-color: var(--accent-color);
    border-radius: 10px;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
    animation-delay: 0.3s;
}

.download-container {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
}

.download-btn {
    display: flex;
    align-items: center;
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 77, 64, 0.2);
    border: none;
    cursor: pointer;
    min-width: 280px;
}

.download-btn:hover {
    background-color: #00695c;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 77, 64, 0.3);
}

.download-icon {
    font-size: 2rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.download-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.download-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
    line-height: 1.2;
}

.download-subtitle {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.2;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    main {
        padding-top: 100px;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .stat-card .stat-value {
        font-size: 2rem;
    }

    .stat-percentage {
        font-size: 1.5rem;
    }

    /* Story Deck Mobile */
    .story-deck-section {
        margin: 2rem 0;
        padding: 1.5rem;
    }

    .download-btn {
        min-width: 260px;
        padding: 0.9rem 1.5rem;
    }

    .download-icon {
        font-size: 1.8rem;
    }

    .download-title {
        font-size: 1rem;
    }

    .download-subtitle {
        font-size: 0.85rem;
    }
} 