/* PAGE-SPECIFIC STYLES: about.css */

.about-container {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    width: 100%;
    max-width: 900px; /* Wider for more text content */
    margin: 20px auto; /* Responsive margin */
    padding: 30px 40px;
    color: var(--text-color);
}

.about-banner {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 30px;
}

.about-container h1 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 25px;
}

.about-container h2 {
    color: var(--secondary-color);
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.about-container p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-container ul {
    list-style: none;
    padding-left: 0;
}

.about-container ul li {
    font-size: 17px;
    padding: 10px 0 10px 35px;
    position: relative;
    border-bottom: 1px dashed #e0e0e0;
}

.about-container ul li:last-child {
    border-bottom: none;
}

/* Fun icons for the list */
.about-container ul li::before {
    content: '🧩'; /* Default icon */
    position: absolute;
    left: 0;
    font-size: 20px;
    top: 50%;
    transform: translateY(-50%);
}
.about-container ul li:nth-child(2)::before { content: '🎨'; }
.about-container ul li:nth-child(3)::before { content: '📚'; }
.about-container ul li:nth-child(4)::before { content: '🏰'; }


/* --- Support/Call to Action Section --- */
.support-section {
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
    margin-top: 40px;
    text-align: center;
    border: 1px solid #e9ecef;
}

.patreon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #f96854; /* Official Patreon Orange */
    color: white;
    border: none;
    border-radius: 8px;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    margin-top: 10px;
}

.patreon-btn:hover {
    background-color: #e45641;
    transform: translateY(-2px);
}

.patreon-btn .fab {
    margin-right: 12px;
    font-size: 22px;
}

.suggestion-text {
    margin-top: 25px;
    font-size: 15px;
    color: #6c757d;
}
.suggestion-text a {
    color: var(--info-color);
    font-weight: bold;
    text-decoration: none;
}
.suggestion-text a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .about-container {
        padding: 20px;
        margin: 10px;
    }
    .about-container h1 { font-size: 24px; }
    .about-container h2 { font-size: 20px; }
    .about-container p, .about-container ul li { font-size: 16px; }

    .support-section {
        padding: 25px 20px;
    }

    .patreon-btn {
        padding: 12px 24px;
        font-size: 16px;
    }
}