/* ================================================
   ABOUT PAGE STYLES
   Scoped under .page-about
   ================================================ */

/* About Page - Dark Manifesto Design */
.page-about #about {
    padding: 4rem 2rem 4rem;
}

.page-about .about-container {
    max-width: 800px;
}

/* Hero Section */
.page-about .about-hero {
    margin-bottom: 2rem;
}

.page-about .about-hero-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.page-about .about-hero h1 {
    font-size: 4.5rem;
    letter-spacing: 8px;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.page-about .about-hero-intro {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #e0e0e0;
    max-width: 700px;
    margin: 0 auto;
}

/* Content Sections */
.page-about .about-section {
    margin-bottom: 2rem;
}

.page-about .about-section h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 2rem;
}

.page-about .about-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #d0d0d0;
    margin-bottom: 1.5rem;
}

.page-about .about-section p:last-child {
    margin-bottom: 0;
}

/* Manifesto Closing */
.page-about .about-manifesto {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-about .manifesto-lines {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 3px;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 2rem;
}

.page-about .manifesto-lines span {
    display: block;
}

.page-about .manifesto-closer {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    letter-spacing: 8px;
    color: #ffffff;
    margin-top: 3rem;
}

/* Contact Section */
.page-about .about-contact-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 900px;
    margin: 2rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-about .about-mascot {
    flex-shrink: 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

.page-about .about-mascot img {
    height: 300px;
    width: auto;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.page-about .about-mascot img:hover {
    opacity: 0.9;
}

.page-about .about-contact {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-about .about-contact h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-align: center;
}

.page-about .about-contact-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 180px));
    gap: 0.75rem;
    justify-content: center;
    max-width: 100%;
}

.page-about .about-contact-btn {
    width: 180px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.page-about .about-contact-btn:hover {
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
    transform: translateY(-2px);
}

.page-about .about-contact-btn:active {
    transform: translateY(0);
}

.page-about .about-contact-btn span {
    display: block;
    line-height: 1;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .page-about .about-hero {
        margin-bottom: 4rem;
    }

    .page-about .about-hero h1 {
        font-size: 3rem;
        letter-spacing: 5px;
    }

    .page-about .about-hero-intro {
        font-size: 1.05rem;
    }

    .page-about .about-section {
        margin-bottom: 3.5rem;
    }

    .page-about .about-section h2 {
        font-size: 1.6rem;
        letter-spacing: 3px;
    }

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

    .page-about .manifesto-lines {
        font-size: 1.4rem;
    }

    .page-about .manifesto-closer {
        font-size: 2.2rem;
        letter-spacing: 6px;
    }

    .page-about .about-contact-wrapper {
        gap: 2rem;
        margin-top: 4rem;
    }

    .page-about .about-mascot img {
        height: 180px;
    }

    .page-about .about-contact h3 {
        font-size: 1.6rem;
    }

    .page-about .about-contact-buttons {
        grid-template-columns: repeat(2, minmax(160px, 180px));
        max-width: 400px;
    }

    .page-about .about-contact-btn {
        width: 100%;
        min-width: 160px;
    }
}

@media (max-width: 480px) {
    .page-about .about-hero h1 {
        font-size: 2rem;
        letter-spacing: 4px;
    }

    .page-about .about-hero-intro {
        font-size: 1rem;
    }

    .page-about .manifesto-lines {
        font-size: 1.2rem;
    }

    .page-about .manifesto-closer {
        font-size: 2rem;
    }

    .page-about .about-mascot img {
        height: 180px;
    }

    .page-about .about-contact h3 {
        font-size: 1.4rem;
    }

    .page-about .about-contact-buttons {
        grid-template-columns: 1fr;
        max-width: 280px;
        width: 100%;
    }

    .page-about .about-contact-btn {
        width: 100%;
        height: 48px;
        font-size: 0.9rem;
    }
}
