:root {
    --bg-color: #1a1a1a;
    --text-color: #ffffff;
    --secondary-text: #9699a8;
    --link-hover: #0f172a;
    --btn-bg: #397994;
    --btn-color: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    margin: 0;
}
body {
    font-family: Arial, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    display: flex;
    justify-content: center;
    /* align-items: flex-start; */
    min-height: 100vh;
    padding: 16px;
}

.portfolio-container {
    margin-top: 100px;
    max-width: 700px;
    border-radius: 8px;
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
    padding: 24px;
  
}

.portfolio-header {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 16px;
}

.profile-photo img {
    padding: 0;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
}

.profile-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.profile-info-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
}

.profile-info-centered h1 {
    margin-bottom: 24px;
    font-family: "Cinzel", serif;
    font-weight: 600;
    font-size: 3rem;
}

.profile-info-centered .socials {
    display: flex;
    gap: 24px;
    margin-bottom: 16px;
}

.profile-info-centered button {
    margin-top: 8px;
}

.profile-info h1 {
    font-size: 2rem;
}

.location {
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: var(--secondary-text);
    margin-top: 4px;
    gap: 8px;
}

.about p {
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: var(--secondary-text);
    line-height: 1.6;
}

button {
    display: flex;
    align-items: center;
    gap: 10px; 
    padding: 8px 17px;
    border: 1px solid #000;
    border-radius: 6px;
    background-color:  var(--btn-bg);
    color: var(--btn-color);
    font-size: 17px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

button:hover {
    background-color: #171717;
}

button svg {
    width: 20px;
    height: 20px;
}

.contact-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 17px;
    border: 1px solid #000;
    border-radius: 6px;
    background-color:  var(--btn-bg);
    color: var(--btn-color);
    font-size: 17px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    text-decoration: none;
}

.contact-button:hover {
    background-color: #171717;
}

.contact-button svg {
    width: 20px;
    height: 20px;
}

.socials{
    flex-basis: auto;
}

.socials a{
    text-decoration: none;
    font-size: 25px;
    /* margin-right: 15px; */
    display: inline-block;
    transition: transform 0.5s, color 0.5s;
}

.fa-solid.fa-file{
    color: #ffffff;
    transition: color 0.5s;
}
.fa-brands.fa-github{
    color: #ffffff;
    transition: color 0.5s;
}
.fa-brands.fa-linkedin{
    color: #ffffff;
    transition: color 0.5s;
}
.fa-brands.fa-x-twitter{
    color: #ffffff;
    transition: color 0.5s;
}

.socials a:hover{
    color: #fff;
    transform: translateY(-5px);
}
.socials a:hover .fa-solid.fa-file{
    color: var(--btn-bg);
}
.socials a:hover .fa-brands.fa-github{
    color: #5e3efe;
}
.socials a:hover .fa-brands.fa-linkedin{
    color: #0A66C2;
}
.socials a:hover .fa-brands.fa-x-twitter{
    color: #1DA1F2;
}

@media (min-width: 769px) {
    .socials-mobile {
        display: none;
    }
}

/* @media (max-width: 768px) {
    .portfolio-container {
        padding: 16px;
        margin-top: 50px;
    }

    .profile-photo img {
        width: 100px;
        height: 100px;
    }

    .profile-info h1 {
        font-size: 1.5rem;
    }

    .location {
        font-size: 0.9rem;
    }

    .about p {
        font-size: 1rem;
    }

    .socials a {
        font-size: 26px;
    }

    /* button {
        font-size: 15px;
        padding: 6px 12px;
    }

    .contact-wrapper {
        display: flex;
        flex-direction: row;
        gap: 16px;
        justify-content: flex-start;
        align-items: center;
    }
} */

/* @media (max-width: 480px) {
    .profile-header {
        flex-direction: column;
        align-items: center;
    }

    .profile-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .socials a {
        font-size: 20px;
        margin: 0 10px;
    }

    .contact-wrapper {
        display: flex;
        flex-direction: row;
        gap: 10px;
        justify-content: flex-start;
        align-items: center;
    }

    .socials {
        display: flex;
    }

    .socials-mobile {
        margin-left: 20px;
        gap: 10px;
    }

    .socials-mobile a {
        font-size: 25px;
        margin-left: 20px;
    }
} */