/* Theme: Coral Reef - Day 3 (Letter C): Inspired by underwater worlds, tropical waters, sea anemones, colorful marine life, ocean currents, coral formations, aquatic ecosystems, tide pools, bioluminescence, coastal serenity */

@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700;800&family=Lora:wght@400;500;600;700&display=swap');

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

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

body {
    font-family: 'Raleway', sans-serif;
    font-size: 16.2px;
    line-height: 1.78;
    color: #0a4958;
    background: linear-gradient(165deg, #fef9f1 0%, #fff5e8 25%, #ffecd1 50%, #fff8e7 75%, #fffbf0 100%);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 12% 18%, rgba(255, 127, 80, 0.12) 0%, transparent 48%),
        radial-gradient(circle at 88% 82%, rgba(0, 191, 165, 0.11) 0%, transparent 52%),
        radial-gradient(circle at 45% 55%, rgba(255, 183, 77, 0.08) 0%, transparent 45%);
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 127, 80, 0.03) 2px, transparent 2px),
        radial-gradient(circle at 60% 80%, rgba(0, 191, 165, 0.03) 2px, transparent 2px),
        radial-gradient(circle at 75% 25%, rgba(255, 183, 77, 0.03) 2px, transparent 2px);
    background-size: 120px 120px, 95px 95px, 140px 140px;
    pointer-events: none;
    z-index: 0;
    animation: coralDrift 45s linear infinite;
}

@keyframes coralDrift {
    0% {
        background-position: 0 0, 0 0, 0 0;
    }
    100% {
        background-position: 120px 120px, 95px 95px, 140px 140px;
    }
}

#topnav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(254, 249, 241, 0.88);
    backdrop-filter: blur(14px);
    border-bottom: 3px solid rgba(255, 127, 80, 0.22);
    box-shadow: 0 2px 18px rgba(10, 73, 88, 0.09);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

#topnav.scrolled {
    background: rgba(254, 249, 241, 0.94);
    box-shadow: 0 4px 26px rgba(10, 73, 88, 0.14);
}

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

.logo h1 {
    font-family: 'Lora', serif;
    font-size: 1.62rem;
    font-weight: 700;
    color: #0a4958;
    margin: 0;
    letter-spacing: 0.4px;
    position: relative;
    padding-left: 2.4rem;
}

.logo h1::before {
    content: '◯';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: #ff7f50;
    animation: coralPulse 3s ease-in-out infinite;
}

@keyframes coralPulse {
    0%, 100% {
        opacity: 0.6;
        transform: translateY(-50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translateY(-50%) scale(1.15);
    }
}

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

.nav-menu li a {
    display: block;
    padding: 0.72rem 1.42rem;
    color: #0a4958;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.88rem;
    transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    letter-spacing: 0.4px;
    border-radius: 22px;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff7f50 0%, #ffb74d 100%);
    transition: width 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 42%;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #ff7f50;
    background: rgba(255, 127, 80, 0.08);
}

.mobile-toggle {
    display: none;
    background: linear-gradient(135deg, #ff7f50 0%, #ff9966 100%);
    border: none;
    color: #fffbf0;
    font-size: 1.48rem;
    width: 48px;
    height: 48px;
    cursor: pointer;
    transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(255, 127, 80, 0.32);
}

.mobile-toggle:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 22px rgba(255, 127, 80, 0.42);
}

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

#hero::before {
    content: '';
    position: absolute;
    top: -18%;
    right: -12%;
    width: 540px;
    height: 540px;
    background: radial-gradient(circle, rgba(255, 127, 80, 0.18) 0%, transparent 62%);
    border-radius: 50%;
    animation: coralWave 22s ease-in-out infinite;
}

#hero::after {
    content: '';
    position: absolute;
    bottom: -16%;
    left: -10%;
    width: 510px;
    height: 510px;
    background: radial-gradient(circle, rgba(0, 191, 165, 0.16) 0%, transparent 62%);
    border-radius: 50%;
    animation: coralWave 26s ease-in-out infinite reverse;
}

@keyframes coralWave {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.52;
    }
    33% {
        transform: translate(28px, -32px) rotate(8deg);
        opacity: 0.72;
    }
    66% {
        transform: translate(-22px, 26px) rotate(-6deg);
        opacity: 0.62;
    }
}

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

.hero-text {
    animation: coralRise 1.05s cubic-bezier(0.4, 0, 0.2, 1) 0s both;
}

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

.hero-text h1 {
    font-family: 'Lora', serif;
    font-size: 3.92rem;
    font-weight: 700;
    line-height: 1.22;
    margin-bottom: 2.05rem;
    color: #0a4958;
    letter-spacing: -0.4px;
}

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

.hero-subtitle {
    font-size: 1.28rem;
    color: #2d6a7a;
    margin-bottom: 3.05rem;
    line-height: 1.68;
    font-weight: 400;
    letter-spacing: 0.25px;
}

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

.btn {
    display: inline-block;
    padding: 1.08rem 2.82rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.98rem;
    letter-spacing: 0.42px;
    border-radius: 28px;
    font-family: 'Raleway', sans-serif;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, #ff7f50 0%, #ff9966 100%);
    color: #fffbf0;
    border: 2px solid transparent;
    box-shadow: 0 8px 24px rgba(255, 127, 80, 0.32);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(255, 127, 80, 0.42);
}

.btn-secondary {
    background: #fffbf0;
    color: #00bfa5;
    border: 2px solid #00bfa5;
    box-shadow: 0 6px 20px rgba(0, 191, 165, 0.22);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #00bfa5 0%, #00d4ba 100%);
    color: #fffbf0;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0, 191, 165, 0.32);
}

.hero-image {
    animation: coralRise 1.05s cubic-bezier(0.4, 0, 0.2, 1) 0.18s both;
}

.profile-card {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(18px);
    padding: 2.25rem;
    box-shadow: 
        0 0 0 2px rgba(255, 127, 80, 0.18),
        0 12px 42px rgba(10, 73, 88, 0.14);
    transition: all 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border-radius: 32px;
}

.profile-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, #ff7f50 0%, #ffb74d 50%, #00bfa5 100%);
    border-radius: 32px 32px 0 0;
}

.profile-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 
        0 0 0 2px rgba(255, 127, 80, 0.32),
        0 18px 56px rgba(10, 73, 88, 0.22);
}

.profile-card img {
    width: 100%;
    margin-bottom: 1.68rem;
    border-radius: 24px;
    box-shadow: 0 8px 28px rgba(10, 73, 88, 0.18);
}

.profile-details h3 {
    font-family: 'Lora', serif;
    font-size: 2.02rem;
    margin-bottom: 0.62rem;
    color: #0a4958;
    font-weight: 700;
}

.profile-details p {
    color: #2d6a7a;
    margin-bottom: 1.78rem;
    line-height: 1.62;
    font-weight: 400;
}

.social-links a {
    display: inline-block;
    padding: 0.98rem 2.35rem;
    background: linear-gradient(135deg, #00bfa5 0%, #00d4ba 100%);
    color: #fffbf0;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.42px;
    transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 24px;
    box-shadow: 0 7px 22px rgba(0, 191, 165, 0.28);
    font-family: 'Raleway', sans-serif;
}

.social-links a:hover {
    background: linear-gradient(135deg, #00d4ba 0%, #00e9cf 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 191, 165, 0.38);
}

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

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

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

.section-header::before {
    content: '◯◯◯';
    position: absolute;
    top: -42px;
    left: 50%;
    transform: translateX(-50%);
    color: #ffb74d;
    font-size: 1.28rem;
    letter-spacing: 0.52rem;
    opacity: 0.72;
}

.section-header h2 {
    font-family: 'Lora', serif;
    font-size: 3.52rem;
    font-weight: 700;
    line-height: 1.25;
    color: #0a4958;
    letter-spacing: -0.38px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 72px;
    height: 4px;
    background: linear-gradient(90deg, #ff7f50 0%, #ffb74d 50%, #00bfa5 100%);
    border-radius: 4px;
}

#experience {
    background: rgba(255, 255, 255, 0.42);
    backdrop-filter: blur(8px);
}

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

.timeline::before {
    content: '';
    position: absolute;
    left: 215px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #ff7f50 0%, #ffb74d 33%, #00bfa5 66%, #0098a6 100%);
    border-radius: 2px;
}

.timeline-item {
    display: grid;
    grid-template-columns: 425px 1fr;
    gap: 5.15rem;
    margin-bottom: 4.68rem;
    position: relative;
}

.timeline-year {
    font-family: 'Lora', serif;
    font-size: 4.72rem;
    font-weight: 700;
    color: rgba(255, 127, 80, 0.28);
    position: relative;
    z-index: 2;
    text-align: right;
    padding-right: 4.52rem;
    letter-spacing: -1.22px;
}

.timeline-year::after {
    content: '';
    position: absolute;
    right: -82px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background: #ff7f50;
    border-radius: 50%;
    box-shadow: 
        0 0 0 6px rgba(254, 249, 241, 1),
        0 0 0 12px rgba(255, 127, 80, 0.22),
        0 0 22px rgba(255, 127, 80, 0.38);
    animation: coralGlow 3s ease-in-out infinite;
}

@keyframes coralGlow {
    0%, 100% {
        box-shadow: 
            0 0 0 6px rgba(254, 249, 241, 1),
            0 0 0 12px rgba(255, 127, 80, 0.22),
            0 0 22px rgba(255, 127, 80, 0.38);
    }
    50% {
        box-shadow: 
            0 0 0 6px rgba(254, 249, 241, 1),
            0 0 0 16px rgba(255, 127, 80, 0.32),
            0 0 32px rgba(255, 127, 80, 0.52);
    }
}

.timeline-content {
    background: rgba(255, 255, 255, 0.68);
    backdrop-filter: blur(12px);
    padding: 2.52rem;
    transition: all 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 26px rgba(10, 73, 88, 0.11);
    position: relative;
    border-radius: 24px;
    border-left: 5px solid rgba(255, 127, 80, 0.28);
}

.timeline-content:hover {
    transform: translateX(8px);
    box-shadow: 0 12px 38px rgba(10, 73, 88, 0.18);
    border-left-color: #ff7f50;
    background: rgba(255, 255, 255, 0.82);
}

.timeline-content h3 {
    font-family: 'Lora', serif;
    font-size: 1.88rem;
    margin-bottom: 0.58rem;
    color: #0a4958;
    font-weight: 700;
}

.timeline-content h4 {
    color: #ff7f50;
    font-size: 1.12rem;
    margin-bottom: 1.32rem;
    font-weight: 600;
}

.timeline-content p {
    color: #2d6a7a;
    line-height: 1.78;
    margin: 0;
}

.timeline-content a {
    color: #00bfa5;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-content a:hover {
    border-bottom-color: #00bfa5;
    color: #00d4ba;
}

#ai {
    background: rgba(255, 250, 240, 0.48);
    backdrop-filter: blur(8px);
}

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

.project-card {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(12px);
    padding: 3.22rem;
    transition: all 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 10px 32px rgba(10, 73, 88, 0.12);
    border-radius: 28px;
    border-top: 6px solid #ff7f50;
}

.project-card::after {
    content: '◯';
    position: absolute;
    top: 28px;
    right: 28px;
    font-size: 3.2rem;
    color: rgba(255, 183, 77, 0.12);
}

.project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(10, 73, 88, 0.19);
    background: rgba(255, 255, 255, 0.88);
}

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

.project-header h3 {
    font-family: 'Lora', serif;
    font-size: 2.32rem;
    color: #0a4958;
    margin: 0;
    font-weight: 700;
}

.project-client {
    color: #ff7f50;
    font-weight: 600;
    font-size: 1.08rem;
    margin-bottom: 2.02rem;
}

.project-card > p {
    color: #2d6a7a;
    line-height: 1.78;
    margin-bottom: 2.42rem;
}

.project-impact {
    background: linear-gradient(135deg, rgba(255, 127, 80, 0.08) 0%, rgba(255, 183, 77, 0.08) 100%);
    padding: 1.82rem;
    color: #0a4958;
    line-height: 1.78;
    border-radius: 18px;
    border-left: 5px solid #ffb74d;
}

.project-impact strong {
    color: #00bfa5;
    font-weight: 600;
}

#speaking {
    background: rgba(255, 255, 255, 0.42);
    backdrop-filter: blur(8px);
}

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

.year-section {
    background: rgba(255, 255, 255, 0.68);
    backdrop-filter: blur(12px);
    padding: 2.85rem;
    transition: all 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 26px rgba(10, 73, 88, 0.11);
    border-radius: 24px;
    position: relative;
    border-top: 5px solid rgba(255, 127, 80, 0.28);
}

.year-section:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 38px rgba(10, 73, 88, 0.18);
    border-top-color: #ff7f50;
    background: rgba(255, 255, 255, 0.82);
}

.year-section h3 {
    font-family: 'Lora', serif;
    font-size: 3.12rem;
    margin-bottom: 2.42rem;
    color: #0a4958;
    text-align: center;
    padding-bottom: 1.72rem;
    border-bottom: 3px solid rgba(255, 127, 80, 0.18);
    font-weight: 700;
}

.year-section.books {
    grid-column: span 2;
    background: linear-gradient(135deg, #ff7f50 0%, #ff9966 50%, #ffb74d 100%);
    border-top-color: #00bfa5;
}

.year-section.books h3 {
    color: #fffbf0;
    border-bottom-color: rgba(255, 251, 240, 0.28);
}

.achievements {
    list-style: none;
}

.achievements li {
    padding: 1.28rem 0;
    color: #2d6a7a;
    border-bottom: 2px solid rgba(10, 73, 88, 0.08);
    line-height: 1.78;
    position: relative;
    padding-left: 2.12rem;
}

.achievements li::before {
    content: '◯';
    position: absolute;
    left: 0;
    top: 1.28rem;
    color: #ffb74d;
    font-size: 0.95rem;
}

.year-section.books .achievements li {
    color: rgba(255, 251, 240, 0.92);
    border-bottom-color: rgba(255, 251, 240, 0.18);
}

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

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

.achievements strong {
    color: #0a4958;
    font-weight: 600;
}

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

#personal {
    background: rgba(255, 250, 240, 0.48);
    backdrop-filter: blur(8px);
}

#contact {
    background: linear-gradient(165deg, rgba(255, 127, 80, 0.08) 0%, rgba(0, 191, 165, 0.08) 100%);
    backdrop-filter: blur(8px);
}

.contact-card {
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(16px);
    padding: 5.42rem 4.82rem;
    text-align: center;
    box-shadow: 0 16px 48px rgba(10, 73, 88, 0.14);
    max-width: 1125px;
    margin: 0 auto;
    border-radius: 32px;
    border: 3px solid rgba(255, 127, 80, 0.22);
}

.contact-card h2 {
    font-family: 'Lora', serif;
    font-size: 3.92rem;
    margin-bottom: 2.42rem;
    color: #0a4958;
    font-weight: 700;
    letter-spacing: -0.48px;
}

.contact-card > p {
    font-size: 1.26rem;
    color: #2d6a7a;
    line-height: 1.78;
    margin-bottom: 4.12rem;
    max-width: 925px;
    margin-left: auto;
    margin-right: auto;
}

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

.contact-link {
    display: flex;
    align-items: center;
    gap: 1.32rem;
    padding: 1.32rem 3.22rem;
    background: linear-gradient(135deg, #ff7f50 0%, #ff9966 100%);
    color: #fffbf0;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.42px;
    transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 28px;
    box-shadow: 0 10px 28px rgba(255, 127, 80, 0.32);
    font-family: 'Raleway', sans-serif;
}

.contact-link:hover {
    background: linear-gradient(135deg, #ff9966 0%, #ffb280 100%);
    transform: translateY(-3px);
    box-shadow: 0 14px 38px rgba(255, 127, 80, 0.42);
}

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

#footer {
    background: linear-gradient(135deg, #0a4958 0%, #0d5866 50%, #105f6e 100%);
    padding: 3.92rem 0;
    text-align: center;
    color: rgba(255, 251, 240, 0.72);
    border-top: 4px solid #ff7f50;
}

#footer a {
    color: #ffb74d;
    text-decoration: none;
    transition: color 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
}

#footer a:hover {
    color: #00bfa5;
}

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

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

    .hero-image {
        max-width: 505px;
        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.12rem;
        height: 68px;
    }

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

    .nav-menu {
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        background: rgba(254, 249, 241, 0.96);
        backdrop-filter: blur(14px);
        flex-direction: column;
        padding: 2.82rem;
        gap: 0;
        box-shadow: 0 14px 38px rgba(10, 73, 88, 0.14);
        transform: translateY(-150%);
        transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
        border-bottom: 3px solid rgba(255, 127, 80, 0.22);
    }

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

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

    .nav-menu li a {
        width: 100%;
        text-align: center;
        padding: 1.05rem;
        border-bottom: 1px solid rgba(10, 73, 88, 0.08);
    }

    .nav-menu li a::after {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

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

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

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

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 2.72rem;
        margin-bottom: 4.68rem;
        padding-left: 5.82rem;
    }

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

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

    .contact-card {
        padding: 4.32rem 3.52rem;
    }
}

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

    .nav-container {
        padding: 0 1.92rem;
        height: 64px;
    }

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

    #hero {
        padding: 112px 0 82px;
    }

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

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

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

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

    section {
        padding: 78px 0;
    }

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

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

    .profile-card {
        padding: 1.82rem;
    }

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

    .timeline-content {
        padding: 2.12rem;
    }

    .project-card {
        padding: 2.72rem 2.12rem;
    }

    .contact-card {
        padding: 3.92rem 2.12rem;
    }

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

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

    .contact-link {
        justify-content: center;
        padding: 1.12rem 2.12rem;
        font-size: 0.94rem;
    }
}