/* Theme: Desert Oasis - Day 4 (Letter D): Inspired by terracotta pottery, sand dunes, desert sunsets, cacti gardens, adobe architecture, warm earth tones, sunbaked clay, golden hour, mesa landscapes, and arid botanical beauty */

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

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

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

body {
    font-family: 'Manrope', sans-serif;
    font-size: 17.5px;
    line-height: 1.85;
    color: #3d2920;
    background: linear-gradient(175deg, #fef8f3 0%, #fdf3e7 35%, #fcecd6 65%, #fef7ed 100%);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 15%, rgba(213, 135, 73, 0.08) 0%, transparent 55%),
        radial-gradient(circle at 75% 85%, rgba(199, 111, 58, 0.06) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 85px, rgba(213, 135, 73, 0.012) 85px, rgba(213, 135, 73, 0.012) 170px);
    pointer-events: none;
    z-index: 0;
}

#topnav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(254, 248, 243, 0.92);
    backdrop-filter: blur(18px);
    border-bottom: 2px solid rgba(213, 135, 73, 0.15);
    box-shadow: 0 4px 24px rgba(61, 41, 32, 0.06);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

#topnav.scrolled {
    background: rgba(254, 248, 243, 0.96);
    box-shadow: 0 6px 32px rgba(61, 41, 32, 0.1);
}

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

.logo h1 {
    font-family: 'Crimson Pro', serif;
    font-size: 1.85rem;
    font-weight: 700;
    color: #3d2920;
    margin: 0;
    letter-spacing: 0.6px;
    position: relative;
    padding-left: 3.2rem;
}

.logo h1::before {
    content: '◆';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    font-size: 2.4rem;
    color: #d58749;
    animation: desertShimmer 4s ease-in-out infinite;
}

@keyframes desertShimmer {
    0%, 100% {
        opacity: 0.7;
        transform: translateY(-50%) rotate(45deg) scale(1);
    }
    50% {
        opacity: 1;
        transform: translateY(-50%) rotate(45deg) scale(1.12);
    }
}

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

.nav-menu li a {
    display: block;
    padding: 0.85rem 1.65rem;
    color: #3d2920;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    letter-spacing: 0.5px;
    border-radius: 6px;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 7px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #d58749 0%, #c76f3a 100%);
    transition: width 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 3px;
}

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

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #d58749;
    background: rgba(213, 135, 73, 0.06);
}

.mobile-toggle {
    display: none;
    background: linear-gradient(135deg, #d58749 0%, #c76f3a 100%);
    border: none;
    color: #fef8f3;
    font-size: 1.68rem;
    width: 54px;
    height: 54px;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 8px;
    box-shadow: 0 6px 22px rgba(213, 135, 73, 0.35);
}

.mobile-toggle:hover {
    transform: scale(1.07);
    box-shadow: 0 8px 28px rgba(213, 135, 73, 0.45);
}

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

#hero::before {
    content: '';
    position: absolute;
    top: -22%;
    right: -15%;
    width: 680px;
    height: 680px;
    background: radial-gradient(circle, rgba(213, 135, 73, 0.14) 0%, transparent 65%);
    border-radius: 50%;
    animation: desertDrift 28s ease-in-out infinite;
}

#hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -12%;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(199, 111, 58, 0.12) 0%, transparent 65%);
    border-radius: 50%;
    animation: desertDrift 32s ease-in-out infinite reverse;
}

@keyframes desertDrift {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.6;
    }
    33% {
        transform: translate(45px, -38px) rotate(12deg);
        opacity: 0.85;
    }
    66% {
        transform: translate(-32px, 35px) rotate(-8deg);
        opacity: 0.7;
    }
}

.hero-content {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 3.2rem;
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 6.2rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    animation: desertRise 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s both;
}

@keyframes desertRise {
    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: 800;
    line-height: 1.14;
    margin-bottom: 2.35rem;
    color: #3d2920;
    letter-spacing: -0.8px;
}

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

.hero-subtitle {
    font-size: 1.45rem;
    color: #6b4e3d;
    margin-bottom: 3.45rem;
    line-height: 1.72;
    font-weight: 500;
    letter-spacing: 0.3px;
}

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

.btn {
    display: inline-block;
    padding: 1.28rem 3.35rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-size: 1.08rem;
    letter-spacing: 0.5px;
    border-radius: 6px;
    font-family: 'Manrope', 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.25);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

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

.btn-primary {
    background: linear-gradient(135deg, #d58749 0%, #c76f3a 100%);
    color: #fef8f3;
    border: 2px solid transparent;
    box-shadow: 0 10px 32px rgba(213, 135, 73, 0.38);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 42px rgba(213, 135, 73, 0.48);
}

.btn-secondary {
    background: #fef8f3;
    color: #896a4f;
    border: 2px solid #896a4f;
    box-shadow: 0 8px 28px rgba(137, 106, 79, 0.22);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #896a4f 0%, #6b4e3d 100%);
    color: #fef8f3;
    border-color: transparent;
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(137, 106, 79, 0.32);
}

.hero-image {
    animation: desertRise 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.25s both;
}

.profile-card {
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(22px);
    padding: 2.65rem;
    box-shadow: 
        0 0 0 3px rgba(213, 135, 73, 0.12),
        0 18px 58px rgba(61, 41, 32, 0.14);
    transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    border-radius: 12px;
}

.profile-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 10px;
    background: linear-gradient(90deg, #d58749 0%, #c76f3a 50%, #896a4f 100%);
    border-radius: 12px 12px 0 0;
}

.profile-card:hover {
    transform: translateY(-12px) scale(1.015);
    box-shadow: 
        0 0 0 3px rgba(213, 135, 73, 0.28),
        0 28px 75px rgba(61, 41, 32, 0.22);
}

.profile-card img {
    width: 100%;
    margin-bottom: 2.05rem;
    border-radius: 8px;
    box-shadow: 0 12px 38px rgba(61, 41, 32, 0.18);
}

.profile-details h3 {
    font-family: 'Crimson Pro', serif;
    font-size: 2.35rem;
    margin-bottom: 0.75rem;
    color: #3d2920;
    font-weight: 700;
}

.profile-details p {
    color: #6b4e3d;
    margin-bottom: 2.15rem;
    line-height: 1.68;
    font-weight: 500;
}

.social-links a {
    display: inline-block;
    padding: 1.15rem 2.75rem;
    background: linear-gradient(135deg, #896a4f 0%, #6b4e3d 100%);
    color: #fef8f3;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 6px;
    box-shadow: 0 9px 28px rgba(137, 106, 79, 0.32);
    font-family: 'Manrope', sans-serif;
}

.social-links a:hover {
    background: linear-gradient(135deg, #6b4e3d 0%, #5a3e2e 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(137, 106, 79, 0.42);
}

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

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 3.2rem;
}

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

.section-header::before {
    content: '◆◆◆';
    position: absolute;
    top: -52px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    color: #d58749;
    font-size: 1.45rem;
    letter-spacing: 0.95rem;
    opacity: 0.65;
}

.section-header h2 {
    font-family: 'Crimson Pro', serif;
    font-size: 4.15rem;
    font-weight: 800;
    line-height: 1.22;
    color: #3d2920;
    letter-spacing: -0.55px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 95px;
    height: 5px;
    background: linear-gradient(90deg, #d58749 0%, #c76f3a 50%, #896a4f 100%);
    border-radius: 5px;
}

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

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

.timeline::before {
    content: '';
    position: absolute;
    left: 245px;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, #d58749 0%, #c76f3a 40%, #896a4f 80%, #6b4e3d 100%);
    border-radius: 5px;
}

.timeline-item {
    display: grid;
    grid-template-columns: 490px 1fr;
    gap: 6.05rem;
    margin-bottom: 5.45rem;
    position: relative;
}

.timeline-year {
    font-family: 'Crimson Pro', serif;
    font-size: 5.45rem;
    font-weight: 800;
    color: rgba(213, 135, 73, 0.25);
    position: relative;
    z-index: 2;
    text-align: right;
    padding-right: 5.15rem;
    letter-spacing: -1.65px;
}

.timeline-year::after {
    content: '';
    position: absolute;
    right: -95px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 22px;
    height: 22px;
    background: #d58749;
    box-shadow: 
        0 0 0 7px rgba(254, 248, 243, 1),
        0 0 0 15px rgba(213, 135, 73, 0.18),
        0 0 28px rgba(213, 135, 73, 0.42);
    animation: desertPulse 3.5s ease-in-out infinite;
}

@keyframes desertPulse {
    0%, 100% {
        box-shadow: 
            0 0 0 7px rgba(254, 248, 243, 1),
            0 0 0 15px rgba(213, 135, 73, 0.18),
            0 0 28px rgba(213, 135, 73, 0.42);
    }
    50% {
        box-shadow: 
            0 0 0 7px rgba(254, 248, 243, 1),
            0 0 0 20px rgba(213, 135, 73, 0.28),
            0 0 38px rgba(213, 135, 73, 0.58);
    }
}

.timeline-content {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px);
    padding: 2.95rem;
    transition: all 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 12px 38px rgba(61, 41, 32, 0.1);
    position: relative;
    border-radius: 8px;
    border-left: 6px solid rgba(213, 135, 73, 0.25);
}

.timeline-content:hover {
    transform: translateX(12px);
    box-shadow: 0 18px 52px rgba(61, 41, 32, 0.18);
    border-left-color: #d58749;
    background: rgba(255, 255, 255, 0.88);
}

.timeline-content h3 {
    font-family: 'Crimson Pro', serif;
    font-size: 2.15rem;
    margin-bottom: 0.68rem;
    color: #3d2920;
    font-weight: 700;
}

.timeline-content h4 {
    color: #d58749;
    font-size: 1.22rem;
    margin-bottom: 1.55rem;
    font-weight: 600;
}

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

.timeline-content a {
    color: #896a4f;
    text-decoration: none;
    font-weight: 700;
    border-bottom: 3px solid transparent;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.timeline-content a:hover {
    border-bottom-color: #896a4f;
    color: #6b4e3d;
}

#ai {
    background: rgba(255, 252, 248, 0.52);
    backdrop-filter: blur(12px);
}

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

.project-card {
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(16px);
    padding: 3.75rem;
    transition: all 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    box-shadow: 0 14px 45px rgba(61, 41, 32, 0.11);
    border-radius: 10px;
    border-top: 8px solid #d58749;
}

.project-card::after {
    content: '◆';
    position: absolute;
    top: 35px;
    right: 35px;
    font-size: 4.2rem;
    color: rgba(213, 135, 73, 0.08);
    transform: rotate(45deg);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 65px rgba(61, 41, 32, 0.18);
    background: rgba(255, 255, 255, 0.92);
}

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

.project-header h3 {
    font-family: 'Crimson Pro', serif;
    font-size: 2.75rem;
    color: #3d2920;
    margin: 0;
    font-weight: 700;
}

.project-client {
    color: #d58749;
    font-weight: 700;
    font-size: 1.18rem;
    margin-bottom: 2.35rem;
}

.project-card > p {
    color: #6b4e3d;
    line-height: 1.85;
    margin-bottom: 2.85rem;
}

.project-impact {
    background: linear-gradient(135deg, rgba(213, 135, 73, 0.08) 0%, rgba(199, 111, 58, 0.08) 100%);
    padding: 2.15rem;
    color: #3d2920;
    line-height: 1.85;
    border-radius: 8px;
    border-left: 6px solid #c76f3a;
}

.project-impact strong {
    color: #896a4f;
    font-weight: 700;
}

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

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

.year-section {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px);
    padding: 3.35rem;
    transition: all 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 12px 38px rgba(61, 41, 32, 0.1);
    border-radius: 8px;
    position: relative;
    border-top: 6px solid rgba(213, 135, 73, 0.25);
}

.year-section:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 52px rgba(61, 41, 32, 0.18);
    border-top-color: #d58749;
    background: rgba(255, 255, 255, 0.88);
}

.year-section h3 {
    font-family: 'Crimson Pro', serif;
    font-size: 3.65rem;
    margin-bottom: 2.85rem;
    color: #3d2920;
    text-align: center;
    padding-bottom: 2.05rem;
    border-bottom: 4px solid rgba(213, 135, 73, 0.15);
    font-weight: 700;
}

.year-section.books {
    grid-column: span 2;
    background: linear-gradient(135deg, #d58749 0%, #c76f3a 50%, #896a4f 100%);
    border-top-color: #6b4e3d;
}

.year-section.books h3 {
    color: #fef8f3;
    border-bottom-color: rgba(254, 248, 243, 0.22);
}

.achievements {
    list-style: none;
}

.achievements li {
    padding: 1.52rem 0;
    color: #6b4e3d;
    border-bottom: 3px solid rgba(61, 41, 32, 0.06);
    line-height: 1.85;
    position: relative;
    padding-left: 2.55rem;
}

.achievements li::before {
    content: '◆';
    position: absolute;
    left: 0;
    top: 1.52rem;
    color: #c76f3a;
    font-size: 1.15rem;
    transform: rotate(45deg);
}

.year-section.books .achievements li {
    color: rgba(254, 248, 243, 0.94);
    border-bottom-color: rgba(254, 248, 243, 0.15);
}

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

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

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

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

#personal {
    background: rgba(255, 252, 248, 0.52);
    backdrop-filter: blur(12px);
}

#contact {
    background: linear-gradient(165deg, rgba(213, 135, 73, 0.06) 0%, rgba(137, 106, 79, 0.06) 100%);
    backdrop-filter: blur(12px);
}

.contact-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    padding: 6.35rem 5.75rem;
    text-align: center;
    box-shadow: 0 22px 65px rgba(61, 41, 32, 0.14);
    max-width: 1280px;
    margin: 0 auto;
    border-radius: 12px;
    border: 4px solid rgba(213, 135, 73, 0.18);
}

.contact-card h2 {
    font-family: 'Crimson Pro', serif;
    font-size: 4.65rem;
    margin-bottom: 2.85rem;
    color: #3d2920;
    font-weight: 800;
    letter-spacing: -0.65px;
}

.contact-card > p {
    font-size: 1.38rem;
    color: #6b4e3d;
    line-height: 1.85;
    margin-bottom: 4.75rem;
    max-width: 1050px;
    margin-left: auto;
    margin-right: auto;
}

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

.contact-link {
    display: flex;
    align-items: center;
    gap: 1.55rem;
    padding: 1.55rem 3.75rem;
    background: linear-gradient(135deg, #d58749 0%, #c76f3a 100%);
    color: #fef8f3;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 8px;
    box-shadow: 0 12px 38px rgba(213, 135, 73, 0.38);
    font-family: 'Manrope', sans-serif;
}

.contact-link:hover {
    background: linear-gradient(135deg, #c76f3a 0%, #896a4f 100%);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(213, 135, 73, 0.48);
}

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

#footer {
    background: linear-gradient(135deg, #3d2920 0%, #5a3e2e 50%, #6b4e3d 100%);
    padding: 4.55rem 0;
    text-align: center;
    color: rgba(254, 248, 243, 0.68);
    border-top: 5px solid #d58749;
}

#footer a {
    color: #d58749;
    text-decoration: none;
    transition: color 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-weight: 700;
}

#footer a:hover {
    color: #896a4f;
}

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

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

    .hero-image {
        max-width: 555px;
        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.35rem;
        height: 80px;
    }

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

    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(254, 248, 243, 0.97);
        backdrop-filter: blur(18px);
        flex-direction: column;
        padding: 3.25rem;
        gap: 0;
        box-shadow: 0 18px 48px rgba(61, 41, 32, 0.14);
        transform: translateY(-150%);
        transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        border-bottom: 2px solid rgba(213, 135, 73, 0.15);
    }

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

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

    .nav-menu li a {
        width: 100%;
        text-align: center;
        padding: 1.25rem;
        border-bottom: 1px solid rgba(61, 41, 32, 0.06);
    }

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

    .mobile-toggle {
        display: block;
    }

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

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

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

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 3.15rem;
        margin-bottom: 5.45rem;
        padding-left: 6.75rem;
    }

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

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

    .contact-card {
        padding: 5.05rem 3.95rem;
    }
}

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

    .nav-container {
        padding: 0 2.15rem;
        height: 75px;
    }

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

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

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

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

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

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

    section {
        padding: 88px 0;
    }

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

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

    .profile-card {
        padding: 2.05rem;
    }

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

    .timeline-content {
        padding: 2.45rem;
    }

    .project-card {
        padding: 3.15rem 2.45rem;
    }

    .contact-card {
        padding: 4.55rem 2.45rem;
    }

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

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

    .contact-link {
        justify-content: center;
        padding: 1.28rem 2.45rem;
        font-size: 1.02rem;
    }
}