:root {
    --bg: #f5f2ec;
    --bg-dark: #141210;
    --text: #1a1714;
    --text-muted: #6b6560;
    --accent: #c8533a;
    --accent-2: #e8a87c;
    --border: rgba(26, 23, 20, 0.12);
    --border-dark: rgba(245, 242, 236, 0.1);
    --card-bg: #ffffff;
    --card-dark: #1e1b18;
    --font-display: "Syne", sans-serif;
    --font-mono: "DM Mono", monospace;
    --font-body: "DM Sans", sans-serif;
    --radius: 4px;
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* NOISE TEXTURE */
.noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ======================== TYPOGRAPHY ======================== */

h1,
h2,
h3 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.1;
}
p {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--text-muted);
}
strong {
    font-weight: 500;
    color: var(--text);
}
em {
    font-style: italic;
}

.accent {
    color: var(--accent);
}

a {
    text-decoration: none;
    color: inherit;
}

/* ======================== LAYOUT ======================== */

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 40px;
}

.section {
    padding: 120px 0;
}

.section--dark {
    background: var(--bg-dark);
    color: #f5f2ec;
}

.section--dark p,
.section--dark .text-muted {
    color: rgba(245, 242, 236, 0.55);
}

.section--dark strong {
    color: #f5f2ec;
}

.section-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 24px;
}

.section--dark .section-label {
    color: var(--accent-2);
}

.section-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 48px;
    line-height: 1.05;
}

.divider {
    height: 1px;
    background: var(--border);
    margin: 80px 0;
}

.section--dark .divider {
    background: var(--border-dark);
}

/* ======================== REVEAL ANIMATION ======================== */

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.7s var(--ease),
        transform 0.7s var(--ease);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ======================== NAV ======================== */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    padding: 24px 40px;
    background: transparent;
    transition:
        background 0.4s,
        padding 0.4s,
        backdrop-filter 0.4s;
}

.nav.scrolled {
    background: rgba(245, 242, 236, 0.9);
    backdrop-filter: blur(12px);
    padding: 16px 40px;
    border-bottom: 1px solid var(--border);
}

.nav-logo {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
    margin-right: auto;
}

.dot {
    color: var(--accent);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 36px;
    margin-right: 40px;
}

.nav-links a {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-cta {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    padding: 10px 20px;
    border: 1.5px solid var(--accent);
    color: var(--accent);
    border-radius: var(--radius);
    transition:
        background 0.2s,
        color 0.2s;
}

.nav-cta:hover {
    background: var(--accent);
    color: #fff;
}

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: 0.3s;
}

/* ======================== MOBILE MENU ======================== */

.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--bg-dark);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu ul {
    list-style: none;
    text-align: center;
}

.mobile-menu ul li {
    margin: 24px 0;
}

.mobile-menu ul li a {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: #f5f2ec;
    transition: color 0.2s;
}

.mobile-menu ul li a:hover {
    color: var(--accent-2);
}

/* ======================== HERO ======================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 40px 80px;
    max-width: 1140px;
    margin: 0 auto;
    position: relative;
}

.hero-bg-text {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(100px, 18vw, 260px);
    color: rgba(26, 23, 20, 0.035);
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
    letter-spacing: -0.05em;
    user-select: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 740px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    border: 1px solid var(--accent);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 28px;
}

.hero-tag::before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(0.8);
    }
}

.hero-name {
    font-size: clamp(3.5rem, 9vw, 7rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-mono);
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.sep {
    margin: 0 8px;
    opacity: 0.4;
}

.hero-sub {
    font-size: 1.15rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 48px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 32px;
    background: var(--text);
    color: var(--bg);
    border-radius: var(--radius);
    transition:
        background 0.2s,
        transform 0.2s;
    letter-spacing: 0.02em;
}

.btn-primary:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

.btn-ghost {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 28px;
    border: 1.5px solid var(--border);
    color: var(--text);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 8px;
    transition:
        border-color 0.2s,
        color 0.2s,
        transform 0.2s;
}

.btn-ghost:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.hero-scroll {
    position: absolute;
    bottom: 48px;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.hero-scroll span {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    writing-mode: vertical-rl;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scrollDown 1.5s ease-in-out infinite;
}

@keyframes scrollDown {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }
    50% {
        transform: scaleY(1);
        transform-origin: top;
    }
    51% {
        transform: scaleY(1);
        transform-origin: bottom;
    }
    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

/* ======================== ABOUT ======================== */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 80px;
    align-items: start;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.75;
}

.about-langs {
    display: flex;
    gap: 24px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.lang-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    min-width: 100px;
}

.lang-name {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
}

.lang-level {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: var(--accent);
    text-transform: uppercase;
}

.about-aside {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: sticky;
    top: 100px;
}

.aside-card {
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--card-bg);
}

.aside-card--accent {
    border-color: var(--accent);
    background: rgba(200, 83, 58, 0.04);
}

.aside-label {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.aside-value {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.aside-sub {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ======================== SKILLS ======================== */

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-bottom: 0;
}

.skill-group {
    padding: 28px;
    border: 1px solid var(--border-dark);
    border-radius: var(--radius);
}

.skill-group-title {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-2);
    margin-bottom: 16px;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    padding: 6px 14px;
    background: rgba(245, 242, 236, 0.08);
    border: 1px solid rgba(245, 242, 236, 0.15);
    border-radius: 100px;
    color: #f5f2ec;
    white-space: nowrap;
}

/* Light background tag variant */
.section:not(.section--dark) .tag {
    background: rgba(26, 23, 20, 0.06);
    border-color: var(--border);
    color: var(--text);
}

.tag--sm {
    font-size: 0.7rem;
    padding: 4px 10px;
}

.tag--outline {
    background: transparent;
    border: 1px solid rgba(245, 242, 236, 0.2);
    color: rgba(245, 242, 236, 0.6);
}

.section:not(.section--dark) .tag--outline {
    background: transparent;
    border-color: var(--border);
    color: var(--text-muted);
}

.soft-skills-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 32px;
    color: rgba(245, 242, 236, 0.5);
    letter-spacing: 0.02em;
}

.section:not(.section--dark) .soft-skills-title {
    color: var(--text-muted);
}

.soft-skills {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.soft-skill {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.soft-icon {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--accent-2);
    padding-top: 3px;
    flex-shrink: 0;
    width: 24px;
}

.soft-skill strong {
    display: block;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 6px;
    color: #f5f2ec;
}

.soft-skill p {
    font-size: 0.88rem;
    line-height: 1.6;
    color: rgba(245, 242, 236, 0.5);
}

/* ======================== PROJECTS ======================== */

.projects-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 0;
}

.projects-sub {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 48px;
}

/* GitHub Repos live section */
.gh-repos {
    margin-bottom: 0;
}

.gh-loading {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 48px 0;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    flex-shrink: 0;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.gh-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 0;
}

.gh-card {
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--card-bg);
    transition:
        border-color 0.2s,
        transform 0.2s,
        box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.5s var(--ease) forwards;
}

.gh-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(200, 83, 58, 0.08);
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gh-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.gh-card-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    color: var(--text);
    word-break: break-word;
}

.gh-card-link {
    flex-shrink: 0;
    color: var(--text-muted);
    transition: color 0.2s;
}

.gh-card-link:hover {
    color: var(--accent);
}

.gh-card-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    flex: 1;
}

.gh-card-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.gh-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-muted);
}

.gh-lang-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
}

.gh-error {
    padding: 32px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--text-muted);
    background: rgba(26, 23, 20, 0.03);
}

.gh-stats {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.gh-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.gh-stat-val {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.8rem;
    line-height: 1;
}

.gh-stat-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* Manual project cards */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.project-card {
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--card-bg);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition:
        border-color 0.2s,
        transform 0.2s,
        box-shadow 0.2s;
}

.project-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(200, 83, 58, 0.08);
}

.project-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.project-number {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.08em;
}

.project-link {
    color: var(--text-muted);
    transition: color 0.2s;
}

.project-link:hover {
    color: var(--accent);
}

.project-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    line-height: 1.3;
}

.project-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.65;
    flex: 1;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

/* ======================== TIMELINE ======================== */

.timeline {
    position: relative;
    padding-left: 32px;
    border-left: 1px solid var(--border-dark);
    margin-bottom: 0;
}

.timeline-item {
    position: relative;
    padding-bottom: 56px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -37px;
    top: 6px;
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
    border: 2px solid var(--bg-dark);
}

.timeline-date {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--accent-2);
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.timeline-content h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.15rem;
    color: #f5f2ec;
    margin-bottom: 4px;
}

.timeline-company {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: rgba(245, 242, 236, 0.4);
    margin-bottom: 16px;
}

.timeline-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.timeline-list li {
    font-size: 0.9rem;
    color: rgba(245, 242, 236, 0.6);
    line-height: 1.65;
    padding-left: 16px;
    position: relative;
    margin-bottom: 8px;
}

.timeline-list li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 0.7rem;
    top: 4px;
}

.timeline-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* ======================== EDUCATION ======================== */

.edu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.edu-card {
    padding: 32px;
    border: 1px solid var(--border-dark);
    border-radius: var(--radius);
    background: var(--card-dark);
}

.edu-year {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: var(--accent-2);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.edu-card h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    color: #f5f2ec;
    margin-bottom: 6px;
}

.edu-sub {
    font-size: 0.8rem;
    color: rgba(245, 242, 236, 0.4);
    margin-bottom: 16px;
    font-family: var(--font-mono);
}

.edu-list {
    list-style: none;
    padding: 0;
}

.edu-list li {
    font-size: 0.875rem;
    color: rgba(245, 242, 236, 0.55);
    padding-left: 14px;
    position: relative;
    margin-bottom: 8px;
    line-height: 1.6;
}

.edu-list li::before {
    content: "·";
    position: absolute;
    left: 0;
    color: var(--accent-2);
}

/* ======================== INTERESTS ======================== */

.interests-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.interest-card {
    padding: 40px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: border-color 0.2s;
}

.interest-card:hover {
    border-color: var(--accent);
}

.interest-icon {
    font-size: 2rem;
    margin-bottom: 20px;
    display: block;
}

.interest-card h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.interest-card p {
    font-size: 0.92rem;
    line-height: 1.7;
}

/* ======================== CONTACT ======================== */

.contact-wrap {
    max-width: 680px;
}

.contact-sub {
    font-size: 1.05rem;
    color: rgba(245, 242, 236, 0.55);
    line-height: 1.75;
    margin-bottom: 48px;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 48px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-mono);
    font-size: 0.92rem;
    color: rgba(245, 242, 236, 0.6);
    transition: color 0.2s;
    letter-spacing: 0.02em;
}

.contact-link:hover {
    color: var(--accent-2);
}

.contact-link svg {
    flex-shrink: 0;
    opacity: 0.6;
}

.available-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    color: rgba(245, 242, 236, 0.5);
    border: 1px solid rgba(245, 242, 236, 0.12);
    padding: 10px 20px;
    border-radius: 100px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* ======================== FOOTER ======================== */

.footer {
    background: var(--bg-dark);
    border-top: 1px solid var(--border-dark);
    padding: 32px 0;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer span {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: rgba(245, 242, 236, 0.3);
    letter-spacing: 0.05em;
}

/* ======================== RESPONSIVE ======================== */

@media (max-width: 900px) {
    .nav-links,
    .nav-cta {
        display: none;
    }
    .nav-burger {
        display: flex;
    }
    .nav {
        padding: 20px 24px;
    }
    .nav.scrolled {
        padding: 14px 24px;
    }

    .hero {
        padding: 100px 24px 80px;
    }
    .hero-scroll {
        display: none;
    }

    .container {
        padding: 0 24px;
    }
    .section {
        padding: 80px 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .about-aside {
        position: static;
    }

    .projects-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 600px) {
    .section-title {
        font-size: 2rem;
    }
    .hero-name {
        font-size: 3rem;
    }
    .hero-bg-text {
        font-size: 20vw;
    }
    .skills-grid {
        grid-template-columns: 1fr 1fr;
    }
    .soft-skills {
        grid-template-columns: 1fr;
    }
    .projects-grid {
        grid-template-columns: 1fr;
    }
    .edu-grid {
        grid-template-columns: 1fr;
    }
    .interests-grid {
        grid-template-columns: 1fr;
    }
    .footer .container {
        flex-direction: column;
        text-align: center;
    }
}

/* Language color dots for GitHub */
.lang-js {
    background: #f1e05a;
}
.lang-ts {
    background: #3178c6;
}
.lang-html {
    background: #e34c26;
}
.lang-css {
    background: #563d7c;
}
.lang-py {
    background: #3572a5;
}
.lang-sh {
    background: #89e051;
}
.lang-default {
    background: #8b949e;
}
