/* Header Quick Links */
.header-quick-links {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
}

.quick-link {
    color: rgba(255, 255, 255, 0.85);
    padding: 0.25rem 0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    position: relative;
}

.quick-link::after {
    content: '↗';
    margin-left: 0.4rem;
    font-size: 0.8rem;
    opacity: 0.7;
    transition: all 0.2s ease;
}

.quick-link:hover {
    color: white;
    transform: translateY(-1px);
    text-decoration: none;
}

.quick-link:hover::after {
    opacity: 1;
    transform: translateX(2px) translateY(-2px);
}

.quick-link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: white;
    transition: width 0.3s ease;
}

.quick-link:hover::before {
    width: 100%;
}

@media (max-width: 768px) {
    .header-quick-links {
        margin-top: 1.5rem;
        gap: 1rem;
    }
    
    .quick-link {
        font-size: 0.9rem;
    }
}/* Title links in project list */
.title-link {
    color: #444;
    text-decoration: none;
    transition: color 0.2s;
    display: inline-block;
    position: relative;
    padding-right: 1.5em;
}

.title-link::after {
    content: '↗';
    position: absolute;
    font-size: 0.7em;
    margin-left: 0.4em;
    top: 0.2em;
    opacity: 0.6;
    transition: all 0.2s;
}

.title-link:hover {
    color: var(--primary-color);
}

.title-link:hover::after {
    opacity: 1;
    transform: translateX(2px) translateY(-2px);
}

/* Inline links */
.inline-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s;
}

.inline-link:hover {
    text-decoration: underline;
    color: #005b8c;
}/* Project with logo layout */
.project-with-logo {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1.5rem;
    align-items: start;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.project-logo {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    background-color: white;
    padding: 1rem;
    margin-bottom: 0.75rem;
}

.logo-caption {
    font-size: 0.8rem;
    color: #666;
    font-style: italic;
    margin: 0;
}

.project-description p:first-child {
    margin-top: 0;
}

/* Responsive adjustments for logo layout */
@media (max-width: 768px) {
    .project-with-logo {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .logo-container {
        margin-bottom: 1rem;
    }
    
    .project-logo {
        max-width: 200px;
    }
}/* Mini links inside project lists */
.project-mini-link {
    display: inline-flex;
    align-items: center;
    font-size: 0.75rem;
    text-decoration: none;
    color: var(--primary-color);
    margin-left: 0.5rem;
    transition: all 0.2s;
    white-space: nowrap;
}

.project-mini-link:hover {
    text-decoration: underline;
    color: #005b8c;
}

.project-mini-link::before {
    content: '↗';
    display: inline-block;
    margin-right: 0.25rem;
    font-size: 0.7rem;
    transform: translateY(-1px);
}/* Project cards and status indicators - refined */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.project-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

/* Redesigned header section */
.project-header {
    padding: 1.5rem 1.5rem 0.75rem;
    position: relative;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}

.project-header h3 {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
    padding-right: 0.5rem;
    flex: 1;
}

.status-indicator {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #666;
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.6rem;
    border-radius: 20px;
    white-space: nowrap;
    margin-left: 0.5rem;
}

.status-indicator::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 6px;
}

.status-indicator.complete {
    background-color: rgba(52, 168, 83, 0.12);
    color: #2c7a42;
}

.status-indicator.complete::before {
    background-color: #2c7a42;
}

.status-indicator.in-progress {
    background-color: rgba(66, 133, 244, 0.12);
    color: #0066cc;
}

.status-indicator.in-progress::before {
    background-color: #0066cc;
}

.status-indicator.maintenance {
    background-color: rgba(251, 188, 5, 0.12);
    color: #e67700;
}

.status-indicator.maintenance::before {
    background-color: #e67700;
}

/* Project meta styling */
.project-meta {
    font-size: 0.85rem;
    padding: 0 1.5rem 0.5rem;
    color: #666;
}

.project-meta a {
    color: #3366cc;
    text-decoration: none;
    transition: color 0.2s;
    margin-right: 0.25rem;
}

.project-meta a:not(:last-child)::after {
    content: ',';
    color: #666;
}

.project-meta a:hover {
    color: #1a4a9f;
    text-decoration: underline;
}

/* Project content area */
.project-content {
    padding: 0.5rem 1.5rem 1.5rem;
    flex: 1;
}

.project-card p {
    margin-top: 0;
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #444;
    font-size: 0.95rem;
}

.project-card p:last-child {
    margin-bottom: 0;
}

/* Project list styling */
.project-list {
    list-style-type: none;
    padding-left: 0.5rem;
    margin: 0.5rem 0 1rem;
}

.project-list li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.75rem;
}

.project-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.2em;
}

.project-list li:last-child {
    margin-bottom: 0;
}

.project-list li strong {
    font-weight: 600;
    color: #444;
    display: block;
    margin-bottom: 0.15rem;
}

/* Mini links inside project lists */
.project-mini-link {
    display: inline-flex;
    align-items: center;
    font-size: 0.75rem;
    text-decoration: none;
    color: var(--primary-color);
    margin-top: 0.25rem;
    transition: all 0.2s;
}

.project-mini-link:hover {
    text-decoration: underline;
    color: #005b8c;
}

.project-mini-link:not(:first-of-type) {
    margin-left: 0.75rem;
}

.project-mini-link::before {
    content: '↗';
    display: inline-block;
    margin-right: 0.25rem;
    font-size: 0.7rem;
    transform: translateY(-1px);
}

/* Project with logo layout */
.project-with-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-container {
    text-align: center;
    margin-bottom: 1.25rem;
}

.project-logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 0.5rem;
}

.logo-caption {
    font-size: 0.8rem;
    color: #666;
    font-style: italic;
    margin: 0;
}

.project-description p:first-child {
    margin-top: 0;
}/* Clickable identity tag */
.identity-tag-link {
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.identity-tag-link:hover {
    background-color: rgba(255, 255, 255, 0.3);
    color: white;
    text-decoration: none;
    border-color: white;
}

.identity-tag-link:after {
    content: '\2197'; /* Unicode for north east arrow */
    margin-left: 0.3rem;
    font-size: 0.8rem;
}/* Personality Insights */
.personality-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.personality-nav-button {
    background-color: var(--background-color);
    color: var(--primary-color);
    font-size: 0.9rem;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    border: 1px solid var(--primary-color);
    transition: all 0.2s ease;
    cursor: pointer;
    font-family: inherit;
}

.personality-nav-button:hover, 
.personality-nav-button.active {
    background-color: var(--primary-color);
    color: var(--background-color);
}

.personality-panel {
    display: none;
    animation: fadeIn 0.4s ease;
}

.personality-panel.active {
    display: block;
}

.personality-header {
    text-align: center;
    margin-bottom: 2rem;
}

.personality-header h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.personality-header p {
    color: var(--quote-color);
    font-style: italic;
}

.personality-traits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.trait-column h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.trait-column ul {
    padding-left: 1.25rem;
}

.trait-column li {
    margin-bottom: 0.5rem;
}

.wings-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.wing-item {
    background-color: var(--light-gray);
    padding: 1.25rem;
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
}

.wing-item h4 {
    margin-top: 0;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.wing-item p {
    margin-bottom: 0;
}

.bigfive-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.bigfive-trait h4 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.trait-score {
    color: var(--primary-color);
    font-weight: 600;
}

.trait-bar-container {
    position: relative;
    height: 10px;
    background-color: var(--light-gray);
    border-radius: 5px;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.trait-bar {
    height: 100%;
    background-color: var(--primary-color);
    border-radius: 5px;
    transition: width 1s ease;
}

.trait-avg {
    position: absolute;
    top: -5px;
    width: 3px;
    height: 20px;
    background-color: var(--quote-color);
    transform: translateX(-50%);
}

.personality-patterns {
    margin-top: 2rem;
}

.pattern-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1rem;
}

.pattern-item {
    background-color: var(--light-gray);
    padding: 1.25rem;
    border-radius: 8px;
}

.pattern-item h5 {
    margin-top: 0;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.pattern-item h5 span {
    color: var(--primary-color);
}

.pattern-item p {
    margin-bottom: 0;
}

.personality-footer {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
    color: var(--quote-color);
}

.personality-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.2s ease;
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Personal Notes Panel */
.personal-notes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.note-card {
    background-color: var(--light-gray);
    padding: 1.5rem;
    border-radius: 8px;
    height: 100%;
    border-left: 3px solid var(--primary-color);
}

.note-card h4 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.note-card p {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .personality-traits,
    .wings-container,
    .pattern-container,
    .personal-notes {
        grid-template-columns: 1fr;
    }
    
    .personality-nav {
        flex-wrap: wrap;
    }
}

/* Expert Generalist Chart */
.chart-container {
    width: 100%;
    height: 400px;
    margin: 2rem auto 1rem;
    max-width: 700px;
    padding: 1rem;
    display: flex;
    justify-content: center;
}

.chart-caption {
    text-align: center;
    color: var(--quote-color);
    font-style: italic;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    font-size: 0.95rem;
}

/* Meme Carousel */
.carousel-container {
    position: relative;
    max-width: 800px;
    margin: 2rem auto;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.4s ease;
}

.carousel-item {
    min-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: opacity 0.3s ease;
    padding: 0 1rem;
}

.media-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 500px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.carousel-image {
    max-width: 100%;
    max-height: 500px;
    object-fit: contain;
}

.carousel-video {
    width: 100%;
    max-height: 500px;
    object-fit: contain;
    background-color: #000;
}

.carousel-caption {
    margin-top: 1rem;
    font-style: italic;
    text-align: center;
    color: var(--quote-color);
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1.5rem;
}

.carousel-button {
    background: var(--light-gray);
    border: none;
    color: var(--primary-color);
    font-size: 2rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.carousel-button.prev {
    left: 10px;
}

.carousel-button.next {
    right: 10px;
}

.carousel-button:hover {
    background-color: var(--primary-color);
    color: white;
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--border-color);
    cursor: pointer;
    transition: all 0.2s ease;
}

.carousel-dot.active {
    background-color: var(--primary-color);
}/* Eudoxus Sans Font Family */
/* Regular */
@font-face {
    font-family: 'Eudoxus Sans';
    src: url('fonts/eudoxus-sans/EudoxusSans-Regular.woff2') format('woff2'),
         url('fonts/eudoxus-sans/EudoxusSans-Regular.woff') format('woff'),
         url('fonts/eudoxus-sans/EudoxusSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Light */
@font-face {
    font-family: 'Eudoxus Sans';
    src: url('fonts/eudoxus-sans/EudoxusSans-Light.woff2') format('woff2'),
         url('fonts/eudoxus-sans/EudoxusSans-Light.woff') format('woff'),
         url('fonts/eudoxus-sans/EudoxusSans-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

/* Medium */
@font-face {
    font-family: 'Eudoxus Sans';
    src: url('fonts/eudoxus-sans/EudoxusSans-Medium.woff2') format('woff2'),
         url('fonts/eudoxus-sans/EudoxusSans-Medium.woff') format('woff'),
         url('fonts/eudoxus-sans/EudoxusSans-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/* Bold */
@font-face {
    font-family: 'Eudoxus Sans';
    src: url('fonts/eudoxus-sans/EudoxusSans-Bold.woff2') format('woff2'),
         url('fonts/eudoxus-sans/EudoxusSans-Bold.woff') format('woff'),
         url('fonts/eudoxus-sans/EudoxusSans-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Extra Bold */
@font-face {
    font-family: 'Eudoxus Sans';
    src: url('fonts/eudoxus-sans/EudoxusSans-ExtraBold.woff2') format('woff2'),
         url('fonts/eudoxus-sans/EudoxusSans-ExtraBold.woff') format('woff'),
         url('fonts/eudoxus-sans/EudoxusSans-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

/* Extra Light */
@font-face {
    font-family: 'Eudoxus Sans';
    src: url('fonts/eudoxus-sans/EudoxusSans-ExtraLight.woff2') format('woff2'),
         url('fonts/eudoxus-sans/EudoxusSans-ExtraLight.woff') format('woff'),
         url('fonts/eudoxus-sans/EudoxusSans-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

/* Base styles */
:root {
    --primary-color: #0077b6;
    --background-color: #ffffff;
    --text-color: #333333;
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --border-color: #dee2e6;
    --quote-color: #6c757d;
    --sidebar-width: 250px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Eudoxus Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--background-color);
}

/* Layout */
.layout-container {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

.sidebar {
    width: var(--sidebar-width);
    background-color: var(--background-color);
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sidebar-content {
    padding: 2rem 2.5rem 2rem 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.quick-nav {
    width: 100%;
}

.sidebar-logo {
    margin-bottom: 2rem;
    text-align: center;
}

.sidebar-site-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    background-color: white;
    padding: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.sidebar-site-logo:hover {
    transform: scale(1.05);
}

.nav-links {
    list-style: none;
    padding-left: 0;
}

.nav-links li {
    margin-bottom: 1.75rem;
}

.nav-links a {
    color: var(--quote-color);
    text-decoration: none;
    transition: all 0.2s ease;
    display: block;
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--text-color);
    text-decoration: none;
}

.nav-links a.active {
    font-weight: 500;
    color: var(--primary-color);
}

/* Space the emoji from the text a bit */
.nav-links a span {
    display: inline-block;
    width: 1.5rem;
    margin-right: 0.5rem;
}

.main-content {
    flex: 1;
    margin-left: var(--sidebar-width);
}

.container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: white;
}

h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
}

p, ul, ol {
    margin-bottom: 1.5rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: #005b8c;
    text-decoration: underline;
}

ul, ol {
    padding-left: 1.5rem;
}

/* Header */
header {
    padding: 5rem 0 3rem;
    background-color: #0c1e2b; /* Dark blue background */
    margin-bottom: 2rem;
    text-align: center;
    color: white;
}

/* Remove header branding styles as we've moved the logo */

.identity-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.identity-tag {
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* This style is defined above - keeping for compatibility */
.identity-tag-link {
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.identity-tag-link:hover {
    background-color: var(--primary-color);
    color: var(--background-color);
    text-decoration: none;
}

.identity-tag-link:after {
    content: '\2197'; /* Unicode for north east arrow */
    margin-left: 0.3rem;
    font-size: 0.8rem;
}

/* Sections */
section {
    margin-bottom: 3rem;
}

/* Section subtitle */
.section-subtitle {
    color: var(--quote-color);
    font-size: 1.1rem;
    margin-top: -0.5rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

/* About section */
.about-content {
    margin-top: 1rem;
}

.beliefs {
    margin-top: 1.5rem;
}

.beliefs ul {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    list-style-type: none;
    padding: 0;
}

.beliefs li {
    background-color: var(--light-gray);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
}

/* Timeline section */
.timeline {
    position: relative;
    margin: 2rem 0;
    padding-left: 2rem;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 2px;
    background-color: var(--border-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
}

.timeline-marker {
    position: absolute;
    left: -2.25rem;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--background-color);
    border: 2px solid var(--primary-color);
    top: 4px;
}

.timeline-marker.current {
    background-color: var(--primary-color);
}

.timeline-marker.education {
    border-color: var(--quote-color);
}

.timeline-content {
    padding-bottom: 1rem;
}

.timeline-meta {
    color: var(--quote-color);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    margin-top: -0.5rem;
}

.experience-details {
    margin-top: 0.5rem;
}

.experience-details li {
    margin-bottom: 0.5rem;
}

.timeline-item.education .timeline-content h3 {
    color: var(--quote-color);
}

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

.superpower-card {
    background-color: var(--light-gray);
    padding: 1.5rem;
    border-radius: 8px;
    height: 100%;
}

blockquote {
    font-style: italic;
    color: var(--quote-color);
    border-left: 3px solid var(--primary-color);
    padding-left: 1rem;
    margin: 1rem 0;
}

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

.competency-item {
    background-color: var(--light-gray);
    padding: 1.5rem;
    border-radius: 8px;
    height: 100%;
}

.competency-item h3 {
    margin-top: 0;
}

.competency-item p {
    margin-bottom: 0;
}

/* Generalist mindset */
.featured-quote {
    font-size: 1.2rem;
    padding: 1.5rem;
    background-color: var(--light-gray);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    margin: 1.5rem 0;
}

/* Projects section */




/* Project links */
.project-links {
    margin-top: 1.5rem;
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.project-link {
    display: inline-flex;
    align-items: center;
    font-size: 0.85rem;
    padding: 0.5rem 0.75rem;
    background-color: #f5f7fa;
    border-radius: 6px;
    color: #444;
    text-decoration: none;
    transition: all 0.25s;
    border: 1px solid #e4e7ed;
}

.project-link:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    text-decoration: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .project-card {
        padding: 1.5rem;
    }
}

/* AI-Native section */
.ai-native-content {
    margin-top: 1.5rem;
}

.ai-principles, .ai-practice ul {
    background-color: var(--light-gray);
    padding: 1.5rem 1.5rem 1.5rem 3rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.ai-principles li, .ai-practice li {
    margin-bottom: 1rem;
}

.principle-highlight {
    color: var(--primary-color);
    font-weight: 600;
}

.ai-philosophy {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--quote-color);
    margin-top: 2rem;
    padding-left: 1rem;
    border-left: 3px solid var(--primary-color);
}

/* Skills section */
.skills-container {
    margin-top: 1.5rem;
}

.skill-category {
    margin-bottom: 2rem;
}

.skill-category h3 {
    margin-bottom: 1rem;
}

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

.skill-tag {
    background-color: var(--light-gray);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.skill-tag:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Tenets list */
.tenets-list {
    padding-left: 2rem;
    margin-top: 1.5rem;
}

.tenets-list li {
    margin-bottom: 0.75rem;
}

/* Fun facts */
.fun-facts-list {
    padding-left: 2rem;
    margin-top: 1.5rem;
}

.fun-facts-list li {
    margin-bottom: 0.75rem;
}

/* Contact section */
.cta-buttons {
    margin: 2rem 0;
}

.button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s;
    text-decoration: none;
}

.button.primary {
    background-color: var(--primary-color);
    color: white;
}

.button.primary:hover {
    background-color: #005b8c;
    text-decoration: none;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.social-link {
    padding: 0.5rem 1rem;
    background-color: var(--light-gray);
    border-radius: 4px;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem 0;
    margin-top: 4rem;
    border-top: 1px solid var(--border-color);
    color: var(--quote-color);
    font-size: 0.9rem;
    width: 100%;
    position: relative;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

footer .container {
    text-align: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
}

footer p {
    margin-bottom: 0.5rem;
}

.ai-acknowledgment {
    font-size: 0.85rem;
    color: var(--quote-color);
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 992px) {
    .layout-container {
        flex-direction: column;
    }
    
    .sidebar {
        width: 100%;
        height: auto;
        position: relative;
        display: block;
    }
    
    .sidebar-content {
        padding: 1.5rem 1rem 1rem;
    }
    
    .sidebar-logo {
        margin-bottom: 1.5rem;
    }
    
    .sidebar-site-logo {
        width: 70px;
        height: 70px;
    }
    
    .main-content {
        margin-left: 0;
    }
    
    .nav-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }
    
    .nav-links li {
        margin-bottom: 0;
    }
    
    .nav-links a span {
        display: none; /* Hide emojis on mobile to save space */
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    .superpower-grid,
    .competencies-grid,
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    header {
        padding: 3rem 0 2rem;
    }
    
    .timeline {
        padding-left: 1.5rem;
    }
    
    .timeline-marker {
        left: -1.75rem;
    }
    
    footer .container {
        width: 90%;
        padding: 0 0.5rem;
    }
}
