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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #000000;
    background: #4db6ac url('./Imgs/leaf.svg') repeat;  
    background-size: 200px 200px;  
}

/* Navigation Styles */
header {
    color: black;
    background-color: #093824;
    padding: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.site-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-left: 2rem;
}

nav {
    margin-right: 2rem;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

nav a:hover, nav a.active {
    color: #4db6ac;
}

/* Home Page Styles */
.home-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4rem;
}

.resume-layout {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
}

.resume-commentary {
    flex: 0 0 calc(30% - 2rem);
    background-color: #D9D9D9;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.resume-commentary h3 {
    color: #093824;
    margin-bottom: 1rem;
    border-bottom: 2px solid #4db6ac;
    padding-bottom: 0.5rem;
}

.resume-commentary a {
    display: inline-block;
    background-color: #093824;
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
}

.resume-commentary a:hover {
    background-color: #4db6ac;
}

.left-commentary,
.right-commentary {
    min-height: 250px;
}

.resume-image {
    flex: 0 0 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.resume-image img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.profile-container {
    display: flex;
    align-items: center;
    justify-content: flex-start; 
    background-color: #D9D9D9;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    max-width: 800px;
    width: 100%;
    gap: 2rem; 
}

.profile-image img {
    border-radius: 50%;
    max-width: 150px;
    height: auto; 
    margin-right: 2rem;
    object-fit: cover;
}

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

/* Social Icons Styles */
.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

.social-link {
    display: inline-block;
    color: #1b3c6c;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link img {
    width: 24px;
    height: 24px;
}
a
.social-link:hover img {
    fill: #4db6ac;
}

.about-container {
    background-color: #D9D9D9;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    padding: 2rem;
    max-width: 800px;
    width: 100%;
    margin-top: 2rem;
    text-align: center;
}

.about-container h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.about-image-container {
    display: flex;
    align-items: center;
    background-color: #D9D9D9;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    padding: 2rem;
    max-width: 800px;
    width: 100%;
    margin-top: 2rem;
    gap: 2rem;
}

.about-image-container img {
    border-radius: 50%;
    max-width: 150px;
    height: 150px;
    object-fit: cover;
}

.about-image-text {
    flex-grow: 1;
}

.right-image {
    flex-direction: row;
}

.right-image img {
    order: -1; 
}

.project-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}
.project-card img {
    width: 100%; 
    height: 200px; 
    object-fit: cover; 
    border-radius: 10px; 
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); 
}


/* Footer Styles */
@media (min-width: 768px) {
    .site-name {
        width: auto;
        text-align: left;
    }

    nav {
        width: auto;
    }

    .profile-container {
        flex-direction: row;
        text-align: left;
    }

    .about-image-container {
        flex-direction: row;
        text-align: left;
        gap: 2rem;
    }

    .about-image-container img {
        max-width: 40%;
        margin-bottom: 0;
    }

    .about-image-text {
        width: 60%;
    }

    .right-image {
        flex-direction: row-reverse;
    }
}

/* Footer Styles */
footer {
    background-color: #093824;
    color: white;
    text-align: center;
    padding: 1rem;
}

footer a {
    color: #4db6ac;
    text-decoration: none;
}