/* Variables */
:root {
    --primary-color: #6ba3d6;
    --primary-dark: #4a85bf;
    --primary-light: #a3d1f0;
    --accent-color: #88b8e0;
    --accent-secondary: #b3d4ed;

    /* Life events - Green/Teal */
    --life-color: #5fc78a;
    --life-light: #7ed9a3;
    --life-glow: 0 0 20px rgba(95, 199, 138, 0.2);
    --life-glow-strong: 0 0 30px rgba(95, 199, 138, 0.3);

    --text-color: #e5e7eb;
    --text-light: #b1b8c3;
    --bg-color: #1f2937;
    --bg-secondary: #111827;
    --bg-card: #374151;
    --border-color: #4b5563;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.4), 0 10px 10px -5px rgba(0, 0, 0, 0.3);
    --glow: 0 0 20px rgba(107, 163, 214, 0.2);
    --glow-strong: 0 0 30px rgba(107, 163, 214, 0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Layout & Spacing Variables */
    --spacing-standard: 20px;
    --spacing-large: 40px;
    --spacing-small: 10px;
    --border-bar-height: 4px;
    --border-radius-card: 20px;
    --border-radius-button: 50%;

    /* Timeline Layout Variables */
    --timeline-line-width: 4px;
    --timeline-dot-size: 24px;
    --timeline-dot-border: 4px;
    --timeline-gap: 50px;
    --timeline-year-offset: 60px;
    --timeline-mobile-line-offset: 30px;
    --timeline-entry-gap: 60px;
    --timeline-line-extension: 40px;

    /* Wind Farm Variables */
    --wind-farm-wheat-height: 50px;
    --wind-farm-ground-height: 10px;
    --wind-farm-clouds-bottom: 40px;
    --wind-farm-wheat-stalk-bottom: 8px;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-secondary);
    overflow-x: hidden;
}


.nav-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}


.language-toggle {
    background: var(--bg-card);
    border-radius: 30px;
    padding: 6px;
    box-shadow: var(--shadow), 0 0 20px rgba(0, 0, 0, 0.2);
    display: flex;
    gap: 5px;
    border: 1px solid rgba(107, 163, 214, 0.2);
}

.lang-btn {
    padding: 10px 24px;
    border: none;
    background: transparent;
    color: var(--text-light);
    font-weight: 700;
    font-size: 13px;
    border-radius: 24px;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    letter-spacing: 0.5px;
}

.lang-btn:hover {
    color: var(--primary-light);
    background: rgba(107, 163, 214, 0.1);
}

.lang-btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    box-shadow: 0 4px 12px rgba(107, 163, 214, 0.3);
}


.print-btn {
    position: absolute;
    top: var(--spacing-standard);
    right: var(--spacing-standard);
    z-index: 100;
    background: var(--bg-card);
    border: 1px solid rgba(107, 163, 214, 0.2);
    border-radius: var(--border-radius-button);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow), 0 0 20px rgba(0, 0, 0, 0.2);
    color: var(--text-light);
}

.print-btn:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(107, 163, 214, 0.3);
    transform: scale(1.05);
}

.print-btn svg {
    width: 20px;
    height: 20px;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    background: var(--bg-card);
    border: 1px solid rgba(107, 163, 214, 0.2);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-light);
    box-shadow: var(--shadow), 0 0 20px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.back-to-top:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(107, 163, 214, 0.3);
    transform: scale(1.05);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
}


.hamburger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1002;
}

.hamburger-line {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-color);
    margin: 5px 0;
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Navigation */
.main-nav {
    position: sticky;
    top: 0;
    z-index: 900;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-secondary) 100%);
    border-bottom: 2px solid rgba(107, 163, 214, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    padding: 20px 0;
}

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

/* Mobile menu wrapper - on desktop it's just a flex container */
.mobile-menu-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Hide close button on desktop */
.mobile-menu-close {
    display: none;
}

.site-title {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 2.2rem;
    font-weight: 300;
    margin: 0;
    letter-spacing: -0.02em;
}

.site-title-link {
    color: #d0e5f5;
    text-decoration: none;
    transition: var(--transition);
    text-transform: uppercase;
}

.site-title-link:hover {
    color: #e8f3fa;
}



/* OPTION 1: Gradient Text */
.site-title-link.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.site-title-link.gradient-text:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--accent-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

/* OPTION 3: Stylized Initials */
.site-title-link.stylized-initials::first-letter {
    font-size: 2.2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

/* OPTION 4: Subtle Glow Effect */
.site-title-link.glow-effect {
    color: var(--primary-light);
    text-shadow:
        0 0 10px rgba(107, 163, 214, 0.3),
        0 0 20px rgba(107, 163, 214, 0.2),
        0 0 30px rgba(107, 163, 214, 0.1);
}

.site-title-link.glow-effect:hover {
    text-shadow:
        0 0 15px rgba(107, 163, 214, 0.5),
        0 0 30px rgba(107, 163, 214, 0.3),
        0 0 45px rgba(107, 163, 214, 0.2);
}

/* OPTION 5: Letter Spacing + Bold */
.site-title-link.spaced-bold {
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 1.6rem;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 10px;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.nav-link {
    display: block;
    padding: 12px 24px;
    text-decoration: none;
    color: var(--text-light);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 25px;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.nav-link:hover {
    color: var(--primary-light);
    background: rgba(107, 163, 214, 0.1);
    border-color: rgba(107, 163, 214, 0.2);
}

.nav-link.active {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(107, 163, 214, 0.3);
}


.contact-btn {
    background: var(--bg-card);
    border: 1px solid rgba(107, 163, 214, 0.2);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    box-shadow: var(--shadow), 0 0 20px rgba(0, 0, 0, 0.2);
    color: var(--text-light);
}

.contact-btn:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(107, 163, 214, 0.3);
    transform: scale(1.05);
}

.contact-btn svg {
    width: 20px;
    height: 20px;
}


.main-content {
    min-height: 60vh;
}


.content-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--primary-light);
    margin-bottom: 30px;
    text-align: center;
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-light);
    text-align: center;
    line-height: 1.8;
}


.skills-section {
    max-width: 1200px;
}

.skills-categories {
    column-count: 3;
    column-gap: 30px;
    margin-top: 0;
}

@media (max-width: 1024px) {
    .skills-categories {
        column-count: 2;
    }
}

@media (max-width: 768px) {
    .skills-categories {
        column-count: 1;
    }
}

.skill-category-card {
    background: var(--bg-card);
    border-radius: var(--border-radius-card);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(107, 163, 214, 0.15);
    position: relative;
    overflow: hidden;
    break-inside: avoid;
    margin-bottom: 30px;
}

/* Category-specific colors */

/* Leadership & Management - Blue theme */
.skill-category-card:nth-child(1)::before {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.skill-category-card:nth-child(1) .skill-category-name {
    color: var(--primary-light);
    font-size: 1.5rem;
}

.skill-category-card:nth-child(1):hover {
    border-color: rgba(107, 163, 214, 0.3);
    box-shadow: var(--shadow-lg), var(--glow);
}

.skill-category-card:nth-child(1) .subcategory-card {
    border-color: rgba(107, 163, 214, 0.25);
}

.skill-category-card:nth-child(1) .subcategory-card:hover {
    border-color: rgba(107, 163, 214, 0.4);
}

.skill-category-card:nth-child(1) .subcategory-card-name {
    color: var(--primary-light);
}

.skill-category-card:nth-child(1) .subcategory-item::before {
    color: var(--primary-light);
}

/* Programming Languages - Enhanced typography and purple theme */
.skill-category-card:nth-child(2)::before {
    background: linear-gradient(90deg, #a78bfa, #c4b5fd);
}

.skill-category-card:nth-child(2) .skill-category-name {
    color: #c4b5fd;
    font-size: 1.5rem;
}

.skill-category-card:nth-child(2):hover {
    border-color: rgba(167, 139, 250, 0.3);
    box-shadow: var(--shadow-lg), 0 0 20px rgba(167, 139, 250, 0.2);
}

.skill-category-card:nth-child(2) .skill-grid-item {
    font-size: 1.05rem;
    font-weight: 600;
    min-height: 70px;
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(167, 139, 250, 0.3);
}

.skill-category-card:nth-child(2) .skill-grid-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(167, 139, 250, 0.5);
    box-shadow: 0 4px 12px rgba(167, 139, 250, 0.15);
}

/* Hardware - Green theme */
.skill-category-card:nth-child(3)::before {
    background: linear-gradient(90deg, var(--life-color), var(--life-light));
}

.skill-category-card:nth-child(3) .skill-category-name {
    color: var(--life-light);
}

.skill-category-card:nth-child(3) .skill-grid-item {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(95, 199, 138, 0.3);
}

.skill-category-card:nth-child(3) .skill-grid-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(95, 199, 138, 0.5);
    box-shadow: 0 4px 12px rgba(95, 199, 138, 0.15);
}

.skill-category-card:nth-child(3):hover {
    border-color: rgba(95, 199, 138, 0.3);
    box-shadow: var(--shadow-lg), var(--life-glow);
}

/* Certifications - Orange theme */
.skill-category-card:nth-child(4)::before {
    background: linear-gradient(90deg, #f5a962, #f7bd85);
}

.skill-category-card:nth-child(4) .skill-category-name {
    color: #f7bd85;
}

.skill-category-card:nth-child(4) .skill-grid-item {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(245, 169, 98, 0.3);
}

.skill-category-card:nth-child(4) .skill-grid-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(245, 169, 98, 0.5);
    box-shadow: 0 4px 12px rgba(245, 169, 98, 0.15);
}

.skill-category-card:nth-child(4):hover {
    border-color: rgba(245, 169, 98, 0.3);
    box-shadow: var(--shadow-lg), 0 0 20px rgba(245, 169, 98, 0.2);
}

.skill-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: var(--border-bar-height);
    opacity: 1;
}

.skill-category-card:hover {
    box-shadow: var(--shadow-lg), var(--glow);
    border-color: rgba(107, 163, 214, 0.3);
}

.skill-category-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 20px 0;
}

/* Subcategories displayed as cards */
.subcategories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 5px;
}

.subcategory-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid;
    border-radius: 12px;
    padding: 20px;
    transition: var(--transition);
}

.subcategory-card:hover {
    background: rgba(255, 255, 255, 0.05);
}

.subcategory-card-name {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.subcategory-items-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.subcategory-item {
    padding: 8px 0;
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.5;
    position: relative;
    padding-left: 15px;
}

.subcategory-item::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-light);
}

/* Grid layout for all skill categories */
.skill-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(165px, 1fr));
    gap: 15px;
    margin-top: 5px;
}

.skill-grid-item {
    border: 1px solid;
    border-radius: 12px;
    padding: 20px 15px;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-color);
    transition: var(--transition);
    cursor: default;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    min-height: 60px;
}

.skill-grid-item-name {
    font-weight: 500;
    line-height: 1.3;
}

.skill-grid-item-note {
    font-size: 0.75rem;
    color: var(--text-light);
    font-style: italic;
    line-height: 1.3;
    font-weight: 400;
}


.languages-section {
    max-width: 1200px;
}

.language-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 0;
}

.language-card:nth-child(4) {
    grid-column: 2;
}

.language-card {
    background: var(--bg-card);
    border-radius: var(--border-radius-card);
    padding: 50px 40px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(107, 163, 214, 0.15);
    position: relative;
    overflow: hidden;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.language-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: var(--border-bar-height);
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    opacity: 1;
}

.language-card:hover {
    box-shadow: var(--shadow-lg), var(--glow);
    border-color: rgba(107, 163, 214, 0.3);
}

.language-flag {
    font-size: 5rem;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1;
}

.language-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0 0 15px 0;
    text-align: center;
}

.language-level {
    font-size: 1.1rem;
    color: var(--primary-light);
    font-weight: 600;
    text-align: center;
    margin-bottom: 25px;
}

.language-progress-container {
    width: 100%;
    height: 16px;
    background: rgba(107, 163, 214, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

.language-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 10px;
    transition: width 0.8s ease-out;
    box-shadow: 0 0 10px rgba(107, 163, 214, 0.3);
}

.language-note {
    font-size: 1rem;
    color: var(--text-light);
    text-align: center;
    font-style: italic;
    margin-top: 15px;
}

/* Timeline */
.timeline-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.timeline-container {
    position: relative;
}

/* Timeline vertical line */
.timeline-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: var(--timeline-line-width);
    top: calc(var(--timeline-line-extension) * -1);
    bottom: calc(var(--timeline-line-extension) * -1);
    height: calc(100% + var(--timeline-line-extension) * 2);
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--accent-color) 50%, var(--primary-color) 100%);
    border-radius: 2px;
    box-shadow: var(--glow);
    z-index: 1;
}

.timeline-entries {
    position: relative;
}


.timeline-entry {
    position: relative;
    margin-bottom: var(--timeline-entry-gap);
    display: flex;
    align-items: center;
    z-index: 10;
}

/* Alternate sides */
.timeline-entry:nth-child(odd) {
    justify-content: flex-start;
}

.timeline-entry:nth-child(even) {
    justify-content: flex-end;
}

/* Timeline dot */
.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: var(--timeline-dot-size);
    height: var(--timeline-dot-size);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border: var(--timeline-dot-border) solid var(--bg-secondary);
    border-radius: 50%;
    box-shadow: 0 0 0 var(--timeline-dot-border) rgba(107, 163, 214, 0.25), var(--glow);
    z-index: 10;
    transition: var(--transition);
    animation: dotPulse 3s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { box-shadow: 0 0 0 var(--timeline-dot-border) rgba(107, 163, 214, 0.25), var(--glow); }
    50% { box-shadow: 0 0 0 calc(var(--timeline-dot-border) * 2) rgba(107, 163, 214, 0.15), var(--glow-strong); }
}

.timeline-entry:hover .timeline-dot {
    transform: translateX(-50%) scale(1.4);
    box-shadow: 0 0 0 calc(var(--timeline-dot-border) * 2) rgba(107, 163, 214, 0.35), var(--glow-strong);
    animation: none;
}

/* Timeline card */
.timeline-card {
    width: calc(50% - var(--timeline-gap));
    background: var(--bg-card);
    border-radius: var(--border-radius-card);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(107, 163, 214, 0.15);
    position: relative;
    overflow: hidden;
}

.timeline-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: var(--border-bar-height);
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    opacity: 1;
    transition: var(--transition);
}

.timeline-entry:nth-child(odd) .timeline-card {
    margin-right: auto;
}

.timeline-entry:nth-child(even) .timeline-card {
    margin-left: auto;
}

.timeline-card:hover {
    box-shadow: var(--shadow-lg), var(--glow);
    border-color: rgba(107, 163, 214, 0.3);
}

/* Timeline year (positioned on opposite side) */
.timeline-year {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary-light);
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    white-space: nowrap;
    z-index: 5;
}

/* Position year on opposite side for alternating items */
.timeline-entry:nth-child(odd) .timeline-year {
    left: calc(50% + var(--timeline-year-offset));
    transform: translateX(0);
    text-align: left;
}

.timeline-entry:nth-child(even) .timeline-year {
    left: calc(50% - var(--timeline-year-offset));
    transform: translateX(-100%);
    text-align: right;
}



/* Life Events - Green */
.timeline-dot-life {
    background: linear-gradient(135deg, var(--life-color), var(--life-light));
    box-shadow: 0 0 0 4px rgba(95, 199, 138, 0.25), var(--life-glow);
}

.timeline-entry-life:hover .timeline-dot-life {
    box-shadow: 0 0 0 8px rgba(95, 199, 138, 0.35), var(--life-glow-strong);
}

.timeline-card-life {
    border-color: rgba(95, 199, 138, 0.25);
    background: rgba(95, 199, 138, 0.05);
}

.timeline-card-life::before {
    background: linear-gradient(90deg, var(--life-color), var(--life-light));
    opacity: 1;
    height: var(--border-bar-height);
}

.timeline-card-life:hover {
    box-shadow: var(--shadow-lg), var(--life-glow);
    border-color: rgba(95, 199, 138, 0.4);
    background: rgba(95, 199, 138, 0.08);
}

.timeline-year-life {
    color: var(--life-light);
}

.timeline-card-life .timeline-subtitle {
    color: var(--life-light);
}

/* Side borders for life category groups - use green gradient */
.timeline-card-life.timeline-group-header::after {
    background: linear-gradient(180deg, var(--life-color), var(--life-light));
}

.timeline-title-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    justify-content: space-between;
}

.timeline-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    flex: 1;
    transition: var(--transition);
}

.timeline-link:hover {
    opacity: 0.8;
}

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

.timeline-card-life .timeline-link:hover .timeline-title {
    color: var(--life-light);
}

.timeline-logo {
    width: 72px;
    height: 72px;
    object-fit: contain;
    border-radius: 3px;
    background: white;
    padding: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.timeline-logo-small {
    width: 52px;
    height: 52px;
    padding: 3px;
}

.timeline-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0;
    flex: 1;
}

.timeline-subtitle {
    font-size: 1.1rem;
    color: var(--primary-light);
    font-weight: 500;
    margin-bottom: 15px;
}

.timeline-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.timeline-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 0.95rem;
    margin-top: 10px;
}

.timeline-location::before {
    content: "📍";
    filter: brightness(1.2);
}



.timeline-group-entry {
    flex-direction: row;
}

.timeline-dot-group {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-light));
    border-width: 5px;
}

.timeline-group-content {
    width: calc(50% - var(--timeline-gap));
    display: flex;
    flex-direction: column;
}

.timeline-group-header {
    cursor: pointer;
    user-select: none;
    width: 100%;
    position: relative;
}

/* Remove the top bar for group headers */
.timeline-group-header::before {
    display: none;
}

/* Add side border for groups - on the side CLOSER to timeline */
/* Odd entries are on left, so border on RIGHT (closer to timeline) */
.timeline-entry:nth-child(odd) .timeline-group-header::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: var(--border-bar-height);
    background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
    border-radius: 0 var(--border-radius-card) var(--border-radius-card) 0;
}

/* Even entries are on right, so border on LEFT (closer to timeline) */
.timeline-entry:nth-child(even) .timeline-group-header::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: var(--border-bar-height);
    background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
    border-radius: var(--border-radius-card) 0 0 var(--border-radius-card);
}

.timeline-group-expand-btn {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(107, 163, 214, 0.2);
    border: 2px solid rgba(107, 163, 214, 0.3);
    border-radius: 20px;
    color: var(--primary-light);
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    margin-top: 8px;
}

.timeline-group-expand-btn:hover {
    background: rgba(107, 163, 214, 0.25);
    border-color: rgba(107, 163, 214, 0.5);
    box-shadow: 0 4px 12px rgba(107, 163, 214, 0.3);
}

.timeline-group-entry[data-expanded="true"] .timeline-group-expand-btn {
    background: rgba(107, 163, 214, 0.25);
    border-color: rgba(107, 163, 214, 0.4);
}

.timeline-group-summary {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.timeline-group-items {
    width: 100%;
    margin-top: 20px;
    padding-left: 20px;
    display: grid;
    gap: 15px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease, opacity 0.5s ease, margin-top 0.5s ease;
}

.timeline-group-entry[data-expanded="true"] .timeline-group-items {
    max-height: 5000px;
    opacity: 1;
    margin-top: 20px;
}

.timeline-group-entry[data-expanded="false"] .timeline-group-items {
    margin-top: 0;
}

.timeline-group-item-card {
    width: 100%;
    background: rgba(75, 85, 99, 0.6);
    border: 1px solid rgba(107, 163, 214, 0.2);
    padding: 20px;
    border-radius: 16px;
}

/* Group sub-items: keep normal top border, remove any side borders */
.timeline-group-item-card::after {
    display: none !important;
}

/* Ensure sub-items have the normal top border like regular cards */
.timeline-group-item-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: var(--border-bar-height);
    opacity: 1;
    transition: var(--transition);
}

/* Work sub-items get blue top border */
.timeline-group-item-card.timeline-card-work::before {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

/* Life sub-items get green top border */
.timeline-group-item-card.timeline-card-life::before {
    background: linear-gradient(90deg, var(--life-color), var(--life-light));
}

.timeline-group-item-card:hover {
    background: rgba(75, 85, 99, 0.8);
}

.timeline-year-small {
    position: static;
    display: inline-block;
    transform: none;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 6px 16px;
    border-radius: 25px;
    font-size: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(107, 163, 214, 0.25);
}

.timeline-title-small {
    font-size: 1.2rem;
}


.timeline-entry-wind-farm {
    min-height: 200px;
}

/* Wind farm year + button wrapper */
.wind-farm-year-wrapper {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    z-index: 5;
}

/* Position wrapper on opposite side for alternating items */
.timeline-entry:nth-child(odd) .wind-farm-year-wrapper {
    left: calc(50% + var(--timeline-year-offset));
    transform: translateX(0);
    justify-content: flex-start;
}

.timeline-entry:nth-child(even) .wind-farm-year-wrapper {
    left: calc(50% - var(--timeline-year-offset));
    transform: translateX(-100%);
    justify-content: flex-end;
}

/* Year inside wrapper - override absolute positioning */
.wind-farm-year-wrapper .timeline-year {
    position: static;
    transform: none;
    left: auto;
}

/* Contact button in wind farm */
.wind-farm-contact-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--bg-card);
    color: var(--primary-light);
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: var(--shadow), 0 0 20px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    border: 2px solid rgba(107, 163, 214, 0.4);
    white-space: nowrap;
    cursor: pointer;
    font-family: inherit;
}

.wind-farm-contact-btn:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(107, 163, 214, 0.3);
    transform: scale(1.05);
}

.wind-farm-contact-btn svg {
    flex-shrink: 0;
}

.wind-farm-container {
    width: calc(50% - var(--timeline-gap));
    position: relative;
    padding: var(--spacing-standard);
    padding-bottom: 0;
    overflow: hidden;
    min-height: 180px;
}

.timeline-entry:nth-child(odd) .wind-farm-container {
    margin-right: auto;
}

.timeline-entry:nth-child(even) .wind-farm-container {
    margin-left: auto;
}

/* Clouds layer - behind turbines */
.wind-farm-clouds {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: var(--wind-farm-clouds-bottom);
    z-index: 1;
    pointer-events: none;
}

.wind-farm-cloud {
    position: absolute;
    animation: driftCloud linear infinite;
}

.cloud-svg {
    width: 120px;
    height: 60px;
}

/* Different cloud positions and speeds for parallax */
.wind-farm-cloud-1 {
    top: 10%;
    left: -120px;
    animation-duration: 15s;
}

.wind-farm-cloud-2 {
    top: 30%;
    left: -120px;
    animation-duration: 20s;
    animation-delay: -7s;
}

.wind-farm-cloud-2 .cloud-svg {
    width: 100px;
    height: 50px;
}

.wind-farm-cloud-3 {
    top: 50%;
    left: -120px;
    animation-duration: 18s;
    animation-delay: -12s;
}

.wind-farm-cloud-3 .cloud-svg {
    width: 90px;
    height: 45px;
}

@keyframes driftCloud {
    from {
        transform: translateX(-120px);
    }
    to {
        transform: translateX(calc(100vw + 120px));
    }
}

/* Turbines layer */
.wind-farm-turbines {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 40px;
    padding-bottom: 15px;
    margin-bottom: -13px;
}

.wind-turbine {
    position: relative;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.wind-turbine-svg {
    width: 80px;
    height: 160px;
}

.wind-turbine-blades {
    animation: spinBlades linear infinite;
}

/* Different speeds for each turbine for realism */
.wind-turbine-1 .wind-turbine-blades {
    animation-duration: 3s;
}

.wind-turbine-2 .wind-turbine-blades {
    animation-duration: 3.5s;
}

.wind-turbine-2 .wind-turbine-svg {
    width: 90px;
    height: 180px;
}

.wind-turbine-3 .wind-turbine-blades {
    animation-duration: 2.8s;
}

@keyframes spinBlades {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Wheat field at the bottom */
.wind-farm-wheat {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: var(--wind-farm-wheat-height);
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
}

/* Add ground/soil gradient */
.wind-farm-wheat::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: var(--wind-farm-ground-height);
    background: linear-gradient(180deg,
        rgba(139, 92, 46, 0.3) 0%,
        rgba(101, 67, 33, 0.5) 100%
    );
    z-index: 1;
}

/* Individual wheat stalk */
.wheat-stalk {
    position: absolute;
    bottom: var(--wind-farm-wheat-stalk-bottom);
    transform-origin: bottom center;
    animation: wheatSway ease-in-out infinite;
    z-index: 2;
}

.wheat-stalk-svg {
    width: 12px;
    height: 100%;
    display: block;
}

/* Three different stalk types with varying heights and golden colors */
.wheat-stalk-1 {
    height: 45px;
    color: #f5c563;
    animation-duration: 3s;
}

.wheat-stalk-2 {
    height: 40px;
    color: #e8b84f;
    animation-duration: 3.5s;
}

.wheat-stalk-3 {
    height: 42px;
    color: #f4d291;
    animation-duration: 3.2s;
}

@keyframes wheatSway {
    0%, 100% {
        transform: rotate(0deg) translateX(0);
    }
    25% {
        transform: rotate(3deg) translateX(1.5px);
    }
    50% {
        transform: rotate(0deg) translateX(0);
    }
    75% {
        transform: rotate(-3deg) translateX(-1.5px);
    }
}

/* Hover effect: speed up rotation and clouds (handled by JavaScript to preserve animation progress) */

/* Mobile styles for wind farm */
@media (max-width: 768px) {
    /* Wind farm entry on mobile - stack everything */
    .timeline-entry-wind-farm {
        flex-direction: column !important;
        align-items: stretch !important;
    }

    /* Wind farm year wrapper on mobile - above the farm, stacked vertically */
    .wind-farm-year-wrapper,
    .timeline-entry:nth-child(odd) .wind-farm-year-wrapper,
    .timeline-entry:nth-child(even) .wind-farm-year-wrapper {
        position: static !important;
        left: auto !important;
        transform: none !important;
        width: 100%;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        margin-bottom: 20px;
        order: 1;
    }

    .timeline-entry-wind-farm .timeline-dot {
        order: 0;
    }

    .wind-farm-container {
        width: 100% !important;
        min-height: 140px;
        margin-left: 0 !important;
        margin-right: 0 !important;
        order: 2;
    }

    .wind-farm-turbines {
        gap: 20px;
        padding: 10px;
        padding-bottom: 15px;
        margin-bottom: -10px;
    }

    .wind-turbine-svg {
        width: 60px;
        height: 120px;
    }

    .wind-turbine-2 .wind-turbine-svg {
        width: 70px;
        height: 140px;
    }

    .cloud-svg {
        width: 80px;
        height: 40px;
    }

    .wind-farm-cloud-2 .cloud-svg {
        width: 70px;
        height: 35px;
    }

    .wind-farm-cloud-3 .cloud-svg {
        width: 60px;
        height: 30px;
    }

    .wind-farm-wheat {
        height: 35px;
    }

    .wheat-stalk-1 {
        height: 32px;
    }

    .wheat-stalk-2 {
        height: 28px;
    }

    .wheat-stalk-3 {
        height: 30px;
    }

    .wheat-stalk-svg {
        width: 10px;
    }
}


@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* Mobile */
@media (max-width: 768px) {
    /* Show hamburger button on mobile */
    .hamburger-btn {
        display: block;
    }

    /* Make back to top button more prominent on mobile */
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
    }

    .nav-content {
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }

    .site-title {
        font-size: 1.3rem;
    }

    /* Mobile menu wrapper - full screen, slides in from right */
    .mobile-menu-wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--bg-secondary);
        display: flex;
        flex-direction: column;
        padding: 80px 30px 30px;
        transition: right 0.3s ease;
        z-index: 1100;
        overflow-y: auto;
    }

    /* Close button for mobile menu - show on mobile */
    .mobile-menu-close {
        display: flex !important;
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        color: var(--text-color);
        cursor: pointer;
        padding: 8px;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        border-radius: 8px;
    }

    .mobile-menu-close:hover {
        background: rgba(107, 163, 214, 0.1);
        color: var(--primary-light);
    }

    .mobile-menu-close svg {
        display: block;
    }

    /* Show menu when active */
    .mobile-menu-wrapper.active {
        right: 0 !important;
    }

    /* Nav menu inside mobile wrapper */
    .nav-menu {
        flex-direction: column;
        gap: 0;
        margin-bottom: 40px;
        align-items: center;
    }

    .nav-menu li {
        width: 100%;
        max-width: 400px;
        margin: 0;
    }

    .nav-link {
        display: block;
        width: 100%;
        padding: 18px 24px;
        font-size: 1.2rem;
        text-align: center;
        border-radius: 12px;
        margin-bottom: 8px;
    }

    /* Nav buttons inside mobile menu */
    .nav-buttons {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding-top: 30px;
        border-top: 1px solid rgba(107, 163, 214, 0.2);
        align-items: center;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .contact-btn {
        width: 100%;
        border-radius: 12px;
        height: 55px;
        justify-content: center;
        font-size: 1rem;
    }

    .language-toggle {
        width: 100%;
        justify-content: center;
        padding: 8px;
    }

    .lang-btn {
        padding: 12px 28px;
        font-size: 1rem;
    }


    .content-section {
        padding: 60px 15px;
    }

    .skills-categories {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .language-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .language-card:nth-child(4) {
        grid-column: auto;
    }

    .timeline-line {
        left: var(--timeline-mobile-line-offset);
    }

    .timeline-entry {
        justify-content: flex-start !important;
        padding-left: calc(var(--timeline-mobile-line-offset) * 2);
        margin-bottom: 80px;
    }

    .timeline-dot {
        left: var(--timeline-mobile-line-offset);
    }

    /* Position year above card, centered with card on mobile */
    .timeline-entry .timeline-year,
    .timeline-entry:nth-child(odd) .timeline-year,
    .timeline-entry:nth-child(even) .timeline-year {
        position: absolute !important;
        left: calc(50% + var(--timeline-mobile-line-offset)) !important;
        transform: translateX(-50%) !important;
        top: -35px !important;
        text-align: center !important;
        font-size: 1.1rem;
        white-space: nowrap;
    }

    .timeline-card {
        width: 100% !important;
        margin: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .timeline-image-container {
        width: 100%;
        margin: 0 !important;
    }

    /* Ensure group content takes full width on mobile */
    .timeline-group-content {
        width: 100% !important;
    }

    .timeline-section {
        padding: 80px 15px 40px 15px;
    }

    /* Keep nav buttons visible on mobile */
    .nav-buttons {
        display: flex;
    }

    /* Hide only print button on mobile */
    .print-btn {
        display: none !important;
    }

    /* Group entries on mobile */
    .timeline-group-content {
        width: 100%;
    }

    .timeline-group-header {
        width: 100%;
    }

    .timeline-group-items {
        width: 100%;
        margin-left: 0;
        padding-left: 10px;
    }

    .timeline-group-item-card {
        margin-left: 0;
    }
}



/* Print */
@media print {
    /* Hide UI elements and non-printable entries */
    .nav-buttons,
    .print-btn,
    .main-nav,
    .wind-farm-clouds,
    .wind-farm-wheat,
    .timeline-entry[data-printable="false"] {
        display: none !important;
    }

    /* Reset backgrounds and colors for print */
    body {
        background: white;
        color: black;
    }

    /* Page setup */
    @page {
        margin: 1.5cm;
        size: A4;
    }

    /* Main content */
    .main-content {
        padding: 0;
        margin: 0;
    }

    .timeline-section {
        padding: 20px 0;
    }

    /* Add header with name */
    .timeline-section::before {
        content: 'James Lafa';
        display: block;
        font-size: 24pt;
        font-weight: bold;
        color: black;
        text-align: center;
        margin-bottom: 5px;
        line-height: 1.4;
    }

    /* Add URL below name */
    .timeline-section::after {
        content: 'https://jameslafa.github.io';
        display: block;
        font-size: 11pt;
        font-weight: normal;
        color: #666;
        text-align: center;
        margin-bottom: 20px;
        padding-bottom: 10px;
        border-bottom: 2px solid #333;
    }

    /* Timeline adjustments */
    .timeline-container {
        position: relative;
    }

    .timeline-line {
        left: 30px;
        width: 2px;
        background: #333;
        box-shadow: none;
    }

    .timeline-entries {
        position: relative;
    }

    /* All entries in single column - use block layout */
    .timeline-entry {
        display: block !important;
        justify-content: flex-start !important;
        padding-left: 0 !important;
        margin-bottom: 20px;
        page-break-inside: avoid;
    }

    /* Hide dots and timeline line */
    .timeline-dot,
    .timeline-dot-life,
    .timeline-dot-group {
        display: none !important;
    }

    .timeline-line {
        display: none !important;
    }

    /* Year positioning - above content, left aligned */
    .timeline-entry .timeline-year,
    .timeline-entry:nth-child(odd) .timeline-year,
    .timeline-entry:nth-child(even) .timeline-year {
        position: static !important;
        display: block !important;
        transform: none !important;
        color: #666 !important;
        font-size: 10pt;
        font-weight: normal;
        text-align: left !important;
        margin: 0 0 3px 0 !important;
        left: auto !important;
        top: auto !important;
        white-space: normal !important;
    }

    /* Remove card styling - make it look like paragraphs */
    .timeline-card,
    .timeline-card-life,
    .timeline-card-work {
        width: 100% !important;
        margin: 0 !important;
        background: transparent !important;
        border: none !important;
        border-radius: 0;
        padding: 0;
        box-shadow: none !important;
    }

    .timeline-card::before,
    .timeline-card-life::before,
    .timeline-group-header::after {
        display: none !important;
    }

    /* Typography - resume style */
    .timeline-title-container {
        display: block;
        margin-bottom: 3px;
    }

    .timeline-title {
        color: black !important;
        font-size: 12pt;
        font-weight: bold;
        margin: 0;
        display: inline;
    }

    .timeline-subtitle {
        color: #333 !important;
        font-size: 10pt;
        font-style: italic;
        margin-bottom: 5px;
        display: block;
    }

    .timeline-description {
        color: #000 !important;
        font-size: 10pt;
        line-height: 1.5;
        margin-bottom: 5px;
        margin-left: 0;
        text-align: justify;
    }

    .timeline-location {
        color: #666 !important;
        font-size: 9pt;
        display: block;
        margin-top: 3px;
    }

    .timeline-location::before {
        content: "";
    }

    /* Hide logos */
    .timeline-logo,
    .timeline-logo-small {
        display: none !important;
    }

    /* Group entries */
    .timeline-group-entry {
        display: block !important;
        page-break-inside: auto !important;
    }

    .timeline-group-content {
        width: 100% !important;
        display: block !important;
    }

    .timeline-group-header {
        cursor: default;
        border: none !important;
        background: transparent !important;
        padding: 0 !important;
        margin-bottom: 5px !important;
    }

    .timeline-group-summary {
        color: #000 !important;
        font-size: 10pt;
        line-height: 1.5;
        margin-bottom: 8px;
        text-align: justify;
    }

    .timeline-group-expand-btn {
        display: none !important;
    }

    /* Always show expanded items in print */
    .timeline-group-items {
        max-height: none !important;
        opacity: 1 !important;
        margin-top: 10px !important;
        margin-left: 0 !important;
        padding-left: 0 !important;
        overflow: visible !important;
        display: block !important;
        gap: 0 !important;
    }

    .timeline-group-item-card {
        background: transparent !important;
        border: none !important;
        padding: 0 !important;
        margin-bottom: 12px !important;
        page-break-inside: avoid;
    }

    .timeline-group-item-card::before {
        display: none !important;
    }

    .timeline-title-small {
        font-size: 11pt;
    }

    /* Wind farm - simplified for print */
    .timeline-entry-wind-farm {
        min-height: auto;
    }

    /* Hide contact button in print */
    .wind-farm-contact-btn {
        display: none !important;
    }

    /* Wind farm wrapper in print */
    .wind-farm-year-wrapper,
    .timeline-entry:nth-child(odd) .wind-farm-year-wrapper,
    .timeline-entry:nth-child(even) .wind-farm-year-wrapper {
        position: static !important;
        transform: none !important;
        left: auto !important;
        display: block !important;
        width: 100%;
        margin-bottom: 10px;
    }

    .wind-farm-container {
        width: 100% !important;
        padding: 10px 0;
        margin: 0 !important;
        min-height: auto;
    }

    .wind-farm-turbines {
        display: flex;
        justify-content: flex-start;
        gap: 20px;
        margin-bottom: 0;
        padding-left: 0;
    }

    .wind-turbine {
        filter: none;
    }

    .wind-turbine-svg {
        width: 40px !important;
        height: 80px !important;
    }

    .wind-turbine-2 .wind-turbine-svg {
        width: 45px !important;
        height: 90px !important;
    }

    .wind-turbine-blades {
        animation: none !important;
    }

    /* Remove link styling */
    .timeline-link {
        text-decoration: none;
        color: inherit;
        pointer-events: none;
    }

    .timeline-link::after {
        display: none;
    }
}
