/* Global Styles */
body {
    font-family: sans-serif;
    font-size: 20px;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    background-color: #fff;
}

a {
    text-decoration: none;
    color: #007bff;
    /* Standard link color, can be adjusted */
}

a:hover {
    text-decoration: underline;
}

ul {
    padding-left: 20px;
}

li {
    margin-bottom: 10px;
}

/* Container for centering content */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    /* Default center for this user's style */
}

/* Headings */
h1,
h2,
h3 {
    font-weight: normal;
    color: #666;
    margin-top: 20px;
    margin-bottom: 20px;
}

h3 {
    margin-top: 5%;
}

/* Paragraphs */
p {
    margin-bottom: 15px;
}

/* Specific Classes from index.html */
.bio-text {
    font-family: "Georgia", serif;
    font-style: italic;
    color: #222;
    padding: 10px;
    margin: 20px auto;
    /* Centered with margin */
    max-width: 600px;
    /* Limit width for readability */
}

.profile-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

/* Social Icons */
.social-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    /* Space between icons */
    margin: 20px 0;
}

.social-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    /* Make them circular if they aren't already */
    transition: transform 0.2s;
}

.social-icon:hover {
    transform: scale(1.1);
}

/* Helper Classes */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

/* Mobile Adjustments */
@media (max-width: 600px) {
    body {
        font-size: 18px;
        /* Slightly smaller text on mobile */
    }

    .container {
        padding: 15px;
        width: 100%;
        box-sizing: border-box;
    }

    .bio-text {
        width: 100%;
        /* Full width on mobile */
        padding: 0 10px;
        box-sizing: border-box;
    }

    h3 {
        margin-top: 10px;
    }
}

/* Project Grid for college_projects.html */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 10px;
    justify-items: center;
}

.project-item {
    width: 100%;
    max-width: 500px;
    text-align: center;
    margin-bottom: 20px;
}

.project-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    /* Optional rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.project-title {
    display: block;
    margin-top: 10px;
    font-weight: bold;
    color: #007bff;
}