/* Theme: Medieval Manuscript - Parchment textures, illuminated letters, rich burgundies and golds, gothic elegance */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&family=Crimson+Text:wght@400;600;700&display=swap');

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 88px;
}

body {
    font-family: 'Crimson Text', serif;
    font-size: 18px;
    line-height: 1.8;
    color: #3a2418;
    background: #f4ede4;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(139, 69, 19, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(184, 134, 11, 0.03) 0%, transparent 50%);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(139, 69, 19, 0.008) 2px, rgba(139, 69, 19, 0.008) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(139, 69, 19, 0.008) 2px, rgba(139, 69, 19, 0.008) 4px);
    background-size: 100% 100%;
    opacity: 0.6;
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 15% 25%, rgba(139, 0, 0, 0.04) 0%, transparent 45%),
        radial-gradient(ellipse at 85% 75%, rgba(184, 134, 11, 0.04) 0%, transparent 45%);
    pointer-events: none;
    z-index: 0;
}

#topnav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(58, 36, 24, 0.97);
    border-bottom: 3px solid #8b4513;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

#topnav.scrolled {
    background: rgba(58, 36, 24, 0.99);
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.4);
}

.nav-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 2.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 88px;
}

.logo h1 {
    font-family: 'Cinzel', serif;
    font-size: 1.65rem;
    font-weight: 700;
    color: #d4af37;
    margin: 0;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.logo h1::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 65px;
    height: 2px;
    background: linear-gradient(90deg, #d4af37 0%, #b8860b 100%);
}

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

.nav-menu li a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Cinzel', serif;
}

.nav-menu li a::before {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 1.5rem;
    right: 1.5rem;
    height: 2px;
    background: #d4af37;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-menu li a:hover::before,
.nav-menu li a.active::before {
    transform: scaleX(1);
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #f0e68c;
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: 2px solid #d4af37;
    color: #d4af37;
    font-size: 1.4rem;
    width: 50px;
    height: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-toggle:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: #f0e68c;
    color: #f0e68c;
}

#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 148px 0 100px;
    position: relative;
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(139, 0, 0, 0.08) 0%, transparent 60%);
    border-radius: 50%;
    animation: illuminateFloat 26s ease-in-out infinite;
}

#hero::after {
    content: '';
    position: absolute;
    bottom: -18%;
    left: -8%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(184, 134, 11, 0.08) 0%, transparent 60%);
    border-radius: 50%;
    animation: illuminateFloat 30s ease-in-out infinite reverse;
}

@keyframes illuminateFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -40px) scale(1.08);
    }
}

.hero-content {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 2.8rem;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 5.5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    animation: fadeInManuscript 1.2s ease-out;
}

@keyframes fadeInManuscript {
    0% {
        opacity: 0;
        transform: translateY(35px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text h1 {
    font-family: 'Cinzel', serif;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: #3a2418;
    letter-spacing: 1px;
    position: relative;
}

.hero-text h1::first-letter {
    font-size: 5.5rem;
    color: #8b0000;
    float: left;
    line-height: 0.85;
    margin-right: 8px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-text h1 br {
    display: block;
}

.hero-subtitle {
    font-size: 1.35rem;
    color: #6b4423;
    margin-bottom: 3rem;
    line-height: 1.7;
    font-weight: 600;
    letter-spacing: 0.5px;
}

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

.btn {
    display: inline-block;
    padding: 1.2rem 2.8rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.35s ease;
    font-size: 1rem;
    letter-spacing: 1.5px;
    font-family: 'Cinzel', serif;
    text-transform: uppercase;
    position: relative;
    border: 3px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, #8b0000 0%, #a52a2a 100%);
    color: #f4ede4;
    border-color: #6b0000;
    box-shadow: 
        0 8px 25px rgba(139, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 12px 35px rgba(139, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    background: linear-gradient(135deg, #6b0000 0%, #8b0000 100%);
}

.btn-secondary {
    background: transparent;
    color: #8b4513;
    border: 3px solid #8b4513;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: #8b4513;
    color: #f4ede4;
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(139, 69, 19, 0.35);
}

.hero-image {
    animation: fadeInManuscript 1.2s ease-out 0.25s both;
}

.profile-card {
    background: linear-gradient(135deg, rgba(58, 36, 24, 0.85) 0%, rgba(58, 36, 24, 0.9) 100%);
    backdrop-filter: blur(8px);
    padding: 2.5rem;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        inset 0 0 0 2px rgba(212, 175, 55, 0.3);
    border: 3px solid #8b4513;
    transition: all 0.5s ease;
    position: relative;
}

.profile-card::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    pointer-events: none;
}

.profile-card:hover {
    transform: translateY(-12px);
    box-shadow: 
        0 28px 75px rgba(0, 0, 0, 0.5),
        inset 0 0 0 2px rgba(212, 175, 55, 0.5);
}

.profile-card img {
    width: 100%;
    margin-bottom: 1.8rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    border: 3px solid rgba(212, 175, 55, 0.5);
}

.profile-details h3 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    margin-bottom: 0.7rem;
    color: #d4af37;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.profile-details p {
    color: #e8d5c4;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-weight: 600;
}

.social-links a {
    display: inline-block;
    padding: 1rem 2.3rem;
    background: linear-gradient(135deg, #8b0000 0%, #a52a2a 100%);
    color: #f4ede4;
    text-decoration: none;
    font-weight: 700;
    font-family: 'Cinzel', serif;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.35s ease;
    box-shadow: 
        0 8px 25px rgba(139, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 3px solid #6b0000;
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 12px 35px rgba(139, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    background: linear-gradient(135deg, #6b0000 0%, #8b0000 100%);
}

section {
    padding: 105px 0;
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 2.8rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4.8rem;
    position: relative;
}

.section-header::before {
    content: '❦';
    position: absolute;
    top: -48px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.5rem;
    color: #8b4513;
    opacity: 0.5;
}

.section-header h2 {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.25;
    color: #3a2418;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #8b4513 50%, transparent 100%);
}

#experience {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.05) 0%, rgba(184, 134, 11, 0.05) 100%);
}

.timeline {
    position: relative;
    max-width: 1080px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 110px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #8b4513 0%, #d4af37 50%, #8b4513 100%);
}

.timeline-item {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 4rem;
    margin-bottom: 4.5rem;
    position: relative;
}

.timeline-year {
    font-family: 'Cinzel', serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #8b0000;
    position: relative;
    z-index: 2;
    text-align: right;
    padding-right: 2rem;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
}

.timeline-year::after {
    content: '';
    position: absolute;
    right: -53px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, #8b0000 0%, #d4af37 100%);
    border: 4px solid #f4ede4;
    box-shadow: 
        0 0 0 6px rgba(139, 69, 19, 0.2),
        0 4px 12px rgba(0, 0, 0, 0.3);
}

.timeline-content {
    background: linear-gradient(135deg, rgba(244, 237, 228, 0.95) 0%, rgba(244, 237, 228, 0.85) 100%);
    padding: 2.5rem;
    border: 2px solid #8b4513;
    border-left: 5px solid #8b0000;
    transition: all 0.4s ease;
    box-shadow: 
        0 10px 35px rgba(0, 0, 0, 0.15),
        inset 0 0 0 1px rgba(139, 69, 19, 0.1);
}

.timeline-content:hover {
    transform: translateX(10px);
    box-shadow: 
        0 15px 45px rgba(0, 0, 0, 0.25),
        inset 0 0 0 1px rgba(139, 69, 19, 0.2);
    border-left-width: 6px;
}

.timeline-content h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.85rem;
    margin-bottom: 0.6rem;
    color: #3a2418;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.timeline-content h4 {
    color: #8b4513;
    font-size: 1.1rem;
    margin-bottom: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-family: 'Cinzel', serif;
}

.timeline-content p {
    color: #6b4423;
    line-height: 1.8;
    margin: 0;
}

.timeline-content a {
    color: #8b0000;
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.timeline-content a:hover {
    border-bottom-color: #8b0000;
}

#ai {
    background: linear-gradient(135deg, rgba(58, 36, 24, 0.03) 0%, rgba(139, 0, 0, 0.03) 100%);
}

.ai-projects {
    display: grid;
    gap: 3.5rem;
}

.project-card {
    background: linear-gradient(135deg, rgba(244, 237, 228, 0.95) 0%, rgba(244, 237, 228, 0.85) 100%);
    padding: 3rem;
    border: 2px solid #8b4513;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #8b0000 0%, #d4af37 50%, #8b0000 100%);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.25);
}

.project-header {
    display: flex;
    align-items: center;
    gap: 1.8rem;
    margin-bottom: 1.2rem;
}

.project-header h3 {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    color: #3a2418;
    margin: 0;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.project-client {
    color: #8b4513;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1.8rem;
    letter-spacing: 0.5px;
    font-family: 'Cinzel', serif;
}

.project-card > p {
    color: #6b4423;
    line-height: 1.8;
    margin-bottom: 2.2rem;
}

.project-impact {
    background: rgba(139, 0, 0, 0.06);
    padding: 1.8rem;
    border-left: 4px solid #8b0000;
    color: #3a2418;
    line-height: 1.8;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.05);
}

.project-impact strong {
    color: #8b0000;
    font-weight: 700;
}

#speaking {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.05) 0%, rgba(184, 134, 11, 0.05) 100%);
}

.speaking-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3.5rem;
}

.year-section {
    background: linear-gradient(135deg, rgba(244, 237, 228, 0.95) 0%, rgba(244, 237, 228, 0.85) 100%);
    padding: 2.8rem;
    border: 2px solid #8b4513;
    transition: all 0.4s ease;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.year-section:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.25);
}

.year-section h3 {
    font-family: 'Cinzel', serif;
    font-size: 2.4rem;
    margin-bottom: 2rem;
    color: #8b4513;
    text-align: center;
    padding-bottom: 1.3rem;
    border-bottom: 3px solid rgba(139, 69, 19, 0.3);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.year-section.books {
    grid-column: span 2;
    background: linear-gradient(135deg, #8b0000 0%, #a52a2a 100%);
    border: 3px solid #6b0000;
    box-shadow: 
        0 15px 50px rgba(139, 0, 0, 0.4),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.year-section.books h3 {
    color: #d4af37;
    border-bottom-color: rgba(212, 175, 55, 0.4);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.achievements {
    list-style: none;
}

.achievements li {
    padding: 1.1rem 0;
    color: #6b4423;
    border-bottom: 1px solid rgba(139, 69, 19, 0.15);
    line-height: 1.8;
    position: relative;
    padding-left: 2.5rem;
}

.achievements li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: #8b4513;
    font-size: 1.2rem;
}

.year-section.books .achievements li {
    color: #f4ede4;
    border-bottom-color: rgba(212, 175, 55, 0.2);
}

.year-section.books .achievements li::before {
    color: #d4af37;
}

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

.achievements strong {
    color: #3a2418;
    font-weight: 700;
}

.year-section.books .achievements strong {
    color: #f0e68c;
}

#personal {
    background: linear-gradient(135deg, rgba(58, 36, 24, 0.03) 0%, rgba(139, 0, 0, 0.03) 100%);
}

#contact {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.08) 0%, rgba(184, 134, 11, 0.08) 100%);
}

.contact-card {
    background: linear-gradient(135deg, rgba(58, 36, 24, 0.92) 0%, rgba(58, 36, 24, 0.95) 100%);
    padding: 5.5rem 4.5rem;
    text-align: center;
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.4),
        inset 0 0 0 2px rgba(212, 175, 55, 0.3);
    max-width: 1020px;
    margin: 0 auto;
    border: 3px solid #8b4513;
    position: relative;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    pointer-events: none;
}

.contact-card h2 {
    font-family: 'Cinzel', serif;
    font-size: 3.8rem;
    margin-bottom: 2rem;
    color: #d4af37;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
}

.contact-card > p {
    font-size: 1.25rem;
    color: #e8d5c4;
    line-height: 1.8;
    margin-bottom: 3.5rem;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 600;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 1.3rem;
    padding: 1.4rem 3.2rem;
    background: linear-gradient(135deg, #8b0000 0%, #a52a2a 100%);
    color: #f4ede4;
    text-decoration: none;
    font-weight: 700;
    font-family: 'Cinzel', serif;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.35s ease;
    box-shadow: 
        0 12px 35px rgba(139, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 3px solid #6b0000;
}

.contact-link:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 16px 45px rgba(139, 0, 0, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    background: linear-gradient(135deg, #6b0000 0%, #8b0000 100%);
}

.contact-link .icon {
    font-size: 1.6rem;
}

#footer {
    background: rgba(58, 36, 24, 0.97);
    padding: 3.5rem 0;
    text-align: center;
    color: #d4af37;
    border-top: 3px solid #8b4513;
    box-shadow: 0 -6px 25px rgba(0, 0, 0, 0.3);
}

#footer a {
    color: #d4af37;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
}

#footer a:hover {
    color: #f0e68c;
}

@media screen and (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 4.5rem;
        text-align: center;
    }

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

    .hero-image {
        max-width: 540px;
        margin: 0 auto;
    }

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

    .year-section.books {
        grid-column: span 1;
    }
}

@media screen and (max-width: 900px) {
    .nav-container {
        padding: 0 2.2rem;
        height: 82px;
    }

    html {
        scroll-padding-top: 82px;
    }

    .nav-menu {
        position: fixed;
        top: 82px;
        left: 0;
        right: 0;
        background: rgba(58, 36, 24, 0.98);
        flex-direction: column;
        padding: 2.8rem;
        gap: 0;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
        transform: translateY(-150%);
        transition: transform 0.4s ease;
        border-bottom: 3px solid #8b4513;
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu li a {
        width: 100%;
        text-align: center;
        padding: 1.2rem;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    }

    .mobile-toggle {
        display: block;
    }

    .hero-text h1 {
        font-size: 3.2rem;
    }

    .section-header h2 {
        font-size: 2.8rem;
    }

    .timeline::before {
        left: 22px;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 4rem;
        padding-left: 4.5rem;
    }

    .timeline-year {
        text-align: left;
        padding-right: 0;
    }

    .timeline-year::after {
        left: -42px;
        right: auto;
    }

    .contact-card {
        padding: 4.2rem 3rem;
    }
}

@media screen and (max-width: 600px) {
    .container {
        padding: 0 2rem;
    }

    .nav-container {
        padding: 0 2rem;
        height: 76px;
    }

    html {
        scroll-padding-top: 76px;
    }

    #hero {
        padding: 120px 0 85px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    section {
        padding: 80px 0;
    }

    .section-header {
        margin-bottom: 4rem;
    }

    .section-header h2 {
        font-size: 2.3rem;
    }

    .profile-card {
        padding: 2rem;
    }

    .timeline-item {
        padding-left: 3.8rem;
    }

    .timeline-content {
        padding: 2.2rem;
    }

    .project-card {
        padding: 2.5rem 2rem;
    }

    .contact-card {
        padding: 3.8rem 2rem;
    }

    .contact-card h2 {
        font-size: 2.8rem;
    }

    .contact-info {
        flex-direction: column;
    }

    .contact-link {
        justify-content: center;
        padding: 1.2rem 2.2rem;
        font-size: 0.9rem;
    }
}