footer {
    text-align: center;
    padding: 10px;
    font-size: 14px;
    color: #555;
}

.link {
    color: inherit;
    font-weight: bold;
    text-decoration: #007bff;
    
}

footer a {
    color: inherit;
    text-decoration: none;
    font-weight: bold;
}

footer a:hover {
    text-decoration: underline;
}

.timeline-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 5px;
    border-radius: 10px;
    background-color: gray;
    flex-grow: 1;
}

.year-marker {
    position: absolute;
    left: -25px;
    font-size: 0.8rem;
    font-weight: bold;
    color: white;
    background-color: gray;
    padding: 2px 6px;
    border-radius: 5px;
    z-index: 1;
}

.year-2025 { top: 10%; }
.year-2024 { top: 55%; }
.year-2023 { top: 90%; }
.year-2022 { top: 100%; }

.job-info {
    display: flex;
    gap: 0.5rem;
    align-items: baseline;
}

.job-location {
    font-size: 0.8rem;
    color: gray;
}

.job-date {
    color: gray;
    font-size: 0.7rem;
}

#nav-bar {
    position: sticky;
    top: 0;
    background-color:#48536B;
    border-radius: 1rem;
    padding:0rem 3rem;
    margin:1rem;
    z-index: 2;
    opacity: 0.9;
    transition: transform 0.5s ease-in-out;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-left: 2rem;
}

.social-icons a {
    display: inline-block;
    width: 32px;
    height: 32px;
    color: inherit;
    transition: transform 0.2s ease-in-out;
}

.social-icons a:hover {
    transform: scale(1.1);
    color: #4e82b9;
}

.nav-link {
    color: inherit;
    transition: transform 0.2s ease-in-out;
}

.nav-link:hover {
    transform: scale(1.1);
    color: #4e82b9;
    text-decoration: none;
}

.social-icons svg {
    width: 100%;
    height: 100%;
}

:target {
    scroll-margin-top: 1rem;
}

.project-tech {
    max-width: 3rem;
    border-radius: 10%;
}

.project-details p {
    font-size: 0.7rem;
}

.project-details h6 {
    margin-bottom: 1rem;
}

.project-details {
    margin-right: 2rem;
}

#headshot {
    max-height: 22rem;
    margin-top:auto;
    margin-left:auto;
    border-radius: 10%;
}

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

@media (max-width: 768px) {
    #nav-bar {
        display: none;
    }

    footer {
        display:flex;
        align-items: center;
        justify-content: center;
    }

    #headshot {
        margin-left: 3rem;
    }
}

