/* Theme: Cherry Blossom - Day 29: Inspired by Japanese sakura gardens, delicate pink petals, springtime renewal, traditional Japanese aesthetics, soft romantic pastels, hanami celebrations, poetic beauty, gentle breezes, nature's ephemeral grace, zen tranquility */

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

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

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

body {
    font-family: 'Lato', sans-serif;
    font-size: 16.8px;
    line-height: 1.8;
    color: #4a3842;
    background: linear-gradient(165deg, #fff5f8 0%, #ffe9f0 18%, #ffd4e5 38%, #ffe0ed 62%, #fff8fb 85%, #ffffff 100%);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 18% 12%, rgba(255, 182, 193, 0.12) 0%, transparent 38%),
        radial-gradient(circle at 82% 88%, rgba(255, 192, 203, 0.1) 0%, transparent 42%),
        radial-gradient(circle at 45% 55%, rgba(255, 228, 225, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: petalFloat 35s ease-in-out infinite alternate;
}

@keyframes petalFloat {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.85;
        transform: scale(1.05);
    }
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-radial-gradient(
            circle at 25% 35%,
            transparent 0,
            transparent 105px,
            rgba(255, 182, 193, 0.018) 105px,
            rgba(255, 182, 193, 0.018) 108px
        );
    pointer-events: none;
    z-index: 0;
}

#topnav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(22px);
    border-bottom: 2px solid rgba(255, 182, 193, 0.25);
    box-shadow: 0 4px 28px rgba(255, 182, 193, 0.15);
    transition: all 0.4s ease;
}

#topnav.scrolled {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 6px 36px rgba(255, 182, 193, 0.22);
    border-bottom-color: rgba(255, 182, 193, 0.35);
}

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

.logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.68rem;
    font-weight: 700;
    color: #d87093;
    margin: 0;
    letter-spacing: 0.35px;
    position: relative;
    padding-left: 2.95rem;
}

.logo h1::before {
    content: '🌸';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.95rem;
    animation: blossomSway 4.5s ease-in-out infinite;
}

@keyframes blossomSway {
    0%, 100% {
        transform: translateY(-50%) rotate(-5deg);
    }
    50% {
        transform: translateY(-50%) rotate(5deg);
    }
}

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

.nav-menu li a {
    display: block;
    padding: 0.68rem 1.58rem;
    color: #4a3842;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.92rem;
    transition: all 0.32s ease;
    position: relative;
    letter-spacing: 0.55px;
    border-radius: 22px;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ffb6c1 0%, #ffc0cb 50%, #ff91a4 100%);
    transition: width 0.32s ease;
    border-radius: 1px;
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: calc(100% - 3.16rem);
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #d87093;
    background: rgba(255, 182, 193, 0.08);
}

.mobile-toggle {
    display: none;
    background: linear-gradient(135deg, #ffb6c1 0%, #ffc0cb 100%);
    border: none;
    color: #ffffff;
    font-size: 1.55rem;
    width: 52px;
    height: 52px;
    cursor: pointer;
    transition: all 0.32s ease;
    border-radius: 50%;
    box-shadow: 0 8px 28px rgba(255, 182, 193, 0.35);
}

.mobile-toggle:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 38px rgba(255, 182, 193, 0.45);
}

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

#hero::before {
    content: '🌸';
    position: absolute;
    top: 12%;
    right: 8%;
    font-size: 8.5rem;
    opacity: 0.08;
    animation: petalDrift1 16s ease-in-out infinite;
}

#hero::after {
    content: '🌸';
    position: absolute;
    bottom: 15%;
    left: 5%;
    font-size: 9.8rem;
    opacity: 0.06;
    animation: petalDrift2 19s ease-in-out infinite;
}

@keyframes petalDrift1 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.08;
    }
    50% {
        transform: translate(-45px, 55px) rotate(180deg);
        opacity: 0.12;
    }
}

@keyframes petalDrift2 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.06;
    }
    50% {
        transform: translate(55px, -45px) rotate(-180deg);
        opacity: 0.11;
    }
}

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

.hero-text {
    animation: blossomBloom 1.25s ease-out;
}

@keyframes blossomBloom {
    0% {
        opacity: 0;
        transform: translateY(55px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4.25rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 2.55rem;
    color: #4a3842;
    letter-spacing: -0.28px;
}

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

.hero-subtitle {
    font-size: 1.48rem;
    color: #8a7086;
    margin-bottom: 3.85rem;
    line-height: 1.65;
    font-weight: 300;
    letter-spacing: 0.18px;
}

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

.btn {
    display: inline-block;
    padding: 1.18rem 3.25rem;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.38s ease;
    font-size: 0.98rem;
    letter-spacing: 0.68px;
    font-family: 'Lato', sans-serif;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    border-radius: 28px;
}

.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.58s ease, height 0.58s ease;
}

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

.btn-primary {
    background: linear-gradient(135deg, #ffb6c1 0%, #ffc0cb 50%, #ff91a4 100%);
    color: #ffffff;
    box-shadow: 0 14px 42px rgba(255, 182, 193, 0.32);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 55px rgba(255, 182, 193, 0.45);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.95);
    color: #d87093;
    border: 2px solid #ffb6c1;
    box-shadow: 0 10px 35px rgba(255, 182, 193, 0.22);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #d87093 0%, #ff91a4 100%);
    color: #ffffff;
    border-color: transparent;
    transform: translateY(-4px);
    box-shadow: 0 16px 45px rgba(216, 112, 147, 0.35);
}

.hero-image {
    animation: blossomBloom 1.25s ease-out 0.22s both;
}

.profile-card {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(22px);
    padding: 2.95rem;
    box-shadow: 
        0 0 0 2px rgba(255, 182, 193, 0.15),
        0 24px 68px rgba(255, 182, 193, 0.18);
    transition: all 0.48s ease;
    position: relative;
    border-radius: 32px;
}

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

.profile-card::after {
    content: '🌸';
    position: absolute;
    bottom: 38px;
    right: 38px;
    font-size: 5.85rem;
    opacity: 0.045;
}

.profile-card:hover {
    transform: translateY(-16px) scale(1.022);
    box-shadow: 
        0 0 0 2px rgba(255, 182, 193, 0.28),
        0 38px 95px rgba(255, 182, 193, 0.28);
}

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

.profile-card img {
    width: 100%;
    margin-bottom: 2.35rem;
    box-shadow: 0 18px 52px rgba(255, 182, 193, 0.22);
    border-radius: 22px;
}

.profile-details h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.45rem;
    margin-bottom: 0.88rem;
    color: #4a3842;
    font-weight: 700;
    letter-spacing: -0.18px;
}

.profile-details p {
    color: #8a7086;
    margin-bottom: 2.85rem;
    line-height: 1.65;
    font-weight: 300;
}

.social-links a {
    display: inline-block;
    padding: 1.18rem 3.05rem;
    background: linear-gradient(135deg, #d87093 0%, #ff91a4 100%);
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 0.68px;
    transition: all 0.38s ease;
    border-radius: 28px;
    box-shadow: 0 14px 42px rgba(216, 112, 147, 0.32);
    font-family: 'Lato', sans-serif;
}

.social-links a:hover {
    background: linear-gradient(135deg, #c9607f 0%, #ff7a8f 100%);
    transform: translateY(-4px);
    box-shadow: 0 20px 55px rgba(216, 112, 147, 0.45);
}

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

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

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

.section-header::before {
    content: '✿';
    position: absolute;
    top: -58px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.95rem;
    opacity: 0.38;
    color: #ffb6c1;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 4.05rem;
    font-weight: 800;
    line-height: 1.12;
    color: #4a3842;
    letter-spacing: -0.45px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    width: 125px;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #ffb6c1 25%, #ffc0cb 50%, #ffb6c1 75%, transparent 100%);
    border-radius: 2px;
}

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

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

.timeline::before {
    content: '';
    position: absolute;
    left: 285px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #ffb6c1 0%, #ffc0cb 50%, #ff91a4 100%);
    border-radius: 2px;
    opacity: 0.38;
}

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

.timeline-year {
    font-family: 'Playfair Display', serif;
    font-size: 6.15rem;
    font-weight: 800;
    color: rgba(255, 182, 193, 0.12);
    position: relative;
    z-index: 2;
    text-align: right;
    padding-right: 5.85rem;
    letter-spacing: -1.85px;
}

.timeline-year::after {
    content: '';
    position: absolute;
    right: -112px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, #ffb6c1 0%, #ffc0cb 100%);
    border-radius: 50%;
    box-shadow: 
        0 0 0 8px rgba(255, 255, 255, 1),
        0 0 0 11px rgba(255, 182, 193, 0.18),
        0 0 22px rgba(255, 182, 193, 0.32);
    animation: blossomPulse 3.5s ease-in-out infinite;
}

@keyframes blossomPulse {
    0%, 100% {
        box-shadow: 
            0 0 0 8px rgba(255, 255, 255, 1),
            0 0 0 11px rgba(255, 182, 193, 0.18),
            0 0 22px rgba(255, 182, 193, 0.32);
    }
    50% {
        box-shadow: 
            0 0 0 8px rgba(255, 255, 255, 1),
            0 0 0 18px rgba(255, 192, 203, 0.28),
            0 0 32px rgba(255, 192, 203, 0.45);
    }
}

.timeline-content {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(18px);
    padding: 3.55rem;
    transition: all 0.45s ease;
    box-shadow: 
        0 0 0 2px rgba(255, 182, 193, 0.1),
        0 22px 62px rgba(255, 182, 193, 0.15);
    position: relative;
    border-radius: 28px;
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #ffb6c1 0%, #ffc0cb 50%, #ff91a4 100%);
    border-radius: 28px 0 0 28px;
    opacity: 0;
    transition: opacity 0.45s ease;
}

.timeline-content:hover {
    transform: translateX(18px);
    box-shadow: 
        0 0 0 2px rgba(255, 182, 193, 0.22),
        0 32px 82px rgba(255, 182, 193, 0.24);
    background: rgba(255, 255, 255, 0.92);
}

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

.timeline-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.45rem;
    margin-bottom: 0.88rem;
    color: #4a3842;
    font-weight: 700;
    letter-spacing: -0.18px;
}

.timeline-content h4 {
    color: #d87093;
    font-size: 1.35rem;
    margin-bottom: 2.15rem;
    font-weight: 400;
    letter-spacing: 0.28px;
}

.timeline-content p {
    color: #8a7086;
    line-height: 1.8;
    margin: 0;
}

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

.timeline-content a:hover {
    border-bottom-color: #ff91a4;
    color: #d87093;
}

#ai {
    background: rgba(255, 233, 240, 0.42);
    backdrop-filter: blur(18px);
}

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

.project-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(18px);
    padding: 4.55rem;
    transition: all 0.45s ease;
    position: relative;
    box-shadow: 
        0 0 0 2px rgba(255, 182, 193, 0.1),
        0 24px 68px rgba(255, 182, 193, 0.16);
    border-radius: 32px;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #ffb6c1 0%, #ffc0cb 50%, #ff91a4 100%);
    border-radius: 32px 32px 0 0;
}

.project-card::after {
    content: '🌸';
    position: absolute;
    top: 48px;
    right: 48px;
    font-size: 6.85rem;
    opacity: 0.035;
}

.project-card:hover {
    transform: translateY(-12px);
    box-shadow: 
        0 0 0 2px rgba(255, 182, 193, 0.22),
        0 36px 92px rgba(255, 182, 193, 0.24);
    background: rgba(255, 255, 255, 0.92);
}

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

.project-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 3.25rem;
    color: #4a3842;
    margin: 0;
    font-weight: 700;
    letter-spacing: -0.35px;
}

.project-client {
    color: #d87093;
    font-weight: 400;
    font-size: 1.35rem;
    margin-bottom: 2.85rem;
    letter-spacing: 0.28px;
}

.project-card > p {
    color: #8a7086;
    line-height: 1.8;
    margin-bottom: 3.55rem;
}

.project-impact {
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.08) 0%, rgba(255, 192, 203, 0.08) 100%);
    padding: 2.75rem;
    color: #4a3842;
    line-height: 1.8;
    border-radius: 22px;
    border-left: 5px solid #ffb6c1;
}

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

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

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

.year-section {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(18px);
    padding: 3.95rem;
    transition: all 0.45s ease;
    box-shadow: 
        0 0 0 2px rgba(255, 182, 193, 0.1),
        0 22px 62px rgba(255, 182, 193, 0.15);
    border-radius: 28px;
    position: relative;
}

.year-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffb6c1 0%, #ffc0cb 50%, #ff91a4 100%);
    border-radius: 28px 28px 0 0;
    opacity: 0.32;
    transition: opacity 0.45s ease;
}

.year-section:hover {
    transform: translateY(-12px);
    box-shadow: 
        0 0 0 2px rgba(255, 182, 193, 0.22),
        0 32px 82px rgba(255, 182, 193, 0.24);
    background: rgba(255, 255, 255, 0.92);
}

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

.year-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 4.55rem;
    margin-bottom: 3.55rem;
    color: #4a3842;
    text-align: center;
    padding-bottom: 2.75rem;
    border-bottom: 3px solid rgba(255, 182, 193, 0.18);
    font-weight: 800;
    letter-spacing: -0.55px;
}

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

.year-section.books::before {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.38) 0%, rgba(255, 255, 255, 0.38) 100%);
}

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

.achievements {
    list-style: none;
}

.achievements li {
    padding: 1.85rem 0;
    color: #8a7086;
    border-bottom: 2px solid rgba(74, 56, 66, 0.06);
    line-height: 1.8;
    position: relative;
    padding-left: 3.25rem;
}

.achievements li::before {
    content: '✿';
    position: absolute;
    left: 0;
    top: 1.85rem;
    font-size: 1.35rem;
    color: #ffb6c1;
}

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

.year-section.books .achievements li::before {
    filter: brightness(0) invert(1);
}

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

.achievements strong {
    color: #4a3842;
    font-weight: 700;
}

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

#personal {
    background: rgba(255, 233, 240, 0.42);
    backdrop-filter: blur(18px);
}

#contact {
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.045) 0%, rgba(255, 192, 203, 0.045) 100%);
    backdrop-filter: blur(18px);
}

.contact-card {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(28px);
    padding: 7.85rem 6.95rem;
    text-align: center;
    box-shadow: 
        0 0 0 2px rgba(255, 182, 193, 0.15),
        0 38px 112px rgba(255, 182, 193, 0.2);
    max-width: 1220px;
    margin: 0 auto;
    border-radius: 38px;
}

.contact-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 5.85rem;
    margin-bottom: 3.55rem;
    color: #4a3842;
    font-weight: 800;
    letter-spacing: -0.85px;
}

.contact-card > p {
    font-size: 1.65rem;
    color: #8a7086;
    line-height: 1.8;
    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.15rem;
    padding: 2.15rem 4.95rem;
    background: linear-gradient(135deg, #ffb6c1 0%, #ffc0cb 50%, #ff91a4 100%);
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 0.68px;
    transition: all 0.38s ease;
    border-radius: 32px;
    box-shadow: 0 22px 68px rgba(255, 182, 193, 0.32);
    font-family: 'Lato', sans-serif;
}

.contact-link:hover {
    background: linear-gradient(135deg, #ff9fb0 0%, #ffb0bb 50%, #ff7a93 100%);
    transform: translateY(-6px);
    box-shadow: 0 32px 88px rgba(255, 182, 193, 0.45);
}

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

#footer {
    background: #4a3842;
    padding: 5.85rem 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.68);
    border-top: 3px solid rgba(255, 182, 193, 0.22);
}

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

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

@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: 565px;
        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.75rem;
        height: 65px;
    }

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

    .nav-menu {
        position: fixed;
        top: 65px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(22px);
        flex-direction: column;
        padding: 3.95rem;
        gap: 0;
        box-shadow: 0 28px 68px rgba(255, 182, 193, 0.22);
        transform: translateY(-150%);
        transition: transform 0.48s ease;
        border-bottom: 2px solid rgba(255, 182, 193, 0.25);
    }

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

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

    .nav-menu li a {
        width: 100%;
        text-align: center;
        padding: 1.35rem;
        border-bottom: 2px solid rgba(74, 56, 66, 0.06);
    }

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

    .mobile-toggle {
        display: block;
    }

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

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

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

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 3.95rem;
        margin-bottom: 5.85rem;
        padding-left: 7.85rem;
    }

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

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

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

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

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

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

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

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

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

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

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

    section {
        padding: 88px 0;
    }

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

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

    .profile-card {
        padding: 2.25rem;
    }

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

    .timeline-content {
        padding: 2.85rem;
    }

    .project-card {
        padding: 3.85rem 2.85rem;
    }

    .contact-card {
        padding: 5.15rem 2.85rem;
    }

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

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

    .contact-link {
        justify-content: center;
        padding: 1.45rem 2.85rem;
        font-size: 0.92rem;
    }
}