/* <editor-fold desc="Global Styles"> */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Mrs+Saint+Delafield&display=swap');

:root {
    --blue-regular: rgb(0, 87, 255);
    --blue-light: rgb(191, 210, 255);
    --gray-regular: rgb(245, 248, 255);
    --gray-light: rgb(224, 234, 255);
    --gray-dark: rgb(25, 25, 25);
    --signature-purple: rgb(179, 55, 145);
    --purple-v1: rgb(197, 98, 175);
    --purple-v2: rgb(219, 141, 208);
    --purple-v3: rgb(254, 197, 246);
}

* {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    box-sizing: border-box;
}

p {
    font-weight: 200;
}

hr {
    width: 100%;
}

/* </editor-fold> */

/* <editor-fold desc="Style Resets"> */
h1, h2, h3, h4, h5, h6, p, span, button, hr,
img, a, div, header, main, section, footer {
    margin: 0;
    padding: 0;
}

/* </editor-fold> */

/* <editor-fold desc="Component Styles"> */
.btn {
    color: white;
    border-radius: 25px;
    padding-top: 12px;
    padding-bottom: 12px;
    font-weight: 600;
    border: none;
}

.btn-blue {
    background-color: var(--blue-regular);
    color: white;
}

.btn-gray {
    background-color: var(--gray-regular);
    color: var(--blue-regular);
}

/* </editor-fold> */

/* <editor-fold desc="Primary Structure Styles"> */
body {
    margin: 0;
    padding: 0;
}

header, main, footer {
    width: 100vw;
    margin: 0;
    padding: 0;
}

section {
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
}

footer {
    background-color: var(--gray-dark);
}

/* </editor-fold> */

/* <editor-fold desc="Header Styles"> */
.header-content {
    position: relative;
    height: 300px;
    width: 100vw;
}

#banner-img {
    height: 275px;
    width: 100vw;
    object-fit: cover;
}

#personal-img {
    position: absolute;
    top: 250px;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
}

/* </editor-fold> */

/* <editor-fold desc="Contact-Section Styles"> */
.contact-content {
    padding-top: 15px;
    padding-bottom: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 225px;
    justify-content: space-around;
}

/* </editor-fold> */

/* <editor-fold desc="Live-Media-Section Styles"> */
.live-media-content {
    padding-top: 15px;
    padding-bottom: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.live-media--title {
    padding-top: 5px;
    padding-bottom: 5px;
    font-weight: 200;
}

.live-media-links {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

.social-icons {
    width: 85px;
}

/* </editor-fold> */

/* <editor-fold desc="Portfolio-Section Styles"> */
.portfolio-content {
    padding-top: 15px;
    padding-bottom: 15px;
    display: flex;
    flex-direction: column;
    gap: 25px 0;
}

.artifact--card {
    position: relative;
}

.artifact--title {
    width: 100%;
    padding: 50px 0 20px 20px;
    position: absolute;
    bottom: 0;
    color: white;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    background-image: linear-gradient(to bottom, transparent, black);
    font-weight: 600;
}

.artifact--img {
    width: 100%;
    border-radius: 5px;
}

/* </editor-fold> */

/* <editor-fold desc="Artifact-Section Styles"> */
.artifact-content {
    padding-top: 15px;
    padding-bottom: 15px;
    display: flex;
    flex-direction: column;
    gap: 25px 0;
    position: relative;
}

.artifact--what {
    text-align: center;
}

.artifact--media-container {
    position: relative;

}

.artifact--media {
    width: 100%;
    min-height: 100px;
    border-radius: 5px;
}

.pdf-controls {
    position: absolute;
    width: 100%;
    bottom: 0;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    display: flex;
    flex-direction: row;
    padding: 50px 10px 20px 10px;
    justify-content: space-between;
    align-items: center;
    background-image: linear-gradient(to bottom, transparent, black);
}

.pdf-btn {
    background-color: transparent;
    border-radius: 25px;
    border: 1px solid var(--purple-v2);
    color: white;
    font-weight: 600;
    padding: 3px 5px 3px 5px;
}

.pdf-info {
    color: white;
    font-weight: 600;
    font-size: 12px;
}

.artifact--media-msg {
    text-align: center;
    font-family: "Mrs Saint Delafield", cursive;
    color: var(--signature-purple);
    font-size: 24px;
    width: 100%;
}

.artifact-media-error {
    position: absolute;
    text-align: center;
    font-family: "Mrs Saint Delafield", cursive;
    color: var(--signature-purple);
    font-size: 24px;
    width: 100%;
}

.artifact--tags {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 0 25px;
    padding-top: 15px;
}

.tag {
    border-radius: 25px;
    background-color: var(--purple-v2);
    color: white;
    padding: 3px 5px 3px 5px;
}

.artifact--strategy, .artifact--how, .artifact--impact {
    text-align: center;
}

.artifact--description {
    text-align: center;
}

/* </editor-fold> */

/* <editor-fold desc="Footer Styles"> */
.footer-content {
    width: 100%;
    height: 150px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
}

#signature {
    font-family: "Mrs Saint Delafield", cursive;
    font-size: 30px;
    font-style: normal;
    text-align: center;
    color: var(--signature-purple);
}

.contact-icons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 0 10px;
}

.icon-img {
    height: 30px;
}

/* </editor-fold> */

/* <editor-fold desc="Custom Styles"> */
@media (hover: hover) {
    /* DESC :: Ensure that "Hover" only applies when there is a mouse */
    .btn-blue:hover {
        background-color: var(--blue-light);
    }

    .btn-gray:hover {
        background-color: var(--gray-light);
    }
}

/* </editor-fold> */

/* <editor-fold desc="Responsive Styles"> */
/* <editor-fold desc="Mobile"> */
@media (min-width: 480px) {
    /*body {*/
    /*    background-color: orange;*/
    /*}*/

    section {
        padding-left: 20px;
        padding-right: 20px;
    }

    .portfolio-content {
        display: grid;
        grid-template-columns: auto auto;
        gap: 25px 25px;
    }

    .artifact-content {
        padding-left: 30px;
        padding-right: 30px;
    }

    .artifact-content--pane-one {
        padding-left: 25px;
        padding-right: 25px;
    }

}

/* </editor-fold> */

/*<editor-fold desc="Custom Breakpoints for Artifact Media PT01">*/
@media (min-width: 560px) {
    .artifact-content--pane-one, .artifact-content--pane-two {
        padding-left: 35px;
        padding-right: 35px;
    }
}

@media (min-width: 630px) {
    .artifact-content--pane-one, .artifact-content--pane-two {
        padding-left: 50px;
        padding-right: 50px;
    }
}

/*</editor-fold>*/

/* <editor-fold desc="Tablet"> */
@media (min-width: 768px) {
    /*body {*/
    /*    background-color: mediumpurple;*/
    /*}*/

    section {
        padding-left: 40px;
        padding-right: 40px;
    }

    .portfolio-content {
        display: grid;
        grid-template-columns: auto auto;
        gap: 25px 25px;
    }

    .artifact-content {
        padding-left: 30px;
        padding-right: 30px;
    }
}

/* </editor-fold> */


/*<editor-fold desc="Custom Breakpoints for Artifact Media PT02">*/
@media (min-width: 860px) {
    .artifact-content--pane-one, .artifact-content--pane-two {
        padding-left: 100px;
        padding-right: 100px;
    }
}

@media (min-width: 880px) {
    .artifact-content--pane-one, .artifact-content--pane-two {
        padding-left: 2px;
        padding-right: 2px;
    }

    .artifact-content {
        display: grid;
        grid-template-areas:
            "heading heading"
            "pane1 pane2";

    }

    .artifact--what {
        grid-area: heading;
    }

    .artifact-content--pane-one {
        grid-area: pane1;
        padding-left: 15px;
        padding-right: 7px;
    }

    .artifact-content--pane-two {
        grid-area: pane2;
        padding-left: 7px;
        padding-right: 15px;
        text-align: left;
    }

    .artifact--strategy, .artifact--how, .artifact--impact {
        padding-bottom: 5px;
    }

    .artifact--how, .artifact--impact {
        padding-top: 5px;
    }

    .artifact--strategy, .artifact--how, .artifact--impact, .artifact--description {
        text-align: left;
        line-height: 1.4;
    }
}

/*</editor-fold>*/


/* <editor-fold desc="Desktop"> */
@media (min-width: 1024px) {
    /*body {*/
    /*    background-color: yellow;*/
    /*}*/

    section {
        padding-left: 60px;
        padding-right: 60px;
    }

    .portfolio-content {
        display: grid;
        grid-template-columns: auto auto auto;
        gap: 25px 25px;
    }

    .artifact-content--pane-one {
        padding-left: 25px;
        padding-right: 7px;
    }

    .artifact-content--pane-two {
        padding-left: 7px;
        padding-right: 25px;
    }
}

/* </editor-fold> */

/* <editor-fold desc="Large Desktop"> */
@media (min-width: 1200px) {
    /*body {*/
    /*    background-color: green;*/
    /*}*/

    section {
        padding-left: 150px;
        padding-right: 150px;
    }

    .portfolio-content {
        display: grid;
        grid-template-columns: auto auto auto;
        gap: 25px 25px;
    }
}

/* </editor-fold> */

/* <editor-fold desc="Extra-Large Desktop"> */
@media (min-width: 1400px) {
    /*body {*/
    /*    background-color: blue;*/
    /*}*/

    section {
        padding-left: 225px;
        padding-right: 225px;
    }

    .portfolio-content {
        display: grid;
        grid-template-columns: auto auto auto;
        gap: 25px 25px;
    }
}

/* </editor-fold> */

/* </editor-fold> */