/* ==========================================================================
   about.css — Overrides & additions for about.html, link.html, soon.html
   Loaded after style.css to layer on top of the base styles.
   ========================================================================== */

/* Hide the SVG eye logo on inner pages (particles still animate) */
#particles-js {
    background-image: none;
}

/* ---------- Custom fonts ---------- */

@font-face {
    font-family: roboto;
    src: url(../fonts/RobotoCondensed-Regular.ttf);
}

@font-face {
    font-family: roboto-light;
    src: url(../fonts/RobotoCondensed-Light.ttf);
}

/* ---------- About biography block (about.html) ---------- */

.about {
    position: absolute;
    max-width: 50%;
    top: 8.5rem;
    left: 50%;
    transform: translateX(-50%);
    max-height: calc(100vh - 9.5rem);
    overflow-y: auto;
    z-index: 1;
    padding: 1rem;
}

.about h2 {
    font-family: roboto;
    font-size: 3rem;
    color: rgb(64, 195, 255);
}

.about p {
    font-family: roboto-light;
    font-size: 1.15rem;
    line-height: 1.8;
    color: whitesmoke;
}

/* ---------- "Soon" placeholder text (soon.html) ---------- */

h3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: roboto-light;
    font-size: 2.5rem;
    color: rgb(64, 195, 255);
    text-align: center;
    z-index: 1;
}

h3 p {
    color: whitesmoke;
    font-size: 2.7rem;
}

/* ---------- Tablet (max-width: 768px) ---------- */

@media (max-width: 768px) {

    .about {
        top: 7.5rem;
        max-width: 75%;
        max-height: calc(100vh - 8.5rem);
    }

    .about h2 {
        font-size: 2.5rem;
    }

    .about p {
        font-size: 1.05rem;
        line-height: 1.7;
    }

    h3 {
        font-size: 2rem;
    }

    h3 p {
        font-size: 2.2rem;
    }
}

/* ---------- Phone (max-width: 480px) ---------- */

@media (max-width: 480px) {

    .about {
        top: 6.5rem;
        max-width: 90%;
        max-height: calc(100vh - 7.2rem);
    }

    .about h2 {
        font-size: 1.8rem;
    }

    .about p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    h3 {
        font-size: 1.5rem;
    }

    h3 p {
        font-size: 1.8rem;
    }
}