/* ============================================================
   COMPOSER AVERY 5.0.4 — about.css
   Mobile-first. Desktop breakpoint scales bg/nav/watermark only,
   per "expands like the other pages" — no separate desktop
   wireframe provided yet, so layout structure stays the same.
   ============================================================ */

body.about-page {
    overflow-y: auto;
    overflow-x: hidden;
}

.about-page-main {
    position: relative;
    min-height: 100vh;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding-top: 90px;
    overflow-x: hidden;
}

/* Flat overlay — not a gradient, per spec */
.about-overlay {
    position: fixed;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(22,20,18,0.75) 0%,
        rgba(22,20,18,1.0) 100%
    );
    z-index: 0;
    pointer-events: none;
}

/* ---- "ABOUT" watermark: fixed, gradient text fill, same technique as MUSIC/PREVIEWS ---- */
.about-watermark {
    position: fixed;
    top: 54px;
    left: 0;
    width: 100%;
    text-align: center;
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 140px;
    letter-spacing: -6px;
    line-height: 1;
    z-index: 0;
    pointer-events: none;
    user-select: none;
    padding: 0px;
    margin: 0px;
    background: linear-gradient(to bottom, rgba(138,138,138,0.3) 0%, rgba(138,138,138,0.0) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.about-content {
    position: relative;
    z-index: 2;
    padding: 30px 10px 60px;
}

/* ============================================================
   ABOUT CARD
   ============================================================ */

.about-card-section {
    max-width: 500px;
    margin: 0 auto;
    margin-top: 35px;
}

.about-card {
    background: rgba(22,20,18,0.9);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 20px;
}

.about-card-top {
    display: flex;
    gap: 18px;
    margin-bottom: 20px;
}

.about-portrait {
    flex-shrink: 0;
    width: 150px;
    height: 150px;
    border-radius: 8px;
    overflow: hidden;
}
.about-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.about-social {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-social-label {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 400;
    color: rgba(180,180,180,1.0);
    margin-bottom: 10px;
}

.about-social-list {
    list-style: none;
}
.about-social-list li {
    margin-bottom: 12px;
}
.about-social-list li:last-child {
    margin-bottom: 0;
}
.about-social-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(128,128,128,1.0);
}
.about-social-list a:hover {
    color: #ffffff;
}
.about-social-list img {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
}
.about-social-list span {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
}

/* ---- Description: full render, no truncation ---- */
.about-description {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 300;
    line-height: 1.24;
    letter-spacing: 0.3px;
    color: rgba(180,180,180,1.0);
}
.about-description p {
    margin-bottom: 16px;
}
.about-description p:last-child {
    margin-bottom: 0;
}

/* ---- Obfuscated email ---- */
.about-email {
    margin-top: 24px;
    padding-top: 20px;
    text-align: center;
}
.about-email-label {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: rgba(180,180,180,1.0);
    margin-bottom: 6px;
}
.about-email-address {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0px;
    color: rgba(255,255,255,1.0);
    word-break: break-word;
}

.about-email-address span {
    font-weight: 200;
}

/* ============================================================
   DESKTOP (min-width: 1025px)
   Per spec: background + nav scale like other pages.
   No separate wireframe yet — structure unchanged, just larger.
   ============================================================ */
@media screen and (min-width: 1025px) {

    .about-watermark {
        font-size: 220px;
        top: 65px;
    }

    .about-card-section {
        max-width: 640px;
        margin: 0 auto;
    }

    .about-card {
        padding: 32px;
    }

    .about-portrait {
        width: 160px;
        height: 160px;
    }

    .about-description {
        font-size: 16px;
    }
}
