/* Theme: Botanical Garden - Day 28: Inspired by lush greenery, flourishing plant life, natural growth, verdant leaves, organic patterns, fresh herbs, terracotta pots, botanical illustrations, garden pathways, nature's vitality */

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

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

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

body {
    font-family: 'Lato', sans-serif;
    font-size: 16.8px;
    line-height: 1.82;
    color: #2a3f2a;
    background: linear-gradient(162deg, #fdfcf8 0%, #f8faf6 22%, #f3f8f0 44%, #eef6ea 66%, #e9f4e4 88%, #fdfcf8 100%);
    background-attachment: fixed;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 22% 18%, rgba(106, 142, 92, 0.068) 0%, transparent 56%),
        radial-gradient(circle at 78% 82%, rgba(143, 171, 128, 0.062) 0%, transparent 58%),
        radial-gradient(circle at 48% 52%, rgba(189, 158, 122, 0.054) 0%, transparent 52%);
    pointer-events: none;
    z-index: 0;
    animation: botanicalSway 36s ease-in-out infinite;
}

@keyframes botanicalSway {
    0%, 100% {
        opacity: 0.78;
        transform: translateX(0) scale(1);
    }
    50% {
        opacity: 0.94;
        transform: translateX(-12px) scale(1.06);
    }
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(58deg, transparent 0px, rgba(106, 142, 92, 0.014) 1px, transparent 2.4px, transparent 96px),
        repeating-linear-gradient(-32deg, transparent 0px, rgba(143, 171, 128, 0.011) 1px, transparent 2.1px, transparent 102px);
    background-size: 98px 104px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.44;
}

#topnav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 252, 248, 0.92);
    backdrop-filter: blur(20px) saturate(172%);
    border-bottom: 2.2px solid rgba(106, 142, 92, 0.24);
    box-shadow: 0 4px 32px rgba(42, 63, 42, 0.07);
    transition: all 0.44s cubic-bezier(0.22, 0.61, 0.36, 1);
}

#topnav.scrolled {
    background: rgba(253, 252, 248, 0.96);
    box-shadow: 0 6px 42px rgba(42, 63, 42, 0.11);
    border-bottom-width: 2.6px;
}

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

.logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.78rem;
    font-weight: 600;
    color: #3d5c3d;
    margin: 0;
    letter-spacing: -0.16px;
    position: relative;
}

.logo h1::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 52px;
    height: 2.6px;
    background: linear-gradient(90deg, #6a8e5c 0%, #8fab80 100%);
    border-radius: 6px;
}

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

.nav-menu li a {
    display: block;
    padding: 0.86rem 1.64rem;
    color: #4a6b4a;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.91rem;
    transition: all 0.36s cubic-bezier(0.22, 0.61, 0.36, 1);
    position: relative;
    letter-spacing: 0.42px;
    border-radius: 18px;
}

.nav-menu li a::before {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2.2px;
    background: linear-gradient(90deg, #6a8e5c 0%, #8fab80 100%);
    transition: width 0.36s ease;
    border-radius: 6px;
}

.nav-menu li a:hover::before,
.nav-menu li a.active::before {
    width: 62%;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #3d5c3d;
    background: rgba(106, 142, 92, 0.08);
}

.mobile-toggle {
    display: none;
    background: linear-gradient(138deg, #6a8e5c 0%, #8fab80 100%);
    border: none;
    color: #ffffff;
    font-size: 1.68rem;
    width: 56px;
    height: 56px;
    cursor: pointer;
    transition: all 0.36s ease;
    box-shadow: 0 8px 28px rgba(106, 142, 92, 0.34);
    border-radius: 18px;
}

.mobile-toggle:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(106, 142, 92, 0.42);
}

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

#hero::before {
    content: '';
    position: absolute;
    top: -16%;
    right: -8%;
    width: 640px;
    height: 640px;
    background: radial-gradient(circle, rgba(106, 142, 92, 0.14) 0%, transparent 68%);
    border-radius: 44% 56% 48% 52%;
    animation: leafFloat 46s ease-in-out infinite;
    filter: blur(86px);
}

#hero::after {
    content: '';
    position: absolute;
    bottom: -18%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(143, 171, 128, 0.12) 0%, transparent 68%);
    border-radius: 52% 48% 56% 44%;
    animation: leafFloat 54s ease-in-out infinite reverse;
    filter: blur(86px);
}

@keyframes leafFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        opacity: 0.72;
        border-radius: 44% 56% 48% 52%;
    }
    32% {
        transform: translate(68px, -84px) scale(1.18) rotate(22deg);
        opacity: 0.86;
        border-radius: 56% 44% 52% 48%;
    }
    66% {
        transform: translate(-58px, 72px) scale(0.96) rotate(-16deg);
        opacity: 0.78;
        border-radius: 48% 52% 44% 56%;
    }
}

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

.hero-text {
    animation: growIn 1.44s cubic-bezier(0.22, 0.61, 0.36, 1);
}

@keyframes growIn {
    0% {
        opacity: 0;
        transform: translateY(56px) scale(0.97);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4.64rem;
    font-weight: 700;
    line-height: 1.14;
    margin-bottom: 2.92rem;
    color: #2a3f2a;
    letter-spacing: -0.86px;
}

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

.hero-subtitle {
    font-size: 1.52rem;
    color: #4a6b4a;
    margin-bottom: 4.24rem;
    line-height: 1.72;
    font-weight: 400;
    letter-spacing: 0.24px;
}

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

.btn {
    display: inline-block;
    padding: 1.48rem 3.64rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.42s cubic-bezier(0.22, 0.61, 0.36, 1);
    font-size: 1.02rem;
    letter-spacing: 0.52px;
    position: relative;
    overflow: hidden;
    border-radius: 28px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
    transition: left 0.68s ease;
}

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

.btn-primary {
    background: linear-gradient(138deg, #6a8e5c 0%, #8fab80 100%);
    color: #ffffff;
    box-shadow: 0 16px 52px rgba(106, 142, 92, 0.42);
    border: 2.8px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 64px rgba(106, 142, 92, 0.52);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.96);
    color: #3d5c3d;
    border: 2.8px solid #6a8e5c;
    box-shadow: 0 12px 42px rgba(0, 0, 0, 0.09);
}

.btn-secondary:hover {
    background: rgba(106, 142, 92, 0.14);
    color: #2a3f2a;
    border-color: #8fab80;
    transform: translateY(-5px);
    box-shadow: 0 18px 54px rgba(106, 142, 92, 0.32);
}

.hero-image {
    animation: growIn 1.44s cubic-bezier(0.22, 0.61, 0.36, 1) 0.28s both;
}

.profile-card {
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(32px);
    padding: 3.92rem;
    box-shadow: 
        0 32px 96px rgba(42, 63, 42, 0.22),
        inset 0 1.6px 0 rgba(255, 255, 255, 0.92);
    transition: all 0.52s cubic-bezier(0.22, 0.61, 0.36, 1);
    position: relative;
    border: 2.8px solid rgba(106, 142, 92, 0.26);
    border-radius: 32px;
}

.profile-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6.4px;
    background: linear-gradient(90deg, #6a8e5c 0%, #8fab80 36%, #bd9e7a 64%, #8fab80 100%);
    border-radius: 32px 32px 0 0;
}

.profile-card:hover {
    transform: translateY(-16px) scale(1.02);
    box-shadow: 
        0 44px 128px rgba(42, 63, 42, 0.32),
        inset 0 1.6px 0 rgba(255, 255, 255, 1);
}

.profile-card img {
    width: 100%;
    margin-bottom: 3.12rem;
    box-shadow: 0 24px 72px rgba(42, 63, 42, 0.24);
    border: 2.8px solid rgba(143, 171, 128, 0.28);
    border-radius: 24px;
}

.profile-details h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.76rem;
    margin-bottom: 0.96rem;
    color: #2a3f2a;
    font-weight: 600;
    letter-spacing: -0.38px;
}

.profile-details p {
    color: #4a6b4a;
    margin-bottom: 3.12rem;
    line-height: 1.72;
    font-weight: 400;
}

.social-links a {
    display: inline-block;
    padding: 1.44rem 3.52rem;
    background: linear-gradient(138deg, #6a8e5c 0%, #8fab80 100%);
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.52px;
    transition: all 0.42s cubic-bezier(0.22, 0.61, 0.36, 1);
    box-shadow: 0 16px 52px rgba(106, 142, 92, 0.42);
    border-radius: 28px;
}

.social-links a:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 64px rgba(106, 142, 92, 0.52);
}

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

.container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 3.8rem;
}

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

.section-header::before {
    content: '✿';
    position: absolute;
    top: -84px;
    left: 50%;
    transform: translateX(-50%) rotate(0deg);
    font-size: 3.64rem;
    color: #6a8e5c;
    opacity: 0.62;
    animation: bloomRotate 18s ease-in-out infinite;
}

@keyframes bloomRotate {
    0%, 100% { 
        transform: translateX(-50%) scale(1) rotate(0deg); 
        opacity: 0.62; 
    }
    50% { 
        transform: translateX(-50%) scale(1.32) rotate(360deg); 
        opacity: 0.84; 
    }
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 4.48rem;
    font-weight: 700;
    line-height: 1.18;
    color: #2a3f2a;
    letter-spacing: -0.96px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -36px;
    left: 50%;
    transform: translateX(-50%);
    width: 112px;
    height: 3.8px;
    background: linear-gradient(90deg, transparent 0%, #6a8e5c 28%, #8fab80 50%, #bd9e7a 72%, transparent 100%);
    border-radius: 6px;
}

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

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

.timeline::before {
    content: '';
    position: absolute;
    left: 204px;
    top: 0;
    bottom: 0;
    width: 3.8px;
    background: linear-gradient(180deg, #6a8e5c 0%, #8fab80 50%, #bd9e7a 100%);
    opacity: 0.68;
    border-radius: 6px;
}

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

.timeline-year {
    font-family: 'Playfair Display', serif;
    font-size: 4.44rem;
    font-weight: 600;
    color: #3d5c3d;
    position: relative;
    z-index: 2;
    text-align: right;
    padding-right: 4.24rem;
    letter-spacing: -0.62px;
}

.timeline-year::after {
    content: '';
    position: absolute;
    right: -84px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: linear-gradient(138deg, #6a8e5c 0%, #8fab80 100%);
    border: 6.4px solid rgba(253, 252, 248, 0.98);
    box-shadow: 
        0 0 0 14px rgba(106, 142, 92, 0.22),
        0 12px 42px rgba(106, 142, 92, 0.48);
    border-radius: 50%;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(32px);
    padding: 4.68rem;
    transition: all 0.42s cubic-bezier(0.22, 0.61, 0.36, 1);
    box-shadow: 0 26px 76px rgba(42, 63, 42, 0.18);
    border: 2.8px solid rgba(106, 142, 92, 0.24);
    border-radius: 24px;
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5.6px;
    background: linear-gradient(180deg, #6a8e5c 0%, #8fab80 100%);
    border-radius: 24px 0 0 24px;
}

.timeline-content:hover {
    transform: translateX(22px);
    box-shadow: 0 36px 94px rgba(42, 63, 42, 0.26);
}

.timeline-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.76rem;
    margin-bottom: 0.96rem;
    color: #2a3f2a;
    font-weight: 600;
    letter-spacing: -0.38px;
}

.timeline-content h4 {
    color: #3d5c3d;
    font-size: 1.54rem;
    margin-bottom: 2.32rem;
    font-weight: 600;
    letter-spacing: 0.26px;
}

.timeline-content p {
    color: #4a6b4a;
    line-height: 1.82;
    margin: 0;
}

.timeline-content a {
    color: #3d5c3d;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2.8px solid transparent;
    transition: all 0.36s ease;
}

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

#ai {
    background: linear-gradient(180deg, rgba(248, 250, 246, 0.68) 0%, rgba(253, 252, 248, 0.68) 100%);
    backdrop-filter: blur(36px);
}

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

.project-card {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(32px);
    padding: 5.88rem;
    transition: all 0.42s cubic-bezier(0.22, 0.61, 0.36, 1);
    position: relative;
    box-shadow: 0 30px 86px rgba(42, 63, 42, 0.2);
    border: 2.8px solid rgba(106, 142, 92, 0.26);
    border-radius: 28px;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6.4px;
    background: linear-gradient(90deg, #6a8e5c 0%, #8fab80 28%, #bd9e7a 50%, #8fab80 72%, #6a8e5c 100%);
    border-radius: 28px 28px 0 0;
}

.project-card:hover {
    transform: translateY(-16px);
    box-shadow: 0 42px 112px rgba(42, 63, 42, 0.3);
}

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

.project-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 3.56rem;
    color: #2a3f2a;
    margin: 0;
    font-weight: 600;
    letter-spacing: -0.58px;
}

.project-client {
    color: #3d5c3d;
    font-weight: 600;
    font-size: 1.54rem;
    margin-bottom: 3.56rem;
    letter-spacing: 0.26px;
}

.project-card > p {
    color: #4a6b4a;
    line-height: 1.82;
    margin-bottom: 4.24rem;
}

.project-impact {
    background: linear-gradient(138deg, rgba(106, 142, 92, 0.11) 0%, rgba(143, 171, 128, 0.09) 100%);
    padding: 3.16rem;
    color: #2a3f2a;
    line-height: 1.82;
    border-radius: 20px;
    border-left: 5.6px solid #6a8e5c;
}

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

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

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

.year-section {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(32px);
    padding: 4.68rem;
    transition: all 0.42s cubic-bezier(0.22, 0.61, 0.36, 1);
    box-shadow: 0 30px 86px rgba(42, 63, 42, 0.18);
    border: 2.8px solid rgba(106, 142, 92, 0.26);
    border-radius: 24px;
}

.year-section:hover {
    transform: translateY(-16px);
    box-shadow: 0 40px 104px rgba(42, 63, 42, 0.26);
}

.year-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 4.04rem;
    margin-bottom: 4.24rem;
    color: #3d5c3d;
    text-align: center;
    padding-bottom: 3.16rem;
    border-bottom: 2.8px solid rgba(106, 142, 92, 0.28);
    font-weight: 600;
    letter-spacing: -0.58px;
}

.year-section.books {
    grid-column: span 2;
    background: linear-gradient(138deg, #6a8e5c 0%, #8fab80 100%);
    border: none;
    box-shadow: 0 40px 104px rgba(106, 142, 92, 0.62);
}

.year-section.books h3 {
    color: #ffffff;
    border-bottom-color: rgba(255, 255, 255, 0.38);
}

.achievements {
    list-style: none;
}

.achievements li {
    padding: 2.04rem 0;
    color: #4a6b4a;
    border-bottom: 2.8px solid rgba(106, 142, 92, 0.22);
    line-height: 1.82;
    position: relative;
    padding-left: 4.24rem;
}

.achievements li::before {
    content: '❀';
    position: absolute;
    left: 0;
    top: 2.04rem;
    color: #6a8e5c;
    font-size: 2.12rem;
    font-weight: 400;
}

.year-section.books .achievements li {
    color: rgba(255, 255, 255, 0.96);
    border-bottom-color: rgba(255, 255, 255, 0.34);
}

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

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

.achievements strong {
    color: #2a3f2a;
    font-weight: 600;
}

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

#personal {
    background: linear-gradient(180deg, rgba(253, 252, 248, 0.68) 0%, rgba(248, 250, 246, 0.74) 100%);
    backdrop-filter: blur(36px);
}

#contact {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(36px);
}

.contact-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(40px);
    padding: 9.72rem 9.24rem;
    text-align: center;
    box-shadow: 0 48px 136px rgba(42, 63, 42, 0.28);
    max-width: 1340px;
    margin: 0 auto;
    border: 3.2px solid rgba(106, 142, 92, 0.36);
    position: relative;
    border-radius: 38px;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 9.6px;
    background: linear-gradient(90deg, transparent 0%, #6a8e5c 18%, #8fab80 34%, #bd9e7a 50%, #8fab80 66%, #6a8e5c 82%, transparent 100%);
    border-radius: 38px 38px 0 0;
}

.contact-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 5.96rem;
    margin-bottom: 4.24rem;
    color: #2a3f2a;
    font-weight: 700;
    letter-spacing: -1.32px;
}

.contact-card > p {
    font-size: 1.54rem;
    color: #4a6b4a;
    line-height: 1.82;
    margin-bottom: 6.84rem;
    max-width: 1160px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

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

.contact-link {
    display: flex;
    align-items: center;
    gap: 2.32rem;
    padding: 2.72rem 6.08rem;
    background: linear-gradient(138deg, #6a8e5c 0%, #8fab80 100%);
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.52px;
    transition: all 0.42s cubic-bezier(0.22, 0.61, 0.36, 1);
    box-shadow: 0 30px 86px rgba(106, 142, 92, 0.58);
    position: relative;
    overflow: hidden;
    border-radius: 28px;
}

.contact-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
    transition: left 0.68s ease;
}

.contact-link:hover::before {
    left: 100%;
}

.contact-link:hover {
    transform: translateY(-9px);
    box-shadow: 0 42px 118px rgba(106, 142, 92, 0.72);
}

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

#footer {
    background: linear-gradient(138deg, #2a3f2a 0%, #3d5c3d 100%);
    backdrop-filter: blur(32px);
    padding: 6.84rem 0;
    text-align: center;
    color: rgba(253, 252, 248, 0.88);
    border-top: 3.2px solid rgba(106, 142, 92, 0.42);
}

#footer a {
    color: #8fab80;
    text-decoration: none;
    transition: color 0.36s ease;
    font-weight: 600;
}

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

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

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

    .hero-image {
        max-width: 620px;
        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 3.4rem;
        height: 72px;
    }

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

    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(253, 252, 248, 0.98);
        backdrop-filter: blur(38px);
        flex-direction: column;
        padding: 6.84rem;
        gap: 0;
        box-shadow: 0 38px 104px rgba(42, 63, 42, 0.42);
        transform: translateY(-150%);
        transition: transform 0.44s cubic-bezier(0.22, 0.61, 0.36, 1);
        border-bottom: 3.2px solid rgba(106, 142, 92, 0.38);
    }

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

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

    .nav-menu li a {
        width: 100%;
        text-align: center;
        padding: 1.84rem;
        border-bottom: 2.8px solid rgba(106, 142, 92, 0.22);
    }

    .mobile-toggle {
        display: block;
    }

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

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

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

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 4.24rem;
        margin-bottom: 7.56rem;
        padding-left: 9.72rem;
    }

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

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

    .contact-card {
        padding: 9.24rem 6.84rem;
    }
}

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

    .nav-container {
        padding: 0 2.92rem;
        height: 68px;
    }

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

    #hero {
        padding: 142px 0 108px;
    }

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

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

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

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

    section {
        padding: 96px 0;
    }

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

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

    .profile-card {
        padding: 3.92rem;
    }

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

    .timeline-content {
        padding: 3.92rem;
    }

    .project-card {
        padding: 4.92rem 3.92rem;
    }

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

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

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

    .contact-link {
        justify-content: center;
        padding: 1.84rem 3.92rem;
        font-size: 0.91rem;
    }
}