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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e0e0e0;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-logo a {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-logo a:hover {
    color: #1d4ed8;
}

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

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #2563eb;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2563eb;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

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

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    width: 100%;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-title .highlight {
    color: #f1f5f9;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.8;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background: #3b82f6;
    color: white;
}

.btn-primary:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: #333;
    transform: translateY(-2px);
}

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

/* Sections */
.section {
    padding: 5rem 0;
}

.bg-light {
    background: #f8fafc;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
    color: #1f2937;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #2563eb;
    border-radius: 2px;
}

/* About Section */
.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4b5563;
}

.skills {
    margin-top: 2rem;
}

.skills h3 {
    margin-bottom: 1rem;
    color: #1f2937;
}

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

.tag {
    background: #e0e7ff;
    color: #3730a3;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Books Section */
.books-section {
    background: #f8fafc;
}

.books-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.book-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.book-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.book-image {
    width: 120px;
    height: 180px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
}

.book-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.book-image i {
    font-size: 2rem;
    color: white;
}

.book-image .book-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.2;
}

/* Book spine effect for placeholder */
.book-image::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 8px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.1) 100%);
    border-radius: 8px 0 0 8px;
}

/* Different colors for different books */
.book-image.neurodiversity {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
}

.book-image.alt-ac {
    background: linear-gradient(135deg, #dc2626, #ef4444);
}

.book-image.translation {
    background: linear-gradient(135deg, #059669, #10b981);
}

.book-image.pedagogue {
    background: linear-gradient(135deg, #ea580c, #f97316);
}

.book-image.breathe {
    background: linear-gradient(135deg, #0891b2, #06b6d4);
}

.book-image.laferriere {
    background: linear-gradient(135deg, #7c2d12, #a3612b);
}

.book-image.hebert {
    background: linear-gradient(135deg, #be185d, #db2777);
}

.book-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.book-authors {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
    margin-bottom: 1rem;
}

.book-description {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.book-details {
    margin-bottom: 1.5rem;
}

.publisher {
    background: #f3f4f6;
    color: #374151;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

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

.btn-outline {
    padding: 0.5rem 1rem;
    border: 1px solid #2563eb;
    color: #2563eb;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #2563eb;
    color: white;
}

/* Publications Section */
.publications-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.publication-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.publication-item:hover {
    transform: translateY(-5px);
}

.publication-year {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2563eb;
    text-align: center;
    padding: 0.5rem;
    background: #eff6ff;
    border-radius: 8px;
    height: fit-content;
}

.publication-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.authors {
    color: #6b7280;
    margin-bottom: 0.25rem;
    font-style: italic;
}

.journal {
    color: #4b5563;
    margin-bottom: 1rem;
    font-weight: 500;
}

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

.link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.link:hover {
    background: #eff6ff;
}

/* Projects Section */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

/* Responsive breakpoints for projects grid */
@media (max-width: 1200px) {
    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 900px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 600px) {
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.project-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-image {
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
}

.project-content {
    padding: 2rem;
}

.project-content h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.project-content p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

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

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

.workshop-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: start;
}

.workshop-card:hover {
    transform: translateY(-5px);
}

.workshop-year {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2563eb;
    text-align: center;
    padding: 0.5rem;
    background: #eff6ff;
    border-radius: 8px;
    height: fit-content;
    min-width: 80px;
}

.workshop-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #1f2937;
    line-height: 1.3;
}

.workshop-venue {
    color: #2563eb;
    margin-bottom: 0.75rem;
    font-weight: 500;
    font-size: 0.95rem;
}

.workshop-content p {
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

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

/* CV Section */
.cv-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.cv-download {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cv-download i {
    font-size: 4rem;
    color: #dc2626;
    margin-bottom: 1rem;
}

.cv-download h3 {
    margin-bottom: 1rem;
    color: #1f2937;
}

.cv-download p {
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cv-summary {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.cv-section {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cv-section h3 {
    margin-bottom: 1.5rem;
    color: #1f2937;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 0.5rem;
}

.cv-item {
    margin-bottom: 1.5rem;
}

.cv-item:last-child {
    margin-bottom: 0;
}

.cv-item h4 {
    color: #2563eb;
    margin-bottom: 0.25rem;
}

.cv-item p {
    color: #6b7280;
}

.dissertation {
    font-style: italic;
    color: #666;
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

/* Teaching Section */
.teaching-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.teaching-philosophy {
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.teaching-philosophy h3 {
    margin-bottom: 1rem;
    color: #1f2937;
    font-size: 1.5rem;
}

.teaching-philosophy p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4b5563;
}

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

@media (min-width: 1200px) {
    .courses-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .courses-grid {
        grid-template-columns: 1fr;
    }
}

.course-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.course-card:hover {
    transform: translateY(-5px);
}

.course-card h3 {
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.course-level {
    color: #2563eb;
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.course-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.course-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.course-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    margin-top: auto;
}

.course-link:hover {
    color: #1d4ed8;
}

.course-link i {
    transition: transform 0.3s ease;
}

.course-link:hover i {
    transform: translateX(4px);
}

/* Course Detail Styling */
.course-detail {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.course-detail h3 {
    color: #1f2937;
    margin-bottom: 1rem;
}

.course-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.course-level-badge {
    background: #2563eb;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.course-credits {
    background: #f3f4f6;
    color: #6b7280;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.course-institution, 
.institution {
    background: #f0fdf4;
    color: #16a34a;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.course-prerequisite,
.prerequisite {
    background: #fef3c7;
    color: #d97706;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.level {
    background: #e0e7ff;
    color: #4338ca;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.course-topics {
    margin-top: 1.5rem;
}

.course-topics h4 {
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.course-topics ul {
    list-style: none;
    padding: 0;
}

.course-topics li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f3f4f6;
    color: #6b7280;
}

.course-topics li:last-child {
    border-bottom: none;
}

/* Approach Grid */
.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.approach-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.approach-card:hover {
    transform: translateY(-5px);
}

.approach-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.approach-card h3 {
    color: #1f2937;
    margin-bottom: 1rem;
}

.approach-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Tool Grid */
.tool-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.tool-item {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

.tool-item h4 {
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.tool-item p {
    color: #6b7280;
    line-height: 1.6;
}

/* Research Areas */
.research-area {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

.research-area h3 {
    color: #1f2937;
    margin-bottom: 1rem;
}

.research-area p {
    color: #6b7280;
    line-height: 1.6;
}

/* Project Examples */
.project-examples {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.project-example {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 8px;
    border-top: 4px solid #2563eb;
}

.project-example h4 {
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.project-example p {
    color: #6b7280;
    line-height: 1.6;
}

/* Outcome Lists */
.outcome-list {
    list-style: none;
    padding: 0;
}

.outcome-list li {
    padding: 1rem 0;
    border-bottom: 1px solid #f3f4f6;
    color: #6b7280;
    line-height: 1.6;
}

.outcome-list li:last-child {
    border-bottom: none;
}

.outcome-list strong {
    color: #1f2937;
}

.project-list {
    list-style: none;
    padding: 0;
}

.project-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f3f4f6;
    color: #6b7280;
    line-height: 1.6;
}

.project-list li:last-child {
    border-bottom: none;
}

.project-list strong {
    color: #1f2937;
}

/* Contact Button */
.contact-btn {
    display: inline-block;
    background: #2563eb;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
    margin-top: 1rem;
}

.contact-btn:hover {
    background: #1d4ed8;
    color: white;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-info h3 {
    margin-bottom: 1rem;
    color: #fbbf24;
}

.footer-info p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link:hover {
    background: #2563eb;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* Project Pages Styles */
.project-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    padding-top: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.project-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.project-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.project-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.project-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.project-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
}

.project-main {
    max-width: 100%;
}

.project-overview h2 {
    color: #1f2937;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.project-overview h3 {
    color: #2563eb;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.project-overview p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.project-overview ul {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.project-overview li {
    margin-bottom: 0.5rem;
}

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

.principle-card {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

.principle-card h4 {
    color: #1f2937;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.principle-card h4 i {
    color: #2563eb;
}

.principle-card p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.related-publications {
    margin: 2rem 0;
}

.publication-highlight {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.publication-highlight h4 {
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.publication-highlight p {
    color: #6b7280;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.publication-status {
    margin-top: 1rem;
}

.status-badge {
    background: #e0e7ff;
    color: #3730a3;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 500;
}

.project-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.project-info-card,
.project-tags-card,
.project-links-card,
.resources-card,
.tools-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.project-info-card h3,
.project-tags-card h3,
.project-links-card h3,
.resources-card h3,
.tools-card h3 {
    color: #1f2937;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.project-meta {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.meta-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f3f4f6;
}

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

.meta-item:first-child {
    padding-top: 0;
}

.meta-item strong {
    color: #1f2937;
    font-weight: 600;
}

.meta-item span:not(strong) {
    color: #6b7280;
    text-align: right;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.external-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.external-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #2563eb;
    text-decoration: none;
    padding: 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.external-link:hover {
    background: #eff6ff;
    border-color: #2563eb;
}

.external-link i {
    font-size: 0.875rem;
}

.resource-list,
.tool-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.resource-item,
.tool-item {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f3f4f6;
}

.resource-item:last-child,
.tool-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.resource-item h4,
.tool-item h4 {
    color: #1f2937;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.resource-item p,
.tool-item p {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.back-to-projects {
    text-align: center;
    padding: 2rem 0;
}

.back-to-projects .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Leadership Section */
.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.leadership-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.leadership-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.leadership-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.leadership-content {
    flex: 1;
}

.leadership-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.leadership-role {
    font-size: 0.9rem;
    color: #2563eb;
    font-weight: 500;
    margin-bottom: 1rem;
}

.leadership-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
}

.leadership-highlights li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f3f4f6;
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.5;
}

.leadership-highlights li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.leadership-highlights strong {
    color: #1f2937;
    font-weight: 600;
}

/* Peer-Driven Learning Section */
.peer-driven-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.peer-driven-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1.5rem;
}

.peer-driven-card h4 {
    color: #2563eb;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.peer-driven-card ul {
    list-style: none;
    padding: 0;
}

.peer-driven-card li {
    margin-bottom: 0.75rem;
    padding-left: 1rem;
    position: relative;
}

.peer-driven-card li::before {
    content: "▶";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-size: 0.8rem;
}

.blog-series-reference {
    background: #eff6ff;
    border-left: 4px solid #2563eb;
    padding: 1.5rem;
    margin-top: 2rem;
    border-radius: 0 8px 8px 0;
}

.blog-series-reference h4 {
    color: #1e40af;
    margin-bottom: 1rem;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.blog-link:hover {
    color: #1d4ed8;
}

.blog-link i {
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .about-content {
        max-width: 100%;
    }

    .publication-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .publication-year {
        text-align: left;
        width: fit-content;
    }

    .books-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .leadership-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .leadership-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .leadership-icon {
        margin: 0 auto;
    }

    .workshops-grid {
        grid-template-columns: 1fr;
    }

    .workshop-card {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }

    .workshop-year {
        width: fit-content;
        margin: 0 auto;
    }

    .cv-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .btn {
        flex: 1;
        min-width: 120px;
    }

    .project-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .project-title {
        font-size: 2rem;
    }
    
    .project-icon {
        font-size: 3rem;
    }
    
    .principles-grid {
        grid-template-columns: 1fr;
    }
    
    .principle-card {
        padding: 1rem;
    }
    
    .project-info-card,
    .project-tags-card,
    .project-links-card,
    .resources-card,
    .tools-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .project-card,
    .course-card,
    .cv-section,
    .leadership-card {
        padding: 1.5rem;
    }

    .leadership-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content > * {
    animation: fadeInUp 0.8s ease forwards;
}

.hero-title {
    animation-delay: 0.2s;
}

.hero-subtitle {
    animation-delay: 0.4s;
}

.hero-description {
    animation-delay: 0.6s;
}

.hero-buttons {
    animation-delay: 0.8s;
}

/* Scroll animations */
@media (prefers-reduced-motion: no-preference) {
    .section > * {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.6s ease;
    }

    .section.visible > * {
        opacity: 1;
        transform: translateY(0);
    }

    .book-card,
    .project-card,
    .publication-item,
    .course-card,
    .leadership-card {
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp 0.6s ease forwards;
    }
}
