/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary-color: #10b981;
    --secondary-light: #34d399;
    --accent-color: #f59e0b;
    --accent-light: #fbbf24;
    --text-dark: #0f172a;
    --text-light: #64748b;
    --bg-dark: #0f172a;
    --bg-darker: #020617;
    --bg-card: rgba(30, 41, 59, 0.6);
    --border-color: rgba(99, 102, 241, 0.2);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: white;
    background-color: var(--bg-darker);
    overflow-x: hidden;
}

/* Cursor Particle Canvas */
#cursor-particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: screen;
}

/* Keep default cursor on interactive elements */
a, button, input, textarea, select, [role="button"], [tabindex] {
    cursor: pointer;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 25%, #1e3a8a 50%, #312e81 75%, #1e293b 100%);
    background-size: 400% 400%;
    animation: gradientShift 20s ease infinite;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(245, 158, 11, 0.1) 0%, transparent 60%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 1px,
        rgba(0, 0, 0, 0.3) 1px,
        rgba(0, 0, 0, 0.3) 2px
    );
    z-index: 1;
    pointer-events: none;
    opacity: 0.9;
}

#particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    opacity: 0.8;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 4rem 5rem;
    animation: fadeInUp 1s ease-out;
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(20px) saturate(180%);
    border-radius: 24px;
    border: 1px solid rgba(99, 102, 241, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(255, 255, 255, 0.1) inset,
                0 0 60px rgba(99, 102, 241, 0.2);
}

/* Navbar Styles */
.navbar {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    max-width: calc(100% - 10rem);
    padding: 1rem 5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    pointer-events: none;
}

.navbar .navbar-container {
    pointer-events: all;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0;
}

.navbar-logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    background: linear-gradient(135deg, #ffffff 0%, #c7d2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.navbar-logo:hover {
    background: linear-gradient(135deg, #c7d2fe 0%, #a5b4fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.navbar-menu li {
    margin: 0;
}

.navbar-menu a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.25rem 0;
}

.navbar-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-light), var(--secondary-light));
    transition: width 0.3s ease;
}

.navbar-menu a:hover {
    color: white;
}

.navbar-menu a:hover::after {
    width: 100%;
}

/* Navbar when fixed to top */
.navbar.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    transform: translateX(0);
    width: 100vw;
    max-width: 100%;
    padding: 1rem 2rem;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(99, 102, 241, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border-radius: 0;
    margin: 0;
}

.navbar.fixed .navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.navbar.fixed .navbar-logo {
    font-size: 1.125rem;
}

.navbar.fixed .navbar-menu a {
    font-size: 0.9rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, #c7d2fe 50%, #a5b4fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.02em;
}

.hero-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 3rem;
    line-height: 1.8;
    font-weight: 300;
    position: relative;
}

#software-engineering-text {
    position: relative;
    display: inline-block;
}

.hobby-note {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: absolute;
    left: calc(70% + 0.25rem);
    top: 82%;
    transform: translateY(-50%);
    white-space: nowrap;
    animation: fadeInUp 1.2s ease-out 0.3s both;
}

.curved-arrow {
    position: absolute;
    left: -80px;
    top: -17px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    flex-shrink: 0;
}

/* .hobby-note:hover .curved-arrow {
    opacity: 1;
} */

.hobby-text {
    font-family: 'Dancing Script', cursive;
    font-size: 1.25rem;
    /* color: whitesmoke; */
    font-weight: 500;
    font-style: italic;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

/* .hobby-note:hover .hobby-text {
    color: rgba(255, 255, 255, 1);
    transform: scale(1.05);
} */

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
}

.scroll-arrow {
    font-size: 1.5rem;
    color: var(--primary-light);
    animation: subtleBounce 2s ease-in-out infinite;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.125rem;
    margin-bottom: 4rem;
}

/* Experience Section */
.experience-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    position: relative;
    color: white;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 2rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #6366f1, #8b5cf6, #10b981);
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    padding-left: 5rem;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease-out;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.timeline-item.active .timeline-marker {
    background: var(--primary-color);
    box-shadow: 0 0 0 8px rgba(99, 102, 241, 0.3);
}

.timeline-marker {
    position: absolute;
    left: 1.5rem;
    top: 0.5rem;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: rgba(30, 41, 59, 0.9);
    border: 3px solid var(--primary-color);
    z-index: 2;
    transition: all 0.3s ease;
}

.timeline-content {
    background: rgba(30, 41, 59, 0.7);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(99, 102, 241, 0.3);
    backdrop-filter: blur(12px);
}

.timeline-content:hover {
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4),
                0 0 0 1px rgba(99, 102, 241, 0.2);
    transform: translateY(-2px);
    border-color: rgba(99, 102, 241, 0.5);
}

.timeline-date {
    color: var(--primary-light);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.timeline-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
}

.timeline-company {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    margin-bottom: 1rem;
}

.timeline-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.timeline-duties {
    list-style: none;
    padding-left: 0;
}

.timeline-duties li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.timeline-duties li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.timeline-achievements {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline-achievements strong {
    color: white;
    display: block;
    margin-bottom: 0.75rem;
}

.timeline-achievements ul {
    list-style: none;
    padding-left: 0;
}

.timeline-achievements ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.timeline-achievements ul li::before {
    content: '★';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

/* Info Section */
.info-section {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 50%, #1e293b 100%);
    color: white;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.info-card {
    text-align: center;
    padding: 2rem;
    background: rgba(30, 41, 59, 0.7);
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(99, 102, 241, 0.3);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4),
                0 0 0 1px rgba(99, 102, 241, 0.2);
    border-color: rgba(99, 102, 241, 0.5);
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.info-card p {
    color: rgba(255, 255, 255, 0.7);
}

.info-card a {
    color: var(--primary-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-card a:hover {
    color: var(--secondary-light);
    text-decoration: underline;
}

/* Download Section */
.download-section {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #10b981 100%);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
    color: white;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.download-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.download-card {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px) saturate(180%);
    padding: 4rem 2rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    position: relative;
    z-index: 2;
}

.download-icon {
    margin: 0 auto 2rem;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
}

.download-icon svg {
    width: 40px;
    height: 40px;
}

.download-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.download-description {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.download-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.download-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: #f8fafc;
}

.download-button svg {
    width: 20px;
    height: 20px;
}

.download-note {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    opacity: 0.7;
    font-style: italic;
}

/* Footer */
.footer {
    background-color: var(--bg-darker);
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(99, 102, 241, 0.2);
}

.footer p {
    opacity: 0.8;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.scroll-to-top:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.6),
                0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
}

.scroll-to-top:active {
    transform: translateY(-2px) scale(1);
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.scroll-to-top:hover svg {
    transform: translateY(-2px);
}

/* Engagement Popup */
.engagement-popup {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.95) 0%, rgba(139, 92, 246, 0.95) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    padding-right: 2.5rem; /* Extra padding for close button */
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.1) inset,
                0 0 60px rgba(99, 102, 241, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-20px) scale(0.9);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 10000;
    max-width: 280px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
}

.engagement-popup:hover {
    transform: translateX(0) scale(1.02);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.5),
                0 0 0 1px rgba(255, 255, 255, 0.15) inset,
                0 0 80px rgba(99, 102, 241, 0.4);
}

.engagement-popup.visible:hover {
    transform: translateX(0) scale(1.02);
}

@media (max-width: 768px) {
    .engagement-popup {
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
        max-width: none;
    }
}

.engagement-popup.visible {
    opacity: 1;
    visibility: visible;
    transform: translateX(0) scale(1);
}

.engagement-popup-close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    color: white;
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    padding: 0;
}

.engagement-popup-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg) scale(1.1);
}

.engagement-popup-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.engagement-popup-icon {
    font-size: 2rem;
    animation: wave 2s ease-in-out infinite;
    transform-origin: 70% 70%;
}

@keyframes wave {
    0%, 100% {
        transform: rotate(0deg);
    }
    10%, 30% {
        transform: rotate(14deg);
    }
    20% {
        transform: rotate(-8deg);
    }
    40%, 60% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(10deg);
    }
}

.engagement-popup-message {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes subtleBounce {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.8;
    }
    50% {
        transform: translateY(5px);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        padding: 2rem 2rem;
        padding-top: 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
        margin-top: 2.5rem;
    }

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

    .hobby-note {
        left: calc(100% + 0.25rem);
        top: 60%;
        gap: 0.4rem;
    }

    .hobby-text {
        font-size: 1.1rem;
    }

    .curved-arrow {
        width: 35px;
        height: 25px;
        left: -40px;
        top: -18px;
    }

    .navbar {
        padding: 0.75rem 0;
    }

    .navbar-logo {
        font-size: 1.125rem;
    }

    .navbar-menu {
        gap: 1.25rem;
    }

    .navbar-menu a {
        font-size: 0.85rem;
    }

    .navbar.fixed {
        padding: 0.75rem 1rem;
    }

    .navbar.fixed .navbar-logo {
        font-size: 1rem;
    }

    .navbar.fixed .navbar-menu a {
        font-size: 0.8rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .timeline::before {
        left: 1rem;
    }

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

    .timeline-marker {
        left: 0.5rem;
    }

    .timeline-content {
        padding: 1.5rem;
    }

    .download-card {
        padding: 3rem 1.5rem;
    }

    .download-title {
        font-size: 2rem;
    }

    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 1.5rem 1.5rem;
        padding-top: 1rem;
    }

    .hero-title {
        font-size: 2rem;
        margin-top: 2rem;
    }

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

    .hobby-note {
        left: calc(100% + 0.15rem);
        top: 60%;
        gap: 0.3rem;
    }

    .hobby-text {
        font-size: 0.95rem;
    }

    .curved-arrow {
        width: 30px;
        height: 22px;
        left: -35px;
        top: -15px;
    }

    .navbar {
        padding: 0.5rem 0;
    }

    .navbar-logo {
        font-size: 1rem;
    }

    .navbar-menu {
        gap: 1rem;
    }

    .navbar-menu a {
        font-size: 0.8rem;
    }

    .navbar.fixed {
        padding: 0.5rem 1rem;
    }

    .navbar.fixed .navbar-logo {
        font-size: 0.95rem;
    }

    .navbar.fixed .navbar-menu a {
        font-size: 0.75rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

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

    .scroll-to-top {
        width: 48px;
        height: 48px;
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .scroll-to-top svg {
        width: 20px;
        height: 20px;
    }
}

