/* General page styling */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
    color: black;
    margin: 40px;
    padding: 0;
}

/* Two-column layout */
.container {
    display: flex;
    flex-direction: row;
    gap: 40px; /* Adds space between columns */
    max-width: 900px;
    margin: auto;
}

/* Left column (photo & contact info) */
.left-column {
    width: 35%;
    text-align: left;
    padding-left: 0px;
    margin-left: -20px;
}

.left-column a {
    color: black; /* Change link color to black */
    text-decoration: none; /* Remove underline */
    font-weight: bold; /* Optional: Make it stand out */
}

.left-column a:hover {
    text-decoration: underline; /* Underline on hover */
}

/* Profile image styling */
.profile-img {
    width: 100%;
    max-width: 150px;
    border-radius: 50%; /* Testing this addition */
    margin-bottom: 15px; /* Testing this addition */
    display: flex; /* Testing this addition */
    flex-direction: column; /* Testing this addition */
    align-items: flex-start; /* Ensures image and text align to the left */
}

/* Contact information */
.contact-info {
    font-size: 16px;
    line-height: 1.5;
}

/* Right column (bio & content) */
.right-column {
    width: 65%;
    text-align: left;
}

/* Headings and text */
h1, h2 {
    font-weight: bold;
    margin-bottom: 10px;
}

p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Links */
a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Navigation Bar - Simple & Clean */
.navbar {
    width: 20%; /* Match the left column width */
    margin: 0 auto 20px auto; /* Centers the navbar horizontally */
    font-size: 18px;
    text-align: center; /* Centers the links inside the navbar */
    padding-bottom: 20px; /* Adds extra space below navbar */
}

/* Navigation Links */
.navbar a {
    text-decoration: none; /* Removes underline by default */
    color: black;
    margin-right: 15px; /* Adds spacing between links */
}

.navbar a:hover {
    text-decoration: underline; /* Underlines links on hover */
}

/* Responsive layout for small screens */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .left-column, .right-column {
        width: 100%;
        text-align: center;
    }
}