@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
* {
    box-sizing: border-box;
}

body{
    background-color: #1a1a2e;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden
}

h1, h2, h4 {
    color: #FF1493;
}

h1 {
    font-size: 45px;
}

h2 {
    font-size: 24px;
}

h3, form {
    color: #c5d0ec;
}

p, li {
    color: #a0a0a0;
    font-size: 18px;
}

#mobileNav {
    display: none;
}

#main-container {
    display: flex;
    justify-content: space-between;
    margin: 80px;
    gap: 250px;
    align-items: flex-start;
}

#left-column {
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 80px;
}

#left-column h1 {
    margin: 15px 0;
}

#left-column h2 {
    margin: 0;
}

#tagline p {
    margin: 40px 0 30px 0;
}

#icons {
    margin-bottom: 40px;
}

i {
    background-color: #c5d0ec;
    color:#1a1a2e;
    font-size: 30px;
    padding: 0;
    margin: 5px;
}

#links a {
    text-transform: uppercase;
    letter-spacing: .08em;
    display: inline-block;
    transition: color 0.3s ease-out, font-weight 0.3s ease-out, transform 0.5s ease-out; 
}

#links a:hover {
    color: #FF1493;
    text-decoration: none;
    font-weight: bold;
    transform: translateX(5px);
}

#profile-photo {
    width: 200px;
    border-radius: 100px;
    margin-top: 10px;
    margin-bottom: 10px;
}

#right-column {
    flex-grow: 2;
}

#skills, #portfolio, #services, #contact {
    padding-top: 45px;
}

#right-column h2 {
    letter-spacing: .08em;
}

#right-column p {
    line-height: 1.5;
}

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

a {
    text-decoration: none;
    color: #c5d0ec;
    font-size: 20px;
}

a:hover {
    color: #dfe5ec;
    text-decoration: underline;
}

.projects {
    display: flex;
    justify-content: space-evenly;
}

.image-placeholder {
    background-color: #a0a0a0;
    height: 100px;
}

.image-placeholder:hover {
    background-color: #FF1493;
    opacity: .2;
}

#service-div-container {
    display: flex;
    flex-direction: column;
}

#contact form {
    border: .1px solid #FF1493;
    border-radius: 10px;
    padding: 20px;
    color: #c5d0ec;
}
 #contact label {
    display: block;
    margin-bottom: 8px;
 }

#contact input, #contact select, #contact textarea {
    font-family: 'Inter', sans-serif;
    background-color: #0f0f23;
    color: #c5d0ec;
    border: 1px solid rgba(255, 20, 147, 0.3);
    border-radius: 10px;
    padding: 10px;
    width: 100%;
    outline: none;
}

#contact textarea {
    min-height: 120px;
    resize: vertical;
}

#contact input:focus, #contact select:focus, #contact textarea:focus {
    border: 1px solid #FF1493;
}

.form-div {
    padding-top: 10px;
}

#errorMessage, #successMessage {
    display: none;
    color:#cc0f78;
    margin-top: 10px;
}

#contact button {
    background-color: #FF1493;
    color: #c5d0ec;
    border: none;
    border-radius: 10px;
    padding: 10px 20px;
    letter-spacing: .08em;
}

#contact button:hover {
    background-color: #ff6b6b;
}

@media (max-width: 850px) {
    #links {
        display: none;
    }
    #mobileNav {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        position: sticky;
        top: 0;
        width: 100%;
        background-color: #1a1a2e;
        z-index: 100;
        padding: 10px 15px;
    }

    #hamburgerButton {
        background-color: #1a1a2e;
        color:#FF1493;
        font-size: 44px;
        border: none;
    }

    #mobileNavLinks {
        display: none;
    }

    #mobileNavLinks.open {
        display: flex;
        flex-direction: column;
        padding: 10px;
    }

    #main-container {
        flex-direction: column;
        margin: 20px 15px;
        gap: 20px;
        max-width: 100%;
        overflow-x: hidden;
    }

    #left-column {
        width: 100%;
        position: unset;
        text-align: center;
        align-items: center;
    }

    #profile-photo {
        display: block;
        margin: 0 auto;
    }

    #contact form {
        padding: 10px;
    }

    #about, #skills, #portfolio, #services, #contact {
        scroll-margin-top: 50px;
    }

}

