/* Theme: Honey - Day 8 (Letter H): Inspired by golden honeycomb, amber nectar, beeswax, apiaries, wildflower meadows, warm sunshine, hexagonal patterns, liquid gold, honey drizzle, artisan beekeeping */

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

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

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

body {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 17.8px;
    line-height: 1.76;
    color: #3d2817;
    background: linear-gradient(168deg, #fffdf7 0%, #fff9e8 22%, #fef5d9 48%, #fef8e3 72%, #fffefb 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(218, 165, 32, 0.06) 0%, transparent 48%),
        radial-gradient(circle at 78% 82%, rgba(255, 193, 7, 0.05) 0%, transparent 52%);
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(30deg, transparent, transparent 35px, rgba(218, 165, 32, 0.012) 35px, rgba(218, 165, 32, 0.012) 70px),
        repeating-linear-gradient(120deg, transparent, transparent 35px, rgba(255, 193, 7, 0.012) 35px, rgba(255, 193, 7, 0.012) 70px);
    pointer-events: none;
    z-index: 0;
}

#topnav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 253, 247, 0.89);
    backdrop-filter: blur(18px);
    border-bottom: 2.5px solid rgba(218, 165, 32, 0.22);
    box-shadow: 0 2px 16px rgba(61, 40, 23, 0.06);
    transition: all 0.36s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#topnav.scrolled {
    background: rgba(255, 253, 247, 0.96);
    box-shadow: 0 4px 24px rgba(61, 40, 23, 0.09);
}

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

.logo h1 {
    font-family: 'Abhaya Libre', serif;
    font-size: 1.68rem;
    font-weight: 800;
    color: #3d2817;
    margin: 0;
    letter-spacing: 0.72px;
    position: relative;
    padding-left: 2.95rem;
}

.logo h1::before {
    content: '⬡';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.08rem;
    color: #daa520;
    animation: honeyGlow 3.6s ease-in-out infinite;
}

@keyframes honeyGlow {
    0%, 100% {
        opacity: 0.72;
        transform: translateY(-50%) scale(1);
        filter: drop-shadow(0 0 8px rgba(218, 165, 32, 0.4));
    }
    50% {
        opacity: 1;
        transform: translateY(-50%) scale(1.14);
        filter: drop-shadow(0 0 14px rgba(218, 165, 32, 0.7));
    }
}

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

.nav-menu li a {
    display: block;
    padding: 0.78rem 1.62rem;
    color: #3d2817;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.94rem;
    transition: all 0.32s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    letter-spacing: 0.38px;
    border-radius: 24px;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #daa520 0%, #ffc107 100%);
    transition: width 0.32s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: 3px;
}

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

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #b8860b;
    background: rgba(218, 165, 32, 0.08);
}

.mobile-toggle {
    display: none;
    background: linear-gradient(135deg, #daa520 0%, #c9981e 100%);
    border: none;
    color: #fffdf7;
    font-size: 1.68rem;
    width: 54px;
    height: 54px;
    cursor: pointer;
    transition: all 0.32s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: 16px;
    box-shadow: 0 6px 22px rgba(218, 165, 32, 0.35);
}

.mobile-toggle:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 28px rgba(218, 165, 32, 0.48);
}

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

#hero::before {
    content: '';
    position: absolute;
    top: -22%;
    right: -16%;
    width: 680px;
    height: 680px;
    background: radial-gradient(circle, rgba(218, 165, 32, 0.14) 0%, transparent 68%);
    border-radius: 50%;
    animation: honeyFloat 28s ease-in-out infinite;
}

#hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -13%;
    width: 640px;
    height: 640px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.12) 0%, transparent 68%);
    border-radius: 50%;
    animation: honeyFloat 32s ease-in-out infinite reverse;
}

@keyframes honeyFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.62;
    }
    33% {
        transform: translate(48px, -42px) rotate(8deg);
        opacity: 0.88;
    }
    66% {
        transform: translate(-35px, 38px) rotate(-6deg);
        opacity: 0.75;
    }
}

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

.hero-text {
    animation: honeyDrip 1.22s cubic-bezier(0.34, 1.56, 0.64, 1) 0s both;
}

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

.hero-text h1 {
    font-family: 'Abhaya Libre', serif;
    font-size: 4.68rem;
    font-weight: 800;
    line-height: 1.14;
    margin-bottom: 2.48rem;
    color: #3d2817;
    letter-spacing: -0.68px;
}

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

.hero-subtitle {
    font-size: 1.45rem;
    color: #6d4c2f;
    margin-bottom: 3.58rem;
    line-height: 1.68;
    font-weight: 600;
    letter-spacing: 0.22px;
}

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

.btn {
    display: inline-block;
    padding: 1.28rem 3.38rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.36s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-size: 1.08rem;
    letter-spacing: 0.52px;
    border-radius: 28px;
    font-family: 'Nunito Sans', 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.26);
    transform: translate(-50%, -50%);
    transition: width 0.62s, height 0.62s;
}

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

.btn-primary {
    background: linear-gradient(135deg, #daa520 0%, #b8860b 100%);
    color: #fffdf7;
    border: none;
    box-shadow: 0 11px 36px rgba(218, 165, 32, 0.38);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(218, 165, 32, 0.48);
}

.btn-secondary {
    background: #fffdf7;
    color: #b8860b;
    border: 2.5px solid #daa520;
    box-shadow: 0 8px 28px rgba(218, 165, 32, 0.22);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #b8860b 0%, #8b6914 100%);
    color: #fffdf7;
    border-color: transparent;
    transform: translateY(-4px);
    box-shadow: 0 14px 42px rgba(184, 134, 11, 0.38);
}

.hero-image {
    animation: honeyDrip 1.22s cubic-bezier(0.34, 1.56, 0.64, 1) 0.26s both;
}

.profile-card {
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(24px);
    padding: 2.68rem;
    box-shadow: 
        0 0 0 2.5px rgba(218, 165, 32, 0.16),
        0 18px 58px rgba(61, 40, 23, 0.14);
    transition: all 0.46s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    border-radius: 32px;
}

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

.profile-card::after {
    content: '⬡⬡⬡';
    position: absolute;
    bottom: 22px;
    right: 22px;
    font-size: 1.42rem;
    color: rgba(218, 165, 32, 0.12);
    letter-spacing: 0.48rem;
}

.profile-card:hover {
    transform: translateY(-12px) scale(1.016);
    box-shadow: 
        0 0 0 2.5px rgba(218, 165, 32, 0.28),
        0 28px 78px rgba(61, 40, 23, 0.22);
}

.profile-card img {
    width: 100%;
    margin-bottom: 2.08rem;
    border-radius: 24px;
    box-shadow: 0 12px 38px rgba(61, 40, 23, 0.18);
}

.profile-details h3 {
    font-family: 'Abhaya Libre', serif;
    font-size: 2.38rem;
    margin-bottom: 0.78rem;
    color: #3d2817;
    font-weight: 800;
    letter-spacing: -0.32px;
}

.profile-details p {
    color: #6d4c2f;
    margin-bottom: 2.18rem;
    line-height: 1.68;
    font-weight: 600;
}

.social-links a {
    display: inline-block;
    padding: 1.12rem 2.78rem;
    background: linear-gradient(135deg, #b8860b 0%, #8b6914 100%);
    color: #fffdf7;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.52px;
    transition: all 0.36s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: 24px;
    box-shadow: 0 9px 32px rgba(184, 134, 11, 0.32);
    font-family: 'Nunito Sans', sans-serif;
}

.social-links a:hover {
    background: linear-gradient(135deg, #8b6914 0%, #6d4f10 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 42px rgba(184, 134, 11, 0.42);
}

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

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

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

.section-header::before {
    content: '⬡⬡⬡';
    position: absolute;
    top: -52px;
    left: 50%;
    transform: translateX(-50%);
    color: #daa520;
    font-size: 1.32rem;
    letter-spacing: 1.08rem;
    opacity: 0.62;
}

.section-header h2 {
    font-family: 'Abhaya Libre', serif;
    font-size: 4.18rem;
    font-weight: 800;
    line-height: 1.22;
    color: #3d2817;
    letter-spacing: -0.58px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 98px;
    height: 4px;
    background: linear-gradient(90deg, #daa520 0%, #ffc107 50%, #b8860b 100%);
    border-radius: 4px;
}

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

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

.timeline::before {
    content: '';
    position: absolute;
    left: 248px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #daa520 0%, #ffc107 45%, #b8860b 100%);
    border-radius: 4px;
}

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

.timeline-year {
    font-family: 'Abhaya Libre', serif;
    font-size: 5.88rem;
    font-weight: 800;
    color: rgba(218, 165, 32, 0.24);
    position: relative;
    z-index: 2;
    text-align: right;
    padding-right: 5.38rem;
    letter-spacing: -1.88px;
}

.timeline-year::after {
    content: '';
    position: absolute;
    right: -98px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background: #daa520;
    border-radius: 50%;
    box-shadow: 
        0 0 0 7px rgba(255, 253, 247, 1),
        0 0 0 14px rgba(218, 165, 32, 0.18),
        0 0 28px rgba(218, 165, 32, 0.42);
    animation: honeyPulse 3.4s ease-in-out infinite;
}

@keyframes honeyPulse {
    0%, 100% {
        box-shadow: 
            0 0 0 7px rgba(255, 253, 247, 1),
            0 0 0 14px rgba(218, 165, 32, 0.18),
            0 0 28px rgba(218, 165, 32, 0.42);
        transform: translateY(-50%) scale(1);
    }
    50% {
        box-shadow: 
            0 0 0 7px rgba(255, 253, 247, 1),
            0 0 0 20px rgba(218, 165, 32, 0.28),
            0 0 38px rgba(218, 165, 32, 0.62);
        transform: translateY(-50%) scale(1.12);
    }
}

.timeline-content {
    background: rgba(255, 255, 255, 0.76);
    backdrop-filter: blur(16px);
    padding: 3.08rem;
    transition: all 0.38s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 12px 38px rgba(61, 40, 23, 0.10);
    position: relative;
    border-radius: 28px;
    border-left: 5px solid rgba(218, 165, 32, 0.24);
}

.timeline-content:hover {
    transform: translateX(12px);
    box-shadow: 0 18px 52px rgba(61, 40, 23, 0.16);
    border-left-color: #daa520;
    background: rgba(255, 255, 255, 0.88);
}

.timeline-content h3 {
    font-family: 'Abhaya Libre', serif;
    font-size: 2.18rem;
    margin-bottom: 0.68rem;
    color: #3d2817;
    font-weight: 800;
    letter-spacing: -0.28px;
}

.timeline-content h4 {
    color: #daa520;
    font-size: 1.22rem;
    margin-bottom: 1.58rem;
    font-weight: 700;
}

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

.timeline-content a {
    color: #b8860b;
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2.5px solid transparent;
    transition: all 0.32s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

#ai {
    background: rgba(254, 248, 227, 0.48);
    backdrop-filter: blur(12px);
}

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

.project-card {
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(16px);
    padding: 3.88rem;
    transition: all 0.38s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    box-shadow: 0 14px 46px rgba(61, 40, 23, 0.11);
    border-radius: 32px;
    border-top: 6px solid #daa520;
}

.project-card::after {
    content: '⬡';
    position: absolute;
    top: 36px;
    right: 36px;
    font-size: 4.58rem;
    color: rgba(218, 165, 32, 0.08);
}

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

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

.project-header h3 {
    font-family: 'Abhaya Libre', serif;
    font-size: 2.88rem;
    color: #3d2817;
    margin: 0;
    font-weight: 800;
    letter-spacing: -0.42px;
}

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

.project-card > p {
    color: #6d4c2f;
    line-height: 1.76;
    margin-bottom: 2.88rem;
}

.project-impact {
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.08) 0%, rgba(255, 193, 7, 0.08) 100%);
    padding: 2.18rem;
    color: #3d2817;
    line-height: 1.76;
    border-radius: 22px;
    border-left: 5px solid #b8860b;
}

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

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

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

.year-section {
    background: rgba(255, 255, 255, 0.76);
    backdrop-filter: blur(16px);
    padding: 3.48rem;
    transition: all 0.38s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 12px 38px rgba(61, 40, 23, 0.10);
    border-radius: 28px;
    position: relative;
    border-top: 5px solid rgba(218, 165, 32, 0.24);
}

.year-section:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 52px rgba(61, 40, 23, 0.16);
    border-top-color: #daa520;
    background: rgba(255, 255, 255, 0.88);
}

.year-section h3 {
    font-family: 'Abhaya Libre', serif;
    font-size: 3.88rem;
    margin-bottom: 2.88rem;
    color: #3d2817;
    text-align: center;
    padding-bottom: 2.18rem;
    border-bottom: 3.5px solid rgba(218, 165, 32, 0.14);
    font-weight: 800;
    letter-spacing: -0.58px;
}

.year-section.books {
    grid-column: span 2;
    background: linear-gradient(135deg, #daa520 0%, #ffc107 50%, #b8860b 100%);
    border-top-color: #8b6914;
}

.year-section.books h3 {
    color: #fffdf7;
    border-bottom-color: rgba(255, 253, 247, 0.22);
}

.achievements {
    list-style: none;
}

.achievements li {
    padding: 1.52rem 0;
    color: #6d4c2f;
    border-bottom: 2.5px solid rgba(61, 40, 23, 0.06);
    line-height: 1.76;
    position: relative;
    padding-left: 2.58rem;
}

.achievements li::before {
    content: '⬡';
    position: absolute;
    left: 0;
    top: 1.52rem;
    color: #b8860b;
    font-size: 1.05rem;
}

.year-section.books .achievements li {
    color: rgba(255, 253, 247, 0.94);
    border-bottom-color: rgba(255, 253, 247, 0.18);
}

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

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

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

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

#personal {
    background: rgba(254, 248, 227, 0.48);
    backdrop-filter: blur(12px);
}

#contact {
    background: linear-gradient(165deg, rgba(218, 165, 32, 0.06) 0%, rgba(255, 193, 7, 0.06) 100%);
    backdrop-filter: blur(12px);
}

.contact-card {
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(22px);
    padding: 6.38rem 5.88rem;
    text-align: center;
    box-shadow: 0 24px 78px rgba(61, 40, 23, 0.14);
    max-width: 1180px;
    margin: 0 auto;
    border-radius: 38px;
    border: 3.5px solid rgba(218, 165, 32, 0.18);
}

.contact-card h2 {
    font-family: 'Abhaya Libre', serif;
    font-size: 4.68rem;
    margin-bottom: 2.88rem;
    color: #3d2817;
    font-weight: 800;
    letter-spacing: -0.68px;
}

.contact-card > p {
    font-size: 1.38rem;
    color: #6d4c2f;
    line-height: 1.76;
    margin-bottom: 4.78rem;
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}

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

.contact-link {
    display: flex;
    align-items: center;
    gap: 1.58rem;
    padding: 1.58rem 3.88rem;
    background: linear-gradient(135deg, #daa520 0%, #b8860b 100%);
    color: #fffdf7;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.52px;
    transition: all 0.36s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: 28px;
    box-shadow: 0 12px 38px rgba(218, 165, 32, 0.38);
    font-family: 'Nunito Sans', sans-serif;
}

.contact-link:hover {
    background: linear-gradient(135deg, #b8860b 0%, #8b6914 100%);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(218, 165, 32, 0.48);
}

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

#footer {
    background: linear-gradient(135deg, #3d2817 0%, #2a1b0f 50%, #1f1309 100%);
    padding: 4.68rem 0;
    text-align: center;
    color: rgba(255, 253, 247, 0.68);
    border-top: 4px solid #daa520;
}

#footer a {
    color: #daa520;
    text-decoration: none;
    transition: color 0.32s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-weight: 700;
}

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

@media screen and (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 4.88rem;
        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.48rem;
        height: 68px;
    }

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

    .nav-menu {
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        background: rgba(255, 253, 247, 0.96);
        backdrop-filter: blur(18px);
        flex-direction: column;
        padding: 3.28rem;
        gap: 0;
        box-shadow: 0 18px 52px rgba(61, 40, 23, 0.14);
        transform: translateY(-150%);
        transition: transform 0.46s cubic-bezier(0.34, 1.56, 0.64, 1);
        border-bottom: 2.5px solid rgba(218, 165, 32, 0.22);
    }

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

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

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

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

    .mobile-toggle {
        display: block;
    }

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

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

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

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 3.18rem;
        margin-bottom: 5.58rem;
        padding-left: 6.88rem;
    }

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

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

    .contact-card {
        padding: 5.18rem 4.08rem;
    }
}

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

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

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

    #hero {
        padding: 118px 0 88px;
    }

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

    .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.88rem;
    }

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

    .profile-card {
        padding: 2.18rem;
    }

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

    .timeline-content {
        padding: 2.52rem;
    }

    .project-card {
        padding: 3.18rem 2.52rem;
    }

    .contact-card {
        padding: 4.68rem 2.52rem;
    }

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

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

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