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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #000;
    background-color: #fff;
    font-weight: 300;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #fff;
    z-index: 1000;
    border-bottom: 1px solid #000;
}

.nav-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.nav-logo h2 {
    color: #000;
    font-weight: 400;
    font-size: 1.2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #000;
    font-weight: 300;
    transition: opacity 0.3s ease;
}

.nav-link:hover {
    opacity: 0.6;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 1px;
    background-color: #000;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: #fff;
}

.hero-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 300;
    color: #000;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #000;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.hero-description {
    font-size: 1rem;
    color: #000;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 12px 24px;
    border-radius: 0;
    text-decoration: none;
    font-weight: 300;
    transition: all 0.3s ease;
    display: inline-block;
    border: 1px solid #000;
}

.btn-primary {
    background: #000;
    color: #fff;
}

.btn-primary:hover {
    background: #fff;
    color: #000;
}

.btn-secondary {
    background: #fff;
    color: #000;
    border: 1px solid #000;
}

.btn-secondary:hover {
    background: #000;
    color: #fff;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.placeholder-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 4rem;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-alt {
    background: #f8f8f8;
}

.section-title {
    font-size: 2rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 1rem;
    color: #000;
}

.section-description {
    text-align: center;
    font-size: 1rem;
    color: #000;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

/* CV Section */
.cv-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-top: 2rem;
}

.cv-sidebar {
    background: #fff;
    padding: 2rem;
    border: 1px solid #000;
    height: fit-content;
}

.cv-main {
    background: #fff;
    padding: 2rem;
    border: 1px solid #000;
}

.cv-section {
    margin-bottom: 2rem;
}

.cv-section h3 {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #000;
    border-bottom: 1px solid #000;
    padding-bottom: 0.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #000;
}

.contact-item i {
    color: #000;
    width: 20px;
}

.skill-item {
    margin-bottom: 1rem;
}

.skill-item span {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.skill-bar {
    height: 4px;
    background: #f0f0f0;
    border-radius: 0;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: #000;
    border-radius: 0;
    transition: width 0.3s ease;
}

.timeline-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.timeline-date {
    font-weight: 300;
    color: #000;
    min-width: 120px;
}

.timeline-content h4 {
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: #000;
}

.timeline-content p {
    color: #000;
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.publication-item {
    margin-bottom: 1rem;
}

.publication-item h4 {
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: #000;
}

.publication-item p {
    color: #000;
    font-weight: 300;
}

/* Design Section */
.design-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.design-item {
    background: #fff;
    border: 1px solid #000;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.design-item:hover {
    transform: translateY(-2px);
}

.design-image {
    width: 60px;
    height: 60px;
    border-radius: 0;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.design-content h3 {
    font-weight: 400;
    margin-bottom: 1rem;
    color: #000;
}

.design-content p {
    color: #000;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.design-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    background: #000;
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 0;
    font-size: 0.875rem;
    font-weight: 300;
}

/* Research Section */
.research-grid {
    display: grid;
    gap: 2rem;
}

.research-item {
    background: #fff;
    border: 1px solid #000;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.research-item:hover {
    transform: translateY(-2px);
}

.research-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.research-header h3 {
    font-weight: 400;
    color: #000;
    flex: 1;
}

.research-status {
    padding: 0.25rem 0.75rem;
    border-radius: 0;
    font-size: 0.875rem;
    font-weight: 300;
    margin-left: 1rem;
    background: #000;
    color: #fff;
}

.research-description {
    color: #000;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-weight: 300;
}

.research-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.research-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #000;
    text-decoration: none;
    font-weight: 300;
    transition: opacity 0.3s ease;
}

.research-link:hover {
    opacity: 0.6;
}

/* Data Section */
.data-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
}

.data-category h3 {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: #000;
}

.data-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.data-item {
    background: #fff;
    border: 1px solid #000;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: transform 0.3s ease;
}

.data-item:hover {
    transform: translateY(-2px);
}

.data-icon {
    width: 50px;
    height: 50px;
    border-radius: 0;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.data-content h4 {
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: #000;
}

.data-content p {
    color: #000;
    margin-bottom: 1rem;
    font-weight: 300;
}

.data-meta {
    display: flex;
    gap: 1rem;
}

.data-size,
.data-format,
.data-lang,
.data-license {
    font-size: 0.875rem;
    padding: 0.25rem 0.75rem;
    border-radius: 0;
    font-weight: 300;
    background: #000;
    color: #fff;
}

/* Footer */
.footer {
    background: #000;
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-weight: 400;
    margin-bottom: 1rem;
    color: #fff;
}

.footer-section p {
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 300;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.social-link:hover {
    opacity: 0.6;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
    font-weight: 300;
}

.footer-links a:hover {
    opacity: 0.6;
}

.footer-bottom {
    border-top: 1px solid #fff;
    padding-top: 1rem;
    text-align: center;
    color: #fff;
    font-weight: 300;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        border-bottom: 1px solid #000;
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .cv-container {
        grid-template-columns: 1fr;
    }
    
    .design-grid {
        grid-template-columns: 1fr;
    }
    
    .data-grid {
        grid-template-columns: 1fr;
    }
    
    .research-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .research-status {
        margin-left: 0;
        margin-top: 0.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 200px;
        text-align: center;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Simple animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section {
    animation: fadeInUp 0.6s ease-out;
} 