/* AI Copilot used throughout the style sheet, adding categories and style options. Some values still entered manually.*/
body {
    background-color: #f3f4f6;
    font-family: sans-serif;
    line-height: 1.25;
    color: #4b5563;
    margin: 0;
    padding: 0;
}
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}
.header {
    background-color: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
    padding: 2.5rem;
    margin-bottom: 2rem;
}
.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.profile-photo {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    margin-bottom: 1.5rem;
}
.name {
    font-size: 2.25rem;
    font-weight: bold;
    color: #1d4ed8;
    margin: 0;
}
.title {
    font-size: 1.125rem;
    color: #374151;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}
.contact-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.contact-link {
    color: #4b5563;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}
.contact-link:hover {
    color: #2563eb;
    text-decoration: underline;
}
.label {
    font-weight: 600;
}
.main-content {
    padding-bottom: 2rem;
}
.section {
    background-color: #ffffff;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}
.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #374151;
    border-bottom: 2px solid #3b82f6;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}
.section-text {
    color: #4b5563;
}
.education-entry {
    margin-bottom: 1rem;
}
.education-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}
.education-degree {
    font-size: 1rem;
    color: #4b5563;
    margin: 0;
}
.education-date {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
}
.projects-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.project-button {
    display: block;
    background-color: #3b82f6;
    color: #ffffff;
    text-align: center;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.2s ease-in-out;
}
.project-button:hover {
    background-color: #2563eb;
}
.skills-list {
    list-style-type: none;
    padding: 0;
}
.skills-list li {
    margin-bottom: 0.5rem;
}
.skill-label {
    color: #1f2937;
}
.footer {
    padding: 1rem;
    text-align: center;
    color: #6b7280;
    font-size: 0.875rem;
}
.back-link {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}
.back-link:hover {
    text-decoration: underline;
}
.project-title {
    font-size: 2.25rem;
    font-weight: bold;
    color: #1f2937;
    margin-top: 1rem;
}
.project-section {
    background-color: #ffffff;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}
.project-figure {
    margin-bottom: 1.5rem;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.project-image {
    width: 100%;
    height: auto;
    display: block;
}
.project-caption {
    padding: 0.5rem;
    text-align: center;
    font-size: 0.875rem;
    color: #6b7280;
}
.section-text {
    color: #4b5563;
}
.skills-list {
    list-style-type: disc;
    padding-left: 1.25rem;
    color: #4b5563;
}
@media (min-width: 768px) {
    .header-content {
        flex-direction: row;
        text-align: left;
        gap: 2rem;
    }
    .profile-photo {
        margin-bottom: 0;
    }
    .contact-nav {
        flex-direction: row;
        gap: 1.5rem;
    }
    .project-title {
        font-size: 3rem;
    }

}

