body{
    background-color: Linen;
}

.container.my-5 {
    margin-bottom: 0 !important;
    text-align: left;
    font-family: 'Courier New', monospace;
}

.header-section {
    display: flex;
    align-items: center; /* within text vert orientation*/
    justify-content: left;
    gap: 20px;
    margin-bottom: 20px;
}

.header-section h2 {
    margin: 0;
}

.divider {
    width: 2px;
    height: 30px;
    background-color: #333;
    a
}

.col-links {
    display: flex;
    justify-contenjustify-contentt: center;
    gap: 30px;
    font-size: 15px;
}

.col-links a {
    color: #999;
    text-decoration: none;
    transition: all 0.2s ease;
}

.col-links a:hover {
    color: #000; 
}

.container.my-5 .col-lg-8{
    text-align: left;
    font-size: 15px;
}

.container.my-5 .col-lg-8 a {
    color: #999;
    text-decoration: none;
    transition: all 0.2s ease;
}

.container.my-5 .col-lg-8 a:hover {
    color: #000;
}

.intro-section {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

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

.section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;}

.section:last-child {
    border-bottom: none;
}

.section h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #666;
}

/*technical projects page*/
.coursework-section {
    margin-bottom: 40px;
}

.coursework-section p {
    line-height: 1.6;
}

.projects-header {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 25px;
    color: #000;
}

.projects-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.project-box {
    display: flex;
    gap: 20px;
    padding: 20px;
    border: 1px solid #ddd;
    background-color: #fafafa;
}

.project-text {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-box h4 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #000;
}

.project-box p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 10px;
    color: #333;
}

.project-box .skills {
    font-size: 13px;
    color: #666;
    margin-top: auto;
    margin-bottom: 0;
    align-items: center;
}

.project-media {
    width: 300px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-media iframe {
    width: 100%;
    height: 200px;
}

.project-media img {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
}

.media-placeholder {
    width: 100%;
    height: 200px;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 14px;
}

/* Responsive: stack on smaller screens */
@media (max-width: 768px) {
    .project-box {
        flex-direction: column;
    }
    
    .project-media {
        width: 100%;
    }
}

