/**
 * About Page Styles
 * 關於我/支持我頁面的樣式
 */

/* 主要內容區 */
.about-page {
    min-height: calc(100vh - 200px);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
}

.about-content p {
    margin-bottom: 1.5rem;
}

.about-content .fs-5 {
    line-height: 1.6;
    color: #222;
}

/* 標題樣式 */
.about-page h1 {
    color: #0066cc;
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-page .display-4 {
    font-size: 2.5rem;
}

/* 按鈕樣式 */
.about-page .btn-lg {
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.2);
    transition: all 0.3s ease;
}

.about-page .btn-lg:hover {
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
    transform: translateY(-2px);
}

.about-page .btn-primary {
    background-color: #0066cc;
    border-color: #0066cc;
}

.about-page .btn-primary:hover {
    background-color: #0052a3;
    border-color: #0052a3;
}

/* 警語框樣式 */
.about-page .alert-warning {
    background-color: #fff8e1;
    border-color: #ffd54f;
    border-radius: 8px;
    margin-top: 2rem;
}

.about-page .alert-warning h6 {
    color: #f57f17;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.about-page .alert-warning p {
    color: #e65100;
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* 響應式設計 */
@media (max-width: 768px) {
    .about-page .display-4 {
        font-size: 1.8rem;
    }

    .about-content {
        padding: 0 1rem;
        font-size: 1rem;
    }

    .about-page .btn-lg {
        width: 100%;
        display: inline-block;
    }

    .about-content p {
        text-align: justify;
    }
}
