/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    font-size: 16px;
    font-weight: 400;
}


/* Container */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Header Section */
.header {
    margin-bottom: 40px;
}

.profile-section {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.profile-image {
    flex-shrink: 0;
}

.profile-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.profile-info {
    flex: 1;
}

.name {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
    font-family: 'JetBrains Mono', monospace;
}

.title {
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 4px;
    font-weight: 500;
}

.location {
    font-size: 1rem;
    color: #9ca3af;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 1.1rem;
}

.social-link:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-2px);
}

/* Main Content */
.main-content {
    max-width: 700px;
}

section {
    margin-bottom: 40px;
}

h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 15px;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 8px;
    font-family: 'JetBrains Mono', monospace;
}

p {
    margin-bottom: 15px;
    color: #4b5563;
    line-height: 1.7;
}

.link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.link:hover {
    text-decoration: underline;
}

/* Publications */
.publication {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f3f4f6;
}

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

.pub-title {
    font-weight: 500;
    color: #1f2937;
    margin-bottom: 5px;
    line-height: 1.4;
}

.pub-authors {
    color: #6b7280;
    margin-bottom: 3px;
    font-size: 0.95rem;
}

.pub-venue {
    color: #374151;
    font-weight: 500;
    margin-bottom: 8px;
    font-style: italic;
}

.pub-links {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.pub-links .link {
    font-size: 0.9rem;
}

/* Press */
.press-item {
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f9fafb;
}

.press-item:last-child {
    border-bottom: none;
}

.press-title {
    font-weight: 500;
    color: #1f2937;
    margin-bottom: 3px;
    line-height: 1.4;
}

.press-source {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 0;
    font-style: italic;
}

/* Footer */
.footer {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
    text-align: center;
}

.footer p {
    color: #9ca3af;
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 30px 15px;
    }
    
    .profile-section {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .profile-photo {
        width: 120px;
        height: 120px;
    }
    
    .name {
        font-size: 2rem;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 20px 10px;
    }
    
    .name {
        font-size: 1.8rem;
    }
    
    .title {
        font-size: 1.1rem;
    }
    
    .profile-photo {
        width: 100px;
        height: 100px;
    }
    
    h2 {
        font-size: 1.3rem;
    }
    
    .pub-links {
        font-size: 0.85rem;
    }
    
    .press-source {
        font-size: 0.85rem;
    }
}
