:root {
    --light-pink: #FF669E;
    --dark-pink: #C71287;
    --light-purple: #BB12BD;
    --dark-purple: #752FC7;
}

.wrapper, .header {
    width: 100%;
    box-sizing: border-box;
    height: auto;
}

body { 
    width: 100%;
    box-sizing: border-box;
    height: auto;
    margin: 0;
    padding: 0;
}

.header {
    padding: 20px 40px;
    border-bottom: 1px solid #DFDFDF;
    background-color: #fff;
    position: fixed;
    top: 0;
    display: flex;
    z-index: 2;
}

.socials {
    display: flex;
    justify-content: flex-end;
}

.linkedin {
    padding-right: 10px;
}

.mrgt50 {margin-top: 50px;}

.col-2 {
    width: 50%;
    margin: 0;
    display: flex;
    padding: 0;
    align-items: center;
}

.header-container {
    position:  relative;
    width:  fit-content;
    margin-block-end:  50px;
}

/* Text styling */
h1 {
    position: relative;
    font-size: 70px;
    font-family:'Inter', Arial, Helvetica, sans-serif;
    color: #000000;
    font-weight: 900;
    line-height: 90px;
    margin: 0;
    margin-bottom: 65px;
    text-align: left;
    z-index: 1;
}

h2 {
    font-family:'Inter', Arial, Helvetica, sans-serif;
    font-size: 16px;
    color: var(--dark-pink);
    line-height: 24px;
    font-weight: 700;
    margin: 0 0 10px 0;
}

h3 {
    font-family:'Inter', Arial, Helvetica, sans-serif;
    font-size: 16px;
    color: var(--dark-purple);
    line-height: 24px;
    font-weight: 700;
    margin: 0 0 15px 0;
}

h4 {
    font-family:'Inter', Arial, Helvetica, sans-serif;
    font-size: 16px;
    color: var(--light-purple);
    line-height: 24px;
    font-weight: 700;
    margin: 0 0 15px 0;
}

p {
    font-family:'Inter', Arial, Helvetica, sans-serif;
    font-size: 16px;
    color: #000000;
    line-height: 24px;
    font-weight: 400;
    margin: 0 0 15px 0;
}

p:last-child {
    margin-bottom: 0;
}

.portfolio-list li {
    font-family:'Inter', Arial, Helvetica, sans-serif;
    margin-bottom: 15px;
}

.portfolio-list li:before {
    color: var(--light-purple);
    content: '\2022';
    margin-right: 15px;
}

.portfolio-list li:last-child {
    margin-bottom: 0;
}

.title-highlight {
    font-weight: 700;
    color: var(--light-purple);
}

/* Title lines */
.line {
    position: relative;
    width: fit-content;
    display: inline-block;
}

.line:after {
    position: absolute;
    content: '';
    bottom: 0px;
    background-color: transparent;
    width: 75px;
    height: 15px;
    z-index: -1;
    right: 0;
    bottom: -5px;
}

.l-index:after {
    background-color: var(--light-pink);
}

.l-portfolio:after {
    background-color: var(--light-purple);
}

.l-contact:after {
    background-color: var(--dark-purple);
}

.l-resume:after {
    background-color: var(--dark-pink);
}

/* Navigation */

.navigation {
    display: flex;
    flex-direction: row;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

ul li a {
    display: block;
    color: #000000;
    text-align: center;
    font-family:'Inter', Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    padding-right: 30px;
    text-decoration-thickness: 3px;
    text-decoration: line;
    text-decoration-color: transparent;
    text-underline-offset: 5px;
}

a.index:hover, a.index.active {
    text-decoration-color: var(--light-pink);
}

a.resume:hover, a.resume.active {
    text-decoration-color: var(--dark-pink);
}

a.portfolio:hover, a.portfolio.active {
    text-decoration-color: var(--light-purple);
}

a.contact:hover, a.contact.active {
    text-decoration-color: var(--dark-purple);
}

/* Buttons */

a.button {
    text-decoration: none;
    font-family:'Inter', Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 600;
    border-radius: 15px;
    padding: 10px 25px;
    width: 192px;
    text-align: center;
    border-radius: 15px;
    border: solid 2px;
}

a.resume-btn {
    border-color: var(--dark-pink);
    color: var(--dark-pink);
}

a.contact-btn {
    border-color: var(--dark-purple);
    color: var(--dark-purple);
}

a.portfolio-btn {
    border-color: var(--light-purple);
    color: var(--light-purple);
}

a.resume-btn:hover {
    background-color: var(--dark-pink);
}

a.contact-btn:hover {
    background-color: var(--dark-purple);
}

a.portfolio-btn:hover {
    background-color: var(--light-purple);
}

a.resume-btn:hover, a.portfolio-btn:hover, a.contact-btn:hover {
    color: #ffffff;
}

/* Rows + Column setup */
.row-container {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 50px;
    box-sizing: border-box;
    margin: 100px 0;
}

.test-title {
    width: 100%;
    height: auto;
}

.test-row {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    column-gap: 50px;
}

.test-column {
    width: 50%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.test-column img {
    text-align: center;
    margin: 0 auto;
}

.column-spacing {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dk-btn-hide {
    display: none;
}

/* Tablet + Mobile styling */
 
@media screen and (max-width: 912px) {
    .row-container, .test-row, .test-column, .wrapper, .col-2 {
        width: 100%; 
        box-sizing: border-box;
    }

    .test-column img {
        max-width: 100%;
        height: auto;
        margin-top: 50px;
    }

    .test-row, .header {
        flex-direction: column;
    }

    .row-container {
        padding: 100px 25px;
        height: auto;
    }
    
    h1 {
        font-size: 45px;
        line-height: 54px;
        margin-bottom: 50px;
    }

    .col-2 {
        align-items: center;
        justify-content: center;
    }

    .socials {
        display: none;
    }

    .mrgt50 {
        margin-top: 0;
    }

    .portfolio-btn, .contact-btn {
        margin-bottom: 25px;
    }

    .dk-btn-hide {
        display: block;
        margin-top: 10px;
    }

    .btn-hide {
        display: none;
    }

    .line:after {
        bottom: -5px;
        height: 10px;
        width: 55px;
    }
}

@media screen and (max-width: 430px) {
    a.button {
        width: 100%;
        box-sizing: border-box;
    }
}