@charset "UTF-8";

/* ===================================
   DOE DESIGNS
   ABOUT PAGE
=================================== */


/* ===================================
   ABOUT PAGE
=================================== */

body.about-page {

    background:#050507;

}


/* ===================================
   ABOUT WRAPPER
=================================== */

.about-wrapper {

    display:flex;

    justify-content:center;

    align-items:flex-start;

    padding-top:75px;

    position:relative;

    z-index:2;

}


/* ===================================
   RESUME BOARD
=================================== */

.resume-board {

    position:relative;

    width:min(780px,90vw);

    margin-top:5px;

    margin-bottom:20px;

    z-index:2;

}


/* ===================================
   CYAN TAPE
=================================== */

.cyan-tape {

    position:absolute;

    width:170px;

    height:38px;

    background:
        linear-gradient(
            135deg,
            rgba(0,229,255,.28),
            rgba(0,229,255,.12)
        );

    border:
        1px solid rgba(255,255,255,.25);

    backdrop-filter:blur(2px);

    box-shadow:
        0 5px 15px rgba(0,0,0,.35);

    z-index:3;

}


.tape-top {

    top:-18px;

    left:50%;

    transform:
        translateX(-50%)
        rotate(-5deg);

}


.tape-bottom {

    bottom:-18px;

    left:50%;

    width:140px;

    height:35px;

    transform:
        translateX(-50%)
        rotate(-6deg);

}


/* ===================================
   RESUME PAPER
=================================== */

.resume-paper {

    position:relative;

    padding:
        55px 60px 50px;

    color:#111;

    background:

        linear-gradient(
            rgba(255,255,255,.22),
            rgba(255,255,255,.08)
        ),

        url("../images/paper-texture.png");


    background-size:cover;

    background-position:center top;

    background-repeat:no-repeat;


    box-shadow:
        0 3px 8px rgba(0,0,0,.35),
        0 25px 70px rgba(0,0,0,.55);

    filter:contrast(102%);
}

.resume-paper::before {
    content:"";
    position:absolute;
    inset:0;
    opacity:.08;
    pointer-events:none;
    background-image:
        radial-gradient(
            rgba(0,0,0,.8) .5px,
            transparent .5px
        );

    background-size:5px 5px;
}

/* prevents texture seam */

.resume-paper > * {
    position:relative;
    z-index:1;
}

/* remove white line */

.paper-edge {
    display:none;

}

/* ===================================
   NAME HEADER
=================================== */

.resume-header {

    margin-bottom:35px;

    padding-bottom:25px;

    border-bottom:2px solid #111;

}

.resume-header h1 {
    display:inline-block;
    position:relative;
    margin-left:-25px;
    padding:12px 35px 16px;
    background:transparent;
    color:#00E5FF;
    font-family:
        "Barlow Condensed",
        sans-serif;
    font-size:42px;
    font-weight:900;
    letter-spacing:.08em;
    -webkit-text-stroke:1px #111;
    text-shadow:
        1px 1px 0 #111;
}

.resume-header h1::after {
    content:"";
    position:absolute;
    left:35px;
    right:35px;
    bottom:5px;
    height:2px;
    background:#111;
}
/* ===================================
   TITLE
=================================== */

.resume-title {
    margin-top:18px;
    font-family:
        "Jost",
        sans-serif;
    font-size:14px;
    letter-spacing:.22em;
    text-transform:uppercase;
    color:#555;
}

.resume-contact {
    display:flex;
    flex-wrap:wrap;
    gap:20px;
    margin-top:20px;
    font-family:
        "DM Mono",
        monospace;
    font-size:11px;
    color:#666;
}

/* ===================================
   SECTION HEADINGS
=================================== */


.resume-section {
    margin-bottom:35px;
}

.resume-section h2 {
 	display:inline-block;
    position:relative;
    margin-left:-25px;
    padding:
        10px 35px 15px;
    background:transparent;
    color:#00E5FF;
    font-family:
        "Barlow Condensed",
        sans-serif;
    font-size:18px;
    letter-spacing:.25em;
    text-transform:uppercase;
    -webkit-text-stroke:1px #111;
    text-shadow:
        1px 1px 0 #111;
}

.resume-section h2::after {
    content:"";
    position:absolute;
    left:35px;
    right:35px;
    bottom:5px;
    height:2px;
    background:#111;
}

/* ===================================
   RESUME CONTENT
=================================== */

.resume-entry {
    margin-bottom:25px;
}

.resume-role {
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:20px;
    font-family:
        "Jost",
        sans-serif;
    font-size:15px;
    font-weight:600;
}

.resume-role span {
    font-family:
        "DM Mono",
        monospace;
    font-size:11px;
    color:#888;
}

.resume-entry p {
    margin:
        5px 0 10px;
    font-family:
        "Jost",
        sans-serif;
    font-size:13px;
    color:#666;
}

.resume-entry li {
    font-family:
        "Jost",
        sans-serif;
    font-size:13px;
    line-height:1.6;
    color:#444;
}

/* ===================================
   SKILLS
=================================== */

.skill-grid {
    display:grid;
    grid-template-columns:
        1fr 1fr;
    gap:
        12px 35px;
}

.skill-grid div {
    display:flex;
    justify-content:space-between;
    padding-bottom:5px;
    border-bottom:
        1px solid #eee;
}

.skill-grid div span:first-child {
    font-family:
        "Jost",
        sans-serif;
    font-size:13px;
    font-weight:500;
}

.skill-grid div span:last-child {
    font-family:
        "DM Mono",
        monospace;
    font-size:11px;
    color:#888;
}

/* ===================================
   RESUME STAMP
=================================== */

.resume-stamp {
    position:absolute;
    right:35px;
    bottom:35px;
    padding:10px;
    border:
        2px solid rgba(0,229,255,.45);
    color:
        rgba(0,150,180,.70);
    font-family:
        "Barlow Condensed",
        sans-serif;
    font-size:13px;
    letter-spacing:.18em;
    transform:
        rotate(-12deg);
}

/* ===================================
   COPY BUTTON
=================================== */

.copy-button {
    margin-top:25px;
    display:inline-block;
    position:relative;
    color:#00E5FF;
    text-decoration:none;
    text-transform:uppercase;
    font-family:
        "Barlow Condensed",
        sans-serif;
    font-size:16px;
    letter-spacing:.35em;
}

.copy-button::after {
    content:"";
    position:absolute;
    left:0;
    bottom:-10px;
    width:100%;
    height:1px;
    background:#00E5FF;
    transform:
        scaleX(.35);
    transform-origin:left;
    transition:
        transform .35s ease;
}

.copy-button:hover {
    color:white;

}

.copy-button:hover::after {
    transform:
        scaleX(1);
}

/* ===================================
   ABOUT CONTACT MESSAGE
=================================== */
.about-page .page-contact-link {
    margin-top:35px;
}

/* ===================================
   MOBILE
=================================== */

@media(max-width:700px){
    .resume-board {
        width:94vw;
    }
	
    .resume-paper {
        padding:
            40px 30px;
    }

    .resume-header h1 {
        margin-left:-25px;
        padding:
            12px 35px 16px;
        font-size:32px;
    }

    .resume-section h2 {
        margin-left:-25px;
        padding:
            10px 35px 15px;
    }

    .skill-grid {
        grid-template-columns:1fr;
    }
}
