/* About Page Specific Styles */

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #006666, #00a3a3);
    color: white;
    padding: 8rem 0 4rem;
    margin-top: 80px;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* 統計數據格子 */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 102, 102, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #006666;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    color: #666;
    font-weight: 500;
    font-size: 1rem;
}

/* 公司簡介區塊 */
.company-intro {
    padding: 5rem 0;
    background: #fff;
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.intro-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #006666;
    margin-bottom: 2rem;
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 1.5rem;
}

.intro-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 102, 102, 0.2);
}

/* 願景使命 */
.vision-mission {
    padding: 5rem 0;
    background: #f8f9fa;
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.vision-card,
.mission-card,
.values-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 102, 102, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vision-card:hover,
.mission-card:hover,
.values-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 102, 102, 0.15);
}

.card-icon {
    margin-bottom: 1.5rem;
}

.card-icon img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.vision-card h3,
.mission-card h3,
.values-card h3 {
    color: #006666;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.vision-card p,
.mission-card p,
.values-card p {
    color: #666;
    line-height: 1.6;
}

/* 團隊 */
.team-section {
    padding: 5rem 0;
    background: #fff;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.team-member {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 102, 102, 0.15);
}

.member-photo {
    margin-bottom: 1.5rem;
}

.member-photo img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}

.member-info h3 {
    color: #006666;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.member-title {
    color: #666;
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-bio {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* 公司歷程 */
.company-history {
    padding: 5rem 0;
    background: #f8f9fa;
}

.history-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.history-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #006666, #00a3a3);
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    justify-content: flex-start;
}

.timeline-item:nth-child(even) {
    justify-content: flex-end;
    flex-direction: row-reverse;
}

.timeline-year {
    background: #006666;
    color: white;
    padding: 0.8rem 1.2rem;
    border-radius: 20px;
    font-weight: 600;
    margin: 0 2rem;
    position: relative;
    z-index: 2;
    min-width: 80px;
    text-align: center;
}

.timeline-content {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 102, 102, 0.1);
    max-width: 350px;
    position: relative;
}

.timeline-content h3 {
    color: #006666;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
}

/* 永續發展 */
.sustainability {
    padding: 5rem 0;
    background: #fff;
}

.sustainability-content {
    text-align: center;
}

.sustainability-text {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.sustainability-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
}

.sustainability-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pillar {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

.pillar:hover {
    transform: translateY(-5px);
}

.pillar-icon {
    margin-bottom: 1rem;
}

.pillar-icon img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.pillar h3 {
    color: #006666;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.pillar p {
    color: #666;
    line-height: 1.6;
}

/* Contact CTA */
.contact-cta {
    background: linear-gradient(135deg, #006666, #00a3a3);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Navigation Active State */
.nav-link.active {
    color: #006666;
    font-weight: 600;
}

/* 修復動畫樣式 */
.timeline-item.animated {
    transform: translateX(0);
    opacity: 1;
}

.timeline-item {
    transform: translateX(-20px);
    opacity: 0;
    transition: all 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .intro-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .intro-text h2 {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .vision-mission-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .history-timeline::before {
        left: 20px;
        transform: none;
    }
    
    .timeline-item {
        flex-direction: row !important;
        justify-content: flex-start !important;
    }
    
    .timeline-item:nth-child(even) {
        flex-direction: row !important;
    }
    
    .timeline-year {
        margin: 0 1rem 0 0;
        min-width: 60px;
        font-size: 0.9rem;
        padding: 0.6rem;
    }
    
    .timeline-content {
        max-width: none;
        flex: 1;
    }
    
    .sustainability-pillars {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 6rem 0 3rem;
    }
    
    .page-title {
        font-size: 1.8rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .vision-card,
    .mission-card,
    .values-card {
        padding: 2rem;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
    
    .pillar {
        padding: 1.5rem;
    }
} 