/* Theme: Desert Dunes - Day 30: Inspired by Sahara sunsets, golden sand textures, oasis serenity, warm earth tones, ancient desert wisdom, nomadic elegance, terracotta pottery, sunbaked landscapes, mirage shimmer, endless horizons */

@import url('https://fonts.googleapis.com/css2?family=Crimson+Pro:wght@300;400;500;600;700;800&family=Karla:wght@300;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: 'Karla', sans-serif;
    font-size: 16.8px;
    line-height: 1.75;
    color: #3d2817;
    background: linear-gradient(155deg, #fdf8f0 0%, #f9ede1 18%, #f4dfc8 42%, #f7e6d5 68%, #fefaf3 100%);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 22% 18%, rgba(217, 151, 87, 0.09) 0%, transparent 38%),
        radial-gradient(circle at 78% 82%, rgba(196, 123, 68, 0.08) 0%, transparent 42%),
        radial-gradient(circle at 45% 50%, rgba(230, 175, 115, 0.06) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
    animation: desertHaze 40s ease-in-out infinite alternate;
}

@keyframes desertHaze {
    0%, 100% {
        opacity: 1;
        transform: scale(1) translateX(0);
    }
    50% {
        opacity: 0.82;
        transform: scale(1.08) translateX(15px);
    }
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            135deg,
            transparent,
            transparent 92px,
            rgba(217, 151, 87, 0.022) 92px,
            rgba(217, 151, 87, 0.022) 95px
        );
    pointer-events: none;
    z-index: 0;
}

#topnav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 248, 240, 0.91);
    backdrop-filter: blur(16px);
    border-bottom: 1.5px solid rgba(217, 151, 87, 0.22);
    box-shadow: 0 3px 18px rgba(61, 40, 23, 0.08);
    transition: all 0.38s ease;
}

#topnav.scrolled {
    background: rgba(253, 248, 240, 0.96);
    box-shadow: 0 5px 28px rgba(61, 40, 23, 0.12);
    border-bottom-color: rgba(217, 151, 87, 0.32);
}

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

.logo h1 {
    font-family: 'Crimson Pro', serif;
    font-size: 1.58rem;
    font-weight: 600;
    color: #3d2817;
    margin: 0;
    letter-spacing: 0.48px;
    position: relative;
    padding-left: 3.05rem;
}

.logo h1::before {
    content: '🏜️';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.05rem;
    animation: desertWave 7.5s ease-in-out infinite;
}

@keyframes desertWave {
    0%, 100% {
        transform: translateY(-50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateY(-50%) scale(1.12);
        opacity: 0.88;
    }
}

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

.nav-menu li a {
    display: block;
    padding: 0.72rem 1.68rem;
    color: #3d2817;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.91rem;
    transition: all 0.32s ease;
    position: relative;
    letter-spacing: 0.72px;
    border-radius: 6px;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 1.68rem;
    right: 1.68rem;
    height: 1.5px;
    background: linear-gradient(90deg, #d99757 0%, #c47b44 100%);
    transform: scaleX(0);
    transition: transform 0.32s ease;
}

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

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #d99757;
    background: rgba(217, 151, 87, 0.055);
}

.mobile-toggle {
    display: none;
    background: linear-gradient(135deg, #d99757 0%, #c47b44 100%);
    border: none;
    color: #fdf8f0;
    font-size: 1.68rem;
    width: 52px;
    height: 52px;
    cursor: pointer;
    transition: all 0.32s ease;
    border-radius: 6px;
    box-shadow: 0 6px 22px rgba(217, 151, 87, 0.32);
}

.mobile-toggle:hover {
    background: linear-gradient(135deg, #c47b44 0%, #a8643a 100%);
    box-shadow: 0 9px 32px rgba(196, 123, 68, 0.42);
}

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

#hero::before {
    content: '☀️';
    position: absolute;
    top: 14%;
    right: 9%;
    font-size: 11.5rem;
    opacity: 0.062;
    animation: desertSun 28s ease-in-out infinite;
}

#hero::after {
    content: '🌵';
    position: absolute;
    bottom: 16%;
    left: 6%;
    font-size: 13.5rem;
    opacity: 0.052;
    animation: desertMirage 32s ease-in-out infinite;
}

@keyframes desertSun {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.062;
    }
    50% {
        transform: translate(28px, -38px) scale(1.08);
        opacity: 0.092;
    }
}

@keyframes desertMirage {
    0%, 100% {
        transform: translate(0, 0) scaleY(1);
        opacity: 0.052;
    }
    50% {
        transform: translate(-22px, 12px) scaleY(1.05);
        opacity: 0.078;
    }
}

.hero-content {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 3.65rem;
    display: grid;
    grid-template-columns: 1.32fr 1fr;
    gap: 7.25rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    animation: duneRise 1.28s ease-out;
}

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

.hero-text h1 {
    font-family: 'Crimson Pro', serif;
    font-size: 4.65rem;
    font-weight: 700;
    line-height: 1.14;
    margin-bottom: 2.75rem;
    color: #3d2817;
    letter-spacing: -0.38px;
}

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

.hero-subtitle {
    font-size: 1.52rem;
    color: #6b4e37;
    margin-bottom: 4.05rem;
    line-height: 1.68;
    font-weight: 400;
    letter-spacing: 0.22px;
}

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

.btn {
    display: inline-block;
    padding: 1.28rem 3.45rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.38s ease;
    font-size: 0.96rem;
    letter-spacing: 0.82px;
    font-family: 'Karla', sans-serif;
    position: relative;
    overflow: hidden;
    border: 1.5px solid transparent;
    border-radius: 6px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.18);
    transition: left 0.58s ease;
    pointer-events: none;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #d99757 0%, #c47b44 100%);
    color: #fdf8f0;
    box-shadow: 0 11px 38px rgba(217, 151, 87, 0.32);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 52px rgba(217, 151, 87, 0.42);
    background: linear-gradient(135deg, #c47b44 0%, #a8643a 100%);
}

.btn-secondary {
    background: rgba(253, 248, 240, 0.98);
    color: #d99757;
    border: 1.5px solid #d99757;
    box-shadow: 0 9px 32px rgba(217, 151, 87, 0.22);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #d99757 0%, #c47b44 100%);
    color: #fdf8f0;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 14px 42px rgba(217, 151, 87, 0.38);
}

.hero-image {
    animation: duneRise 1.28s ease-out 0.22s both;
}

.profile-card {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(18px);
    padding: 2.75rem;
    box-shadow: 
        0 0 0 1.5px rgba(217, 151, 87, 0.12),
        0 20px 65px rgba(61, 40, 23, 0.15);
    transition: all 0.48s ease;
    position: relative;
    border-radius: 6px;
}

.profile-card::before {
    content: '';
    position: absolute;
    top: -1.5px;
    left: -1.5px;
    right: -1.5px;
    bottom: -1.5px;
    background: linear-gradient(135deg, #d99757 0%, #c47b44 100%);
    border-radius: 6px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.48s ease;
}

.profile-card::after {
    content: '🐪';
    position: absolute;
    bottom: 42px;
    right: 42px;
    font-size: 6.45rem;
    opacity: 0.048;
}

.profile-card:hover {
    transform: translateY(-14px) scale(1.018);
    box-shadow: 
        0 0 0 1.5px rgba(217, 151, 87, 0.22),
        0 32px 92px rgba(61, 40, 23, 0.22);
}

.profile-card:hover::before {
    opacity: 1;
}

.profile-card img {
    width: 100%;
    margin-bottom: 2.45rem;
    box-shadow: 0 16px 52px rgba(61, 40, 23, 0.18);
    border-radius: 4px;
}

.profile-details h3 {
    font-family: 'Crimson Pro', serif;
    font-size: 2.55rem;
    margin-bottom: 0.92rem;
    color: #3d2817;
    font-weight: 600;
    letter-spacing: -0.22px;
}

.profile-details p {
    color: #6b4e37;
    margin-bottom: 2.65rem;
    line-height: 1.68;
    font-weight: 400;
}

.social-links a {
    display: inline-block;
    padding: 1.28rem 3.25rem;
    background: linear-gradient(135deg, #e6af73 0%, #d99757 100%);
    color: #fdf8f0;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.82px;
    transition: all 0.38s ease;
    border-radius: 6px;
    box-shadow: 0 11px 38px rgba(230, 175, 115, 0.35);
    font-family: 'Karla', sans-serif;
}

.social-links a:hover {
    background: linear-gradient(135deg, #d99757 0%, #c47b44 100%);
    transform: translateY(-3px);
    box-shadow: 0 16px 52px rgba(217, 151, 87, 0.45);
}

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

.container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 3.65rem;
}

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

.section-header::before {
    content: '◈';
    position: absolute;
    top: -62px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.25rem;
    opacity: 0.32;
    color: #d99757;
}

.section-header h2 {
    font-family: 'Crimson Pro', serif;
    font-size: 4.25rem;
    font-weight: 700;
    line-height: 1.12;
    color: #3d2817;
    letter-spacing: -0.58px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 95px;
    height: 2.5px;
    background: linear-gradient(90deg, transparent 0%, #d99757 30%, #c47b44 50%, #d99757 70%, transparent 100%);
}

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

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

.timeline::before {
    content: '';
    position: absolute;
    left: 295px;
    top: 0;
    bottom: 0;
    width: 1.5px;
    background: linear-gradient(180deg, #d99757 0%, #e6af73 50%, #d99757 100%);
    opacity: 0.32;
}

.timeline-item {
    display: grid;
    grid-template-columns: 585px 1fr;
    gap: 6.85rem;
    margin-bottom: 6.45rem;
    position: relative;
}

.timeline-year {
    font-family: 'Crimson Pro', serif;
    font-size: 6.85rem;
    font-weight: 700;
    color: rgba(217, 151, 87, 0.11);
    position: relative;
    z-index: 2;
    text-align: right;
    padding-right: 6.45rem;
    letter-spacing: -2.05px;
}

.timeline-year::after {
    content: '';
    position: absolute;
    right: -118px;
    top: 50%;
    transform: translateY(-50%);
    width: 13px;
    height: 13px;
    background: linear-gradient(135deg, #d99757 0%, #c47b44 100%);
    border-radius: 50%;
    box-shadow: 
        0 0 0 7px rgba(253, 248, 240, 1),
        0 0 0 9px rgba(217, 151, 87, 0.18);
}

.timeline-content {
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(15px);
    padding: 3.55rem;
    transition: all 0.45s ease;
    box-shadow: 
        0 0 0 1px rgba(217, 151, 87, 0.08),
        0 16px 58px rgba(61, 40, 23, 0.12);
    position: relative;
    border-radius: 6px;
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2.5px;
    background: linear-gradient(180deg, #d99757 0%, #e6af73 100%);
    opacity: 0;
    transition: opacity 0.45s ease;
}

.timeline-content:hover {
    transform: translateX(16px);
    box-shadow: 
        0 0 0 1px rgba(217, 151, 87, 0.18),
        0 26px 78px rgba(61, 40, 23, 0.18);
    background: rgba(255, 255, 255, 0.88);
}

.timeline-content:hover::before {
    opacity: 1;
}

.timeline-content h3 {
    font-family: 'Crimson Pro', serif;
    font-size: 2.55rem;
    margin-bottom: 0.82rem;
    color: #3d2817;
    font-weight: 600;
    letter-spacing: -0.22px;
}

.timeline-content h4 {
    color: #d99757;
    font-size: 1.32rem;
    margin-bottom: 2.05rem;
    font-weight: 600;
    letter-spacing: 0.32px;
}

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

.timeline-content a {
    color: #c47b44;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1.5px solid transparent;
    transition: all 0.32s ease;
}

.timeline-content a:hover {
    border-bottom-color: #c47b44;
    color: #d99757;
}

#ai {
    background: rgba(249, 237, 225, 0.48);
    backdrop-filter: blur(12px);
}

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

.project-card {
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(15px);
    padding: 4.85rem;
    transition: all 0.45s ease;
    position: relative;
    box-shadow: 
        0 0 0 1px rgba(217, 151, 87, 0.08),
        0 20px 65px rgba(61, 40, 23, 0.13);
    border-radius: 6px;
}

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

.project-card::after {
    content: '🏺';
    position: absolute;
    top: 52px;
    right: 52px;
    font-size: 7.45rem;
    opacity: 0.038;
}

.project-card:hover {
    transform: translateY(-11px);
    box-shadow: 
        0 0 0 1px rgba(217, 151, 87, 0.18),
        0 32px 88px rgba(61, 40, 23, 0.2);
    background: rgba(255, 255, 255, 0.88);
}

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

.project-header h3 {
    font-family: 'Crimson Pro', serif;
    font-size: 3.45rem;
    color: #3d2817;
    margin: 0;
    font-weight: 600;
    letter-spacing: -0.42px;
}

.project-client {
    color: #d99757;
    font-weight: 600;
    font-size: 1.32rem;
    margin-bottom: 2.85rem;
    letter-spacing: 0.32px;
}

.project-card > p {
    color: #6b4e37;
    line-height: 1.75;
    margin-bottom: 3.55rem;
}

.project-impact {
    background: rgba(217, 151, 87, 0.062);
    padding: 2.65rem;
    color: #3d2817;
    line-height: 1.75;
    border-radius: 4px;
    border-left: 4px solid #d99757;
}

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

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

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

.year-section {
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(15px);
    padding: 4.05rem;
    transition: all 0.45s ease;
    box-shadow: 
        0 0 0 1px rgba(217, 151, 87, 0.08),
        0 16px 58px rgba(61, 40, 23, 0.12);
    border-radius: 6px;
    position: relative;
}

.year-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2.5px;
    background: linear-gradient(90deg, #d99757 0%, #e6af73 100%);
    opacity: 0.28;
    transition: opacity 0.45s ease;
}

.year-section:hover {
    transform: translateY(-11px);
    box-shadow: 
        0 0 0 1px rgba(217, 151, 87, 0.18),
        0 26px 78px rgba(61, 40, 23, 0.18);
    background: rgba(255, 255, 255, 0.88);
}

.year-section:hover::before {
    opacity: 1;
}

.year-section h3 {
    font-family: 'Crimson Pro', serif;
    font-size: 4.25rem;
    margin-bottom: 3.55rem;
    color: #3d2817;
    text-align: center;
    padding-bottom: 2.65rem;
    border-bottom: 1.5px solid rgba(217, 151, 87, 0.18);
    font-weight: 600;
    letter-spacing: -0.52px;
}

.year-section.books {
    grid-column: span 2;
    background: linear-gradient(135deg, #d99757 0%, #c47b44 100%);
}

.year-section.books::before {
    background: rgba(253, 248, 240, 0.32);
}

.year-section.books h3 {
    color: #fdf8f0;
    border-bottom-color: rgba(253, 248, 240, 0.25);
}

.achievements {
    list-style: none;
}

.achievements li {
    padding: 1.75rem 0;
    color: #6b4e37;
    border-bottom: 1.5px solid rgba(61, 40, 23, 0.072);
    line-height: 1.75;
    position: relative;
    padding-left: 3.05rem;
}

.achievements li::before {
    content: '◆';
    position: absolute;
    left: 0;
    top: 1.75rem;
    font-size: 1.28rem;
    color: #d99757;
}

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

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

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

.achievements strong {
    color: #3d2817;
    font-weight: 600;
}

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

#personal {
    background: rgba(249, 237, 225, 0.48);
    backdrop-filter: blur(12px);
}

#contact {
    background: linear-gradient(135deg, rgba(217, 151, 87, 0.042) 0%, rgba(230, 175, 115, 0.038) 100%);
    backdrop-filter: blur(12px);
}

.contact-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(25px);
    padding: 7.45rem 6.85rem;
    text-align: center;
    box-shadow: 
        0 0 0 1.5px rgba(217, 151, 87, 0.12),
        0 32px 98px rgba(61, 40, 23, 0.16);
    max-width: 1280px;
    margin: 0 auto;
    border-radius: 6px;
}

.contact-card h2 {
    font-family: 'Crimson Pro', serif;
    font-size: 5.45rem;
    margin-bottom: 3.55rem;
    color: #3d2817;
    font-weight: 700;
    letter-spacing: -0.78px;
}

.contact-card > p {
    font-size: 1.62rem;
    color: #6b4e37;
    line-height: 1.75;
    margin-bottom: 5.85rem;
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
}

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

.contact-link {
    display: flex;
    align-items: center;
    gap: 2.05rem;
    padding: 2.05rem 4.85rem;
    background: linear-gradient(135deg, #d99757 0%, #c47b44 100%);
    color: #fdf8f0;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.82px;
    transition: all 0.38s ease;
    border-radius: 6px;
    box-shadow: 0 20px 62px rgba(217, 151, 87, 0.35);
    font-family: 'Karla', sans-serif;
}

.contact-link:hover {
    background: linear-gradient(135deg, #c47b44 0%, #a8643a 100%);
    transform: translateY(-5px);
    box-shadow: 0 28px 82px rgba(196, 123, 68, 0.48);
}

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

#footer {
    background: #3d2817;
    padding: 5.85rem 0;
    text-align: center;
    color: rgba(253, 248, 240, 0.68);
    border-top: 1.5px solid rgba(217, 151, 87, 0.22);
}

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

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

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

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

    .hero-image {
        max-width: 585px;
        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.85rem;
        height: 66px;
    }

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

    .nav-menu {
        position: fixed;
        top: 66px;
        left: 0;
        right: 0;
        background: rgba(253, 248, 240, 0.98);
        backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 4.05rem;
        gap: 0;
        box-shadow: 0 25px 65px rgba(61, 40, 23, 0.15);
        transform: translateY(-150%);
        transition: transform 0.48s ease;
        border-bottom: 1.5px solid rgba(217, 151, 87, 0.25);
    }

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

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

    .nav-menu li a {
        width: 100%;
        text-align: center;
        padding: 1.38rem;
        border-bottom: 1.5px solid rgba(61, 40, 23, 0.072);
    }

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

    .mobile-toggle {
        display: block;
    }

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

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

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

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 4.05rem;
        margin-bottom: 6.45rem;
        padding-left: 8.45rem;
    }

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

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

    .contact-card {
        padding: 6.15rem 4.85rem;
    }
}

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

    .nav-container {
        padding: 0 2.45rem;
        height: 60px;
    }

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

    #hero {
        padding: 125px 0 95px;
    }

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

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

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

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

    section {
        padding: 95px 0;
    }

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

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

    .profile-card {
        padding: 2.45rem;
    }

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

    .timeline-content {
        padding: 2.95rem;
    }

    .project-card {
        padding: 4.05rem 2.95rem;
    }

    .contact-card {
        padding: 5.45rem 2.95rem;
    }

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

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

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