:root {

    --primary-color: rgb(255 177 177);

    --secondary-color: rgb(235, 85, 85);

    scroll-behavior: smooth;



    --font-awesome-color: rgb(133 127 127);

    --sub-catagories-color: rgb(225 115 115);

}



* {

    margin: 0;

    padding: 0;

}



body {

    font-family: 'PT Sans', sans-serif;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main 
{
    flex: 1;
}

a {

    color: inherit;

    text-decoration: none;

}



.hero {

    width: 100vw;

    height: 100vh;

    overflow: hidden;

    background-image: url("/img/kyle-wasdale.jpg");

    background-size: cover;

    background-repeat: no-repeat;

    background-position: right;

    position: relative;

}



.hero::after {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100vh;

    background-color: rgba(0, 0, 0, .4);

}





.heroNonHome {

    height: 100px;

    background-position-y: 48%;

    border-bottom: 3px solid var(--primary-color);

}



.heroNonHome::after {

    height: 100px;

}



.hero * {

    z-index: 10;

}



header {

    color: white;

    display: flex;

    align-items: center;

    justify-content: space-between;

    width: 70%;

    height: 80px;

    margin: auto;

    z-index: 2;

}



header .logo {

    font-family: 'Bebas Neue', cursive;

    font-size: 2.7rem;

    letter-spacing: .2rem;

    text-transform: uppercase;

    position: relative;

}



header .logo .hightlight {

    color: var(--primary-color);

}



header .logo::after {

    content: "";

    top: 90%;

    left: 25%;

    position: absolute;

    width: 50%;

    height: 3px;

    background-color: var(--primary-color);

}





header ul {

    list-style: none;

}



header ul li {

    font-size: 1.1rem;

    display: inline;

    margin-right: 2rem;

    cursor: pointer;

    position: relative;

    transition: all .5s;

}



header ul li:hover {

    color: var(--primary-color);

}





.currentLink::after {

    content: "";

    top: 120%;

    left: 15%;

    position: absolute;

    width: 70%;

    height: 3px;

    background-color: var(--primary-color);

}



#tagLine {

    position: absolute;

    color: white;

    text-align: center;

    height: 100vh;

    width: 100vw;

    top: 0;

    left: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    z-index: 1;

}



#tagLine h1 {

    font-size: 2.5rem;

    margin-bottom: 1rem;

}



#tagLine p {

    font-size: 1.3rem;

}



#javaScriptType {

    color: var(--primary-color);

}



.scrolldown {

    margin-top: 1rem;

    font-size: 4rem;

    color: var(--secondary-color);

    cursor: pointer;

    animation: pulse 2s infinite;

}



.overview-header,

.core-skills-header {

    margin: 2rem 0 4rem 0;

}



.overview-header h2,

.core-skills-header h2 {

    font-size: 1.7em;

    color: var(--secondary-color);

}



.overview-header p,

.core-skills-header p {

    font-size: 1.1rem

}



.core-skills-sub {

    margin-bottom: 1em;

}



.overview-cat>i,

.core-skills>i {

    margin-bottom: .5rem;

    color: var(--font-awesome-color);

}



.overview-cat h3,

.core-skills h3 {

    color: var(--sub-catagories-color);

    padding: 0.5rem;

}



.checker-board {

    margin-bottom: 2rem;

    width: 100vw;

    margin-left: auto;

    margin-top: 6rem;

}



.checker-board-sub {

    width: 100vw;

    margin: 3rem;

    gap: 0 !important;

    justify-content: center;

    align-content: center;

    margin-left: auto;

}



.checkerboard-section {

    padding: 3.5rem 0rem;

    background: #cfcfcf;

}



.checkerboard-section h3 {

    padding: 1rem 0;

}



.checkerboard-section:nth-child(odd) {

    background-color: #f5f5f5;

}





footer {

    background-color: #454545;

    color: #fff;

    height: 80px;

    width: 100vw;

    overflow-x: hidden;



    display: flex;

    align-items: center;

    align-content: center;

    justify-content: center;

    margin-top: 3rem;

}





/*

ABOUT 

*/



#about-tagline h1 {

    padding-top: 2rem;

    position: relative;

    margin: auto;

    width: 40%

}



#about-tagline h1::after {

    content: "";

    width: 20%;

    height: 3px;

    background-color: var(--primary-color);

    position: absolute;

    top: 112%;

    left: 40%;

}





.brief-container {

    width: 70%;

    margin: 4rem auto;

    display: grid;

    grid-template-columns: 1fr 2fr;

    gap: 1rem;

    position: relative;

}



#brief img {

    width: 100%;

    overflow: hidden;

}



.brief-text {

    background-color: #f3f1f1;

    text-align: center;

    border-left: 3px solid var(--primary-color);

}



.brief-text>h2 {

    padding-top: 1rem;

    font-size: 1rem;

    color: #454545;

}



.brief-container .brief-text p {

    line-height: 1.5;

    font-size: 1rem;

    margin: 1.4rem;

}



#skills {

    background-color: #cfcfcf;

    color: #615555

}



.skillsContainer {

    width: 60%;

    margin-left: auto;

    margin-right: auto;

    padding: 2rem 0;

}



.skillsContainer h2 {

    padding: 0 0 1.5rem 0;

    position: relative;

}



.skillLabel {

    padding-bottom: .3rem;

}



.progressBar {

    height: 20px;

    width: 100%;

    background-color: #454545;

    margin-left: auto;

    margin-right: auto;

    margin-bottom: .6rem;

}



.progressBar>div {

    background-color: var(--secondary-color);

    height: 100%;

}





/*-----------

UTILITIES

-------------*/

.container {

    width: 75%;

    margin: 0 auto;

}



.text-center {

    text-align: center;

}



.bg-primary {

    background-color: var(--primary-color);

}



.bg-secondary {

    background-color: var(--secondary-color-color);

}



.grid-column {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 2.5em;

}





/*-----------

KEYFRAMES

-------------*/





@keyframes pulse {

    0% {

        transform: scale(1);

    }



    50% {

        transform: scale(1.2);

    }



    1000% {

        transform: scale(1);

    }

}





/*-----------

MEDIA QUERIES

-------------*/



@media only screen and (max-width: 1300px) {

    .container {

        width: 90%;

    }

}



@media only screen and (max-width: 1300px) {

    .container {

        width: 90%;

    }

}



@media only screen and (max-width: 900px) {

    header {

        flex-direction: column;

    }



    header .logo {

        margin-bottom: 2rem;

    }



    header .logoNonHome {

        margin-bottom: 0.5rem;

    }



    header ul li {

        margin-right: 1rem;

        margin-left: 1rem;



    }



    .grid-column {

        grid-template-columns: repeat(2, 1fr);

    }



    .brief-container {

        grid-template-columns: 1fr;

    }

}



@media only screen and (max-width: 720px) {



    #tagLine h1 {



        font-size: 1.8rem;

    }



    #tagLine p {

        width: 80%;

        font-size: 1.0rem;

    }



    .hero {

        background-position: 80%;

    }



    .overview-header p {

        padding-top: 1.2rem;

    }



    .grid-column {

        grid-template-columns: repeat(1, 1fr);

    }

}



@media only screen and (max-height: 450px) {



    .scrolldown {

        display: none;

    }



    #tagLine {

        margin-top: 1.8rem;

    }

}

        #contact-section {
            padding: 4rem 2rem;
            background-color: #f4f4f4; 
        }

        .contact-container {
            max-width: 960px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            background: #ffffff;
            padding: 2.5rem;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .contact-text h2 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 2.5rem;
            color: #333;
            margin-bottom: 1rem;
        }

        .contact-text p {
            font-family: 'PT Sans', sans-serif;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .contact-links .link-item {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
            background: #f9f9f9;
            padding: 15px;
            border-radius: 5px;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        
        .contact-links .link-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
        }

        .contact-links .link-item i {
            font-size: 1.8rem;
            color: #333;
            width: 50px;
            text-align: center;
        }

        .contact-links .link-item a {
            font-family: 'PT Sans', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            color: #555;
            text-decoration: none;
            margin-left: 15px;
        }
        
        .contact-links .link-item a:hover {
            text-decoration: underline;
        }
        
        @media (min-width: 768px) {
            .contact-container {
                grid-template-columns: 1fr 1fr;
            }
        }

        .page-background {
            background-color: #f8f9fa;
            padding: 4rem 2rem;
        }
        .page-section {
            max-width: 960px;
            margin: 0 auto 4rem auto;
        }

        .summary-container {
            display: grid;
            grid-template-columns: 1fr;
            align-items: center;
            gap: 2rem;
        }

        .summary-container img {
            width: 100%;
            max-width: 250px;
            border: 6px solid #fff;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            margin: 0 auto;
        }
        
        .summary-text h1 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 2.6rem;
            line-height: 1.1;
            margin-bottom: 0.5rem;
        }
        
        .summary-text h2 {
            font-family: 'PT Sans', sans-serif;
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
        }

        .summary-buttons {
            margin-top: 2rem;
        }
        
        .cta-button {
            text-decoration: none;
            color: #fff;
            background: var(--primary-color);
            padding: 12px 24px;
            border-radius: 5px;
            font-weight: 700;
            transition: background-color 0.2s ease;
            margin-right: 1rem;
        }
        
        .cta-button.secondary {
            background: #e9ecef;
            color: #343a40;
        }
        
        .cta-button:hover {
            background-color: var(--secondary-color);
        }
        .cta-button.secondary:hover {
            background: #ced4da;
        }

        .timeline {
            border-left: 3px solid #dee2e6;
        }
        .timeline-item {
            position: relative;
            padding: 1rem 1rem 1.5rem 2.5rem;
        }
        
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -11px;
            top: 1.3rem;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background-color: white;
            border: 3px solid var(--primary-color);
        }
        
        .timeline-item h4 { font-size: 1.2rem; margin-bottom: 0.25rem; }
        .timeline-item h5 { font-size: 1rem; font-weight: 400; color: #6c757d; margin-bottom: 0.75rem; }

        .education-grid {
            margin-top: 2em;
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .education-card {
            display: flex;
            align-items: center;
            background: #fff;
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.07);
        }
        .education-card i {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-right: 1.5rem;
        }
        .education-card h4 { margin: 0; }
        .education-card p { margin: 0.25rem 0 0 0; color: #6c757d; }
        
        .skills-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
            gap: 1rem;
            margin-top: 2rem;
        }

        .skill-card {
            background: #fff;
            padding: 1rem;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 2px 8px rgba(0,0,0,0.07);
        }

        .skill-card i { font-size: 2rem; margin-bottom: 0.75rem; color: #343a40; }
        .skill-card h4 { font-family: 'PT Sans', sans-serif; font-weight: 700; font-size: 1rem; }
        
        @media (min-width: 768px) {
            .summary-container { grid-template-columns: 250px 1fr; gap: 3rem; }
            .education-grid { grid-template-columns: 1fr 1fr; }
        }

        