:root {
    --blueToPurpleGradient: linear-gradient(148deg, rgba(0, 112, 255, 1) 0%, rgba(118, 0, 190, 1) 77%);
    --blueToPurpleVerticalGradient: linear-gradient(190deg, rgba(0, 112, 255, 1) 0%, rgba(118, 0, 190, 1) 77%);
    --blueToNavyGradient: linear-gradient(197deg, rgba(13, 96, 246, 1) 0%, rgba(0, 0, 83, 1) 77%);
    --sunset: linear-gradient(197deg, rgba(255, 184, 0, 1) 0%, rgba(134, 1, 1, 1) 77%);
    --Gradient: linear-gradient(148deg, rgba(0, 112, 255, 1) 0%, rgba(118, 0, 190, 1) 77%);
}

/* Reset some default styles and apply a basic font */
body, h1, h2, p, ul {
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: black;
    color: white;
}

/* Header Styles */
header {
    background-color: black;
    padding: 1em;
    border-bottom: 1px solid #7e7e7e;
}

.header-logo-container {
    vertical-align: middle;
}

.header-logo {
    width: 60px;
}

.header-content {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between;
    max-width: 1400px;
    align-items: center;
}

.header-name {
    font-size: 1.2em;
    font-weight: bold;
    margin-left: 20px;
}

.header-job-title {
    font-size: 0.8em;
}

.header-divider {
    font-size: 1.5em;
    font-weight: bold;
    width: 10px;
    height: 30px;
    margin: 0 20px;
}

nav ul {
    list-style-type: none;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}

/* Main Content Styles */
main {
}

section {
    margin-bottom: 20px;
}

.button {
    background: var(--blueToPurpleGradient);
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    padding: 10px 25px;
    border-radius: 50px;
    cursor: pointer;
    margin: 30px;
}

.heading-container {
    margin: 50px auto;
    max-width: 45%;

}

.button-container {
    display: flex;
    justify-content: center;
}

.emoji {
    font-size: 1.7em;
}

.emoji-large {
    font-size: 4em;
}

.profile-image-large {
    width: 500px;
    height: auto;
    border-radius: 10%;
    margin: 0 auto;
    display: block;
}

.text-blue-gradient {
    background: var(--blueToPurpleGradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hero Section Styles */
.hero {
    padding: 10vh 0;
    background-image: url(../images/hero.png);
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-content {
    margin-right: auto;
    margin-left: auto;
    max-width: 1400px;
}

.hero-prefix {
    position: relative;
    font-weight: bold;
    background: var(--blueToPurpleGradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-prefix::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    border-bottom: 1px solid;
    border-image: var(--blueToPurpleGradient) 1;
}

.hero-job-title {
    font-size: 3em;
}

.hero h3 {
    text-align: center;
}

.hero-one-liner-small {
    font-size: 1.1em;
    margin-top: 20px;
}

.hero-one-liner-big {
    font-size: 1.8em;
    margin-top: 20px;
}

/* Text Area Styles*/
.text-area {
    margin: 50px auto;
    max-width: 45%;
    min-height: 200px;
}

.text-heading-container {
    text-align: left;
}

.text-heading {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 25px;
}

.text-content {
    line-height: 1.8;
}

.text-button-container {
    display: flex;
    justify-content: center;
}

.text-button {
    background: var(--blueToPurpleGradient);
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    padding: 10px 25px;
    border-radius: 50px;
    cursor: pointer;
    margin: 30px;
}

/* Tech Section Styles*/
.tech-section-container-default {
    background: var(--blueToPurpleVerticalGradient);
    padding: 50px 0;
    align-content: center;
}

.tech-section-container-blue {
    background: var(--blueToNavyGradient);
    padding: 50px 0;
    align-content: center;
}

.tech-section-container-sunset {
    background: var(--sunset);
    padding: 50px 0;
    align-content: center;
}

.tech-section-header {
    text-align: center;
    text-decoration: underline 2px white;
    margin-bottom: 50px;
    font-size: 2em;
}

.tech-section-content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 70%;
    margin: 0 auto;
}

/* Tech Card Styles */
.tech-card {
    background-color: #2f2f2f;
    padding: 20px;
    border-radius: 10px;
    border: solid 1px white;
    text-align: center;
    width: 200px;
    margin: 10px;
}

.tech-card-main {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.tech-card-icon {
    width: 55px;
    height: auto;
    padding: 10px;
}

.tech-card-techName {
    margin-bottom: 10px;
}

.tech-card-description {
    padding: 10px 0;
    font-size: 0.8em;
}

.tech-card-arrow {
    width: 20px;
    height: 100%;
}

/* Contact Me Section Styles */
#contact-me {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
    align-content: center;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-me-container {

}

.contact-me-container a {
    color: #fff;
}

.contact-me-header {
    font-size: 2em;
    margin: 20px 0;
}

.contact-me-content {

}

.contact-me-text {
    margin-bottom: 25px;
}

.contact-me-bold {
    font-weight: bold;
    font-size: 1.2em;
    margin-right: 25px;
}

.contact-me-image {
    width: 500px;
    height: auto;
    margin-right: auto;
    margin-left: auto;
}

.contact-me-ps-content {
    text-align: center;
    margin-bottom: 25px;
}


/* Footer Styles 
add */
footer {
    text-align: center;
    padding: 20px;
    background-color: black;
    color: #fff;
    bottom: 0;
    width: 100%;
    border-top: 1px solid #7e7e7e;
}

.footer-contact-info {
    margin-right: auto;
    margin-left: auto;
    max-width: 1400px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-media {
    display: flex;
    gap: 10px;
}

.social-media-links {
    display: flex;
    gap: 10px;
}

.social-media a {
    color: #fff;
    margin-right: 10px;
    text-decoration: none;
}

.social-media p {
    margin-right: 20px;
}

.social-link {
    width: 30px;
}

.contact-info {
    display: flex;
}

.contact-info p {
    margin-right: 20px;
}

.contact-info a {
    color: #fff;
    text-decoration: none;
}

.webpage-links {
    margin-top: 25px;
}

.webpage-links a {
    color: #fff;
    text-decoration: none;
    margin-right: 5px;
}

.copyright {
    margin-top: 30px;
}

/* About Me Section Styles */


/* Responsive Styles */

@media screen and (max-width: 930px) {
    .header-job-title,
    .header-divider {
        display: none;
    }
}

/* Tablet */
@media screen and (max-width: 900px) {
    .text-area {
        max-width: 70%;
    }
}

@media screen and (max-width: 730px) {
    .footer-contact-info {
        flex-direction: column;
    }

    .contact-info {
        margin-top: 25px;
    }
    
    .profile-image-large {
        width: 70vw;
        display: block;
        margin: 0 auto;
    }
}

@media screen and (max-width: 650px) {
    .header-name {
        display: none;
    }

    .hero-job-title {
        font-size: 2rem;
    }

    .hero-one-liner-big {
        font-size: 1.3em;
    }

    .hero-one-liner-small {
        font-size: 0.8em;
    }
}

/* Mobile */
@media screen and (max-width: 600px) {

    .text-area {
        max-width: 90%;
        text-align: center;
    }
    
    .text-heading {
        text-align: center;
    }
    
    .contact-me-container {
        align-items: center;
    }
    
    .contact-me-header {
        text-align: center;
    }
    
    .contact-me-content {
        text-align: center;
    }
    
    .contact-me-image {
        width: 80vw;
        display: block;
        margin: 0 auto;
    }
    

    nav ul {
        text-align: center;
    }

    nav ul li {
        display: block;
        margin: 10px 0;
    }
}

@media screen and (max-width: 500px) {

    text {
        font-size: 0.8em;
    }

    .tech-section-header {
        font-size: 1.5em;
    }

    .tech-card {
        font-size: 0.8em;
        padding: 10px;
    }
}

@media screen and (max-width: 430px) {
    .social-media {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-job-title {
        font-size: 8vw;
    }

    .hero-one-liner-big {
        font-size: 1.3em;
    }

    .hero-one-liner-small {
        font-size: 0.8em;
    } 
    
    .contact-me-header {
        font-size: 1.3em;
    }
    
    .contact-me-bold {
        font-size: 1em;
    }
    
}

@media screen and (max-width: 300px) {

    .tech-section-content {
        max-width: 90%;
    }

    .tech-section-header {
        font-size: 8vw;
    }

    .tech-card {
        font-size: 0.8em;
        padding: 10px;
    }

    .tech-card-icon {
        width: 20vw;
    }

    .tech-card-techName {
        font-size: 5vw;
        max-width: 90%;
    }
    
    .contact-me-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        align-content: center;
    }

    .social-media-links {
        gap: normal;

    }

    .contact-info {
        flex-direction: column;
    }
}