/* ===================================
   ABOUT PAGE SPECIFIC STYLES
   =================================== */

.about-page {
    min-height: 100vh;
    padding: 120px 2rem 4rem;
    background: linear-gradient(135deg, var(--rich-black) 0%, var(--dark-teal) 50%, var(--deep-teal) 100%);
}

.about-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Page Title */
.page-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--gold);
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

/* Intro Paragraph - Outside the box but within margins */
.about-intro {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--gold);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
    padding: 0 3rem;
    font-style: italic;
    font-weight: 400;
}

.about-intro em {
    color: var(--gold);
    font-style: italic;
}

/* About Content Box */
.about-content {
    background: rgba(13, 13, 13, 0.6);
    padding: 3rem;
    border-radius: 8px;
    border: 1px solid rgba(201, 169, 97, 0.2);
    margin-bottom: 3rem;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--cream);
    margin-bottom: 1.5rem;
}

.about-content p:last-of-type {
    margin-bottom: 0;
}

/* Section Headings (gold, larger) */
.section-heading {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--gold);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.section-heading:first-of-type {
    margin-top: 0;
}

/* Quote Graphics */
.quote-graphic {
    margin: 2.5rem 0;
    text-align: center;
}

.quote-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Special Text Styles */
.intro-text {
    font-size: 1.3rem !important;
    color: var(--gold) !important;
    font-weight: 600;
    margin-bottom: 2rem !important;
}

.emphasis {
    font-size: 1.2rem !important;
    font-weight: 600;
    color: var(--gold) !important;
}

.closing {
    font-size: 1.2rem !important;
    font-style: italic;
    text-align: center;
    margin-top: 2rem !important;
    padding-top: 2rem;
    border-top: 1px solid rgba(201, 169, 97, 0.2);
}

.about-content a {
    color: var(--gold);
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.about-content a:hover {
    opacity: 0.7;
}

.about-content em {
    font-style: italic;
    color: var(--gold);
}

/* Reviews Section (Optional) */
.reviews-section {
    background: rgba(13, 13, 13, 0.6);
    padding: 3rem;
    border-radius: 8px;
    border: 1px solid rgba(201, 169, 97, 0.2);
    margin-bottom: 3rem;
}

.reviews-section .section-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--gold);
    text-align: center;
    margin-bottom: 2.5rem;
    letter-spacing: 1px;
}

.reviews-carousel {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.review-card {
    background: rgba(26, 58, 74, 0.4);
    padding: 2rem;
    border-radius: 8px;
    border-left: 3px solid var(--gold);
}

.review-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--cream);
    font-style: italic;
    margin-bottom: 1rem;
}

.review-author {
    font-size: 0.95rem;
    color: var(--gold);
    font-weight: 600;
    text-align: right;
}

/* About CTA Section */
.about-cta {
    background: rgba(13, 13, 13, 0.6);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid rgba(201, 169, 97, 0.2);
    text-align: center;
}

.about-cta h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.about-cta .social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.about-cta .social-links a {
    display: inline-block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.about-cta .social-links a:hover {
    transform: translateY(-3px);
    opacity: 0.8;
}

.about-cta .social-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block;
}

/* Patreon CTA */
.patreon-cta {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(201, 169, 97, 0.2);
}

.patreon-cta p {
    font-size: 1rem;
    color: var(--cream);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.patreon-cta p:last-child {
    margin-bottom: 0;
}

.patreon-cta a {
    color: var(--gold);
    text-decoration: underline;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.patreon-cta a:hover {
    opacity: 0.7;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 768px) {
    .about-page {
        padding: 100px 1.5rem 3rem;
    }

    .page-title {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }

    .about-intro {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }

    .about-content {
        padding: 2rem 1.5rem;
    }

    .about-content p {
        font-size: 1rem;
    }

    .section-heading {
        font-size: 1.5rem;
        margin-top: 2rem;
    }

    .quote-graphic {
        margin: 2rem 0;
    }

    .intro-text {
        font-size: 1.2rem !important;
    }

    .emphasis {
        font-size: 1.1rem !important;
    }

    .closing {
        font-size: 1.1rem !important;
    }

    .reviews-section {
        padding: 2rem 1.5rem;
    }

    .reviews-section .section-title {
        font-size: 1.75rem;
    }

    .review-card {
        padding: 1.5rem;
    }

    .review-text {
        font-size: 1rem;
    }

    .about-cta {
        padding: 2rem 1.5rem;
    }

    .about-cta .social-links {
        gap: 1.2rem;
    }

    .about-cta .social-icon {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 1.8rem;
    }

    .about-intro {
        font-size: 0.95rem;
    }

    .about-content {
        padding: 1.5rem 1rem;
    }

    .about-content p {
        font-size: 0.95rem;
    }

    .section-heading {
        font-size: 1.3rem;
    }

    .review-text {
        font-size: 0.95rem;
    }

    .about-cta .social-links {
        gap: 1rem;
    }

    .about-cta .social-icon {
        width: 30px;
        height: 30px;
    }
}