img {
    max-width: 100%;
    height: auto;
    display: block;
}

body {
    background-color: beige;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    margin: 0;
    padding: 20px;
}

.logo_nav_bar {
    display: flex;
    justify-content: center;
    align-items: center;

    background-color: white;
    border: 1px solid #ccc;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);

    padding: 15px 0;
    margin-bottom: 40px;
}

.logo_nav_bar img {
    height: 80px; 
    width: auto;
}

.featured-photo {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;

    background-color: white;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);

    padding: 40px;
    margin-bottom: 40px;
}    

.feature-title{
    flex: 1;
    padding-right: 20px;
}

.feature-title h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
    margin-top: 0;
}

.feature-title p {
    font-size: 1.2rem;
    color: #666;
    margin: 0;
}


.previousProjects-container {
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin-bottom: 40px;
}

.skills-auto-container {
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin-bottom: 40px;
}


.featured-item {
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center; 
    margin-bottom: 40px;
}

.featured-item img {
    max-width: 300px;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.project-item{
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;

    border: 1px solid #ccc;
    background-color: white;
    border-radius: 8px;
    justify-content: flex-start;
    align-items: center;
    padding: 20px;

    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}


.skills-auto-item {
    display: flex;
    flex-direction: column;
    flex: 1;

    background-color: white;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);

    padding: 30px;
}

.skills-auto-item h1 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: #333;
    border-bottom: 2px solid #0056b3;
    display: inline-block;
    padding-bottom: 5px;
}

.nav-item {
    display: flex;
    flex: 1;
    border-style: solid;
    border-width: 2px;
    border-color: rgb(26, 22, 22);
    justify-content: center;
    align-items: center; 
}


.project-pictures{
    margin: auto;
}


.skill-list{
    width: 100%;
    text-align: left;
}

.skill-entry{
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    display: flex;
    flex-direction: column;
}

.skill-entry:last-child{
    border-bottom: none;
}

.skill-name{
    font-weight: bold;
    font-size: 1.1rem;
    color: #0056b3;
    margin-bottom: 4px;
}

.skill-desc {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.4;
}

.bio-content{
    text-align: left;
    padding: 0 10px;
}

.bio-content p{
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

.bio-content strong {
    color: #0056b3;
}

.site-footer{
    background-color: white;
    border-top: 1px solid #ccc;
    margin-top: 60px;
    padding: 40px 20px;
}

.footer-content{
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 40px;
}

.footer-logo img {
    height: 80px;
    width: auto;
    opacity: 0.8;
}

.footer-info p{
    margin: 5px 0;
    font-size: 0.95rem;
    color: #555;
}

