/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
    font-size: 14px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: white;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 300px;
    grid-template-rows: auto 1fr;
    grid-template-areas: 
        "header header"
        "main sidebar";
}

/* Header styles */
header {
    grid-area: header;
    background-color: #4b2e83;
    padding: 20px 30px;
}

.page-title {
    color: white;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0;
}

/* Main content area */
.profile-section {
    grid-area: main;
    display: flex;
    padding: 30px;
    gap: 30px;
}

.profile-image {
    flex-shrink: 0;
}

.faculty-photo {
    width: 250px;
    height: 350px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}



.profile-content {
    flex: 1;
    max-width: 600px;
}

/* Name section */
.name-section {
    margin-bottom: 30px;
}

.faculty-name {
    color: #4b2e83;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.position {
    color: #666;
    font-size: 16px;
    margin-bottom: 4px;
    font-weight: 600;
}

.endowed-position {
    color: #8B4513;
    font-size: 14px;
    font-style: italic;
}

/* Section headings */
h3 {
    color: #666;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    margin-top: 25px;
    text-transform: uppercase;
}

/* Education section */
.education-list {
    list-style: none;
    margin-bottom: 20px;
}

.education-list li {
    margin-bottom: 8px;
    color: #333;
    font-size: 14px;
}

/* Expertise section */
.expertise-list {
    list-style: none;
    margin-bottom: 20px;
}

.expertise-list li {
    margin-bottom: 6px;
}

.expertise-link {
    color: #1e88e5;
    text-decoration: none;
    font-size: 14px;
}

.expertise-link:hover {
    text-decoration: underline;
}

/* Publications section */
.publications-section {
    margin-top: 25px;
}

/* Additional sections */
.honors-section,
.courses-section,
.collaborators-section {
    margin-top: 25px;
}

.publication {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.publication:last-child {
    border-bottom: none;
}

.publication-title {
    color: #1e88e5;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
}

.publication-title:hover {
    text-decoration: underline;
}

.publication-details {
    color: #666;
    font-size: 13px;
    line-height: 1.5;
}

/* Sidebar styles */
.contact-info {
    grid-area: sidebar;
    background-color: #f5f5f5;
    padding: 30px 25px;
    border-left: 1px solid #ddd;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    margin-bottom: 15px;
    font-size: 13px;
    line-height: 1.4;
}

.contact-label {
    color: #8B7355;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.email-link {
    color: #1e88e5;
    text-decoration: none;
}

.email-link:hover {
    text-decoration: underline;
}

.linkedin-link {
    color: #1e88e5;
    text-decoration: none;
    font-size: 16px;
}

/* Featured Research section */
.featured-research h3 {
    color: #8B7355;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.research-list {
    list-style: none;
}

.research-list li {
    margin-bottom: 12px;
}

.research-link {
    color: #1e88e5;
    text-decoration: none;
    font-size: 13px;
    line-height: 1.4;
    display: block;
}

.research-link:hover {
    text-decoration: underline;
}

/* Additional lists styles */
.honors-list,
.courses-list,
.collaborators-list {
    list-style: none;
    margin-bottom: 20px;
}

.honors-list li,
.courses-list li,
.collaborators-list li {
    margin-bottom: 8px;
    color: #333;
    font-size: 14px;
    line-height: 1.4;
}

.honor-link,
.collaborator-link {
    color: #1e88e5;
    text-decoration: none;
    font-size: 14px;
}

.honor-link:hover,
.collaborator-link:hover {
    text-decoration: underline;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        grid-template-columns: 1fr;
        grid-template-areas: 
            "header"
            "main"
            "sidebar";
    }
    
    .profile-section {
        flex-direction: column;
        padding: 20px;
    }
    
    .faculty-photo {
        width: 200px;
        height: 280px;
        align-self: center;
    }
    
    .contact-info {
        border-left: none;
        border-top: 1px solid #ddd;
        padding: 20px;
    }
    
    .page-title {
        font-size: 24px;
    }
    
    .faculty-name {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .profile-section {
        padding: 15px;
    }
    
    .faculty-photo,
    .faculty-photo-placeholder {
        width: 150px;
        height: 210px;
    }
    
    .page-title {
        font-size: 20px;
    }
    
    .faculty-name {
        font-size: 20px;
    }
} 