:root {
    --bg-color: #050507;
    --text-main: #ffffff;
    --text-muted: #888899;
    --accent-glow: #6366f1;
    --accent-secondary: #a855f7;
    --surface: rgba(255, 255, 255, 0.03);
    --surface-hover: rgba(255, 255, 255, 0.08);
    --border: rgba(255, 255, 255, 0.05);
    
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --container-width: 1200px;
    --col-gap: 20px;
    --row-gap: 20px;
}

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

html {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    scroll-behavior: auto; /* Handled by Lenis */
}

body {
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Custom Cursor */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}
.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: white;
}
.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* Utility */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
}
.gradient-text {
    background: linear-gradient(135deg, #fff 0%, var(--text-muted) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
h1 .gradient-text {
    background: linear-gradient(135deg, var(--accent-glow) 0%, var(--accent-secondary) 100%);
    -webkit-background-clip: text;
}

/* Navigation */
.glass-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 500px;
    padding: 12px 24px;
    background: rgba(10, 10, 12, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}
.logo {
    font-weight: 700;
    font-size: 1.1rem;
}
.logo .dot { color: var(--accent-glow); }

.nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-muted);
}
.nav-links a:hover { color: white; }

.btn-primary {
    background: white;
    color: black;
    padding: 8px 16px;
    border-radius: 100px;
    font-weight: 500;
    transition: transform 0.2s ease;
}
.btn-primary:hover {
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    background-image:
            linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
                background-size: 60px 60px;
                background-position: center top;
                overflow: hidden;
                /* Critical: Stops glow from overflowing viewport */
}

.hero-bg-glow {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    max-width: 100vw;
        /* Responsive constraint */
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, rgba(0,0,0,0) 70%);
    filter: blur(80px);
    z-index: -1;
    pointer-events: none;
}

.hero-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    z-index: 2;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    display: flex;
    flex-direction: column;
}
.reveal-text {
    display: block;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-subtitle {
    max-width: 500px;
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
}

.btn-secondary {
    display: inline-block;
    padding: 12px 24px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--surface);
    transition: all 0.3s ease;
}
.btn-secondary:hover {
    background: var(--surface-hover);
    border-color: rgba(255,255,255,0.2);
}

.hero-visual {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    display: none; /* Desktop only initially */
}
@media (min-width: 900px) {
    .hero-visual { display: block; }
}

.float-anim {
    animation: float 6s ease-in-out infinite;
}
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    padding: 20px;
    border-radius: 12px;
}

.code-snippet {
    font-family: monospace;
    font-size: 0.9rem;
}
.c-purple { color: #d8b4fe; }
.c-blue { color: #93c5fd; }
.c-yellow { color: #fde047; }
.c-green { color: #86efac; }


/* Bento Grid */
.bento-section {
    padding: 100px 0;
}
.section-header {
    margin-bottom: 50px;
}
.overline {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.75rem;
    color: var(--accent-glow);
    display: block;
    margin-bottom: 10px;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 240px;
    gap: 20px;
}

.bento-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    padding: 30px;
    transition: border-color 0.3s;
}
.bento-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.span-1 { grid-column: span 1; }
.span-2 { grid-column: span 2; }
.span-4 { grid-column: span 4; }
.row-2 { grid-row: span 2; }

/* Profile Card Specifics */
.profile-card {
    display: flex;
    flex-direction: column;
        padding: 30px;
        gap: 30px;
        background: rgba(255, 255, 255, 0.04);
    }
    
    @media(min-width: 768px) {
        .profile-card {
            flex-direction: row;
            align-items: center;
        justify-content: space-between;
        }
}
.profile-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.role-title {
    color: var(--accent-glow);
    font-weight: 500;
    margin-top: -10px;
    font-size: 0.95rem;
}

.bio-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 90%;
}

.stats-grid {
    display: flex;
    gap: 40px;
        margin-top: 20px;
}
.stat-item {
    display: flex;
    flex-direction: column;
}
/* Avatar Styling */
.profile-avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    flex-shrink: 0;
    position: relative;
}
.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Center usually works, but if it's a UI screenshot, top-center might be better. 
           Let's stick to center for generic support. */
    object-position: center;
}

/* Stack Card */
.stack-card .card-header h3 {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.stack-card .card-header .dim {
    color: var(--text-muted);
    font-weight: 400;
    font-size: 1rem;
}
.tags-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
        /* Increased gap */
        margin-top: 25px;
        align-content: start;
}
.tag {
    background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.08);
        /* Subtle border */
        padding: 8px 16px;
        border-radius: 8px;
        /* Less pill-like, more chip-like */
    font-size: 0.85rem;
    color: var(--text-muted);
        transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        font-weight: 500;
        cursor: default;
    }
    
    .tag:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: var(--accent-glow);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(99, 102, 241, 0.15);
}

/* Social Cards */
.social-card, .cv-card {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
}
.social-card:hover, .cv-card:hover {
    background: var(--surface-hover);
}
.social-link, .cv-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
    height: 100%;
    justify-content: center;
}

/* Work Section */
.work-section {
    padding: 100px 0;
}

.project-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 120px;
    align-items: center;
}
.project-item.reverse {
    direction: rtl; /* simple trick for reverse layout, refined below */
}
.project-item.reverse .project-info {
    direction: ltr; /* Reset text direction */
}

.project-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
}
.project-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}
.project-item:hover .project-image-wrapper img {
    transform: scale(1.05);
}

.project-meta {
    color: var(--accent-glow);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}
.project-info h3 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}
.project-info p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 25px;
    max-width: 400px;
}
.project-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding-bottom: 4px;
}
.arrow-mini {
    width: 16px;
    height: 16px;
}


/* Footer */
footer {
    padding: 100px 0 50px;
    text-align: center;
}
footer h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 40px;
}
.contact-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}
.footer-btn {
    padding: 15px 30px;
    background: white;
    color: black;
    border-radius: 100px;
    font-weight: 600;
    transition: transform 0.2s;
}
.footer-btn.outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
}
.footer-btn:hover {
    transform: scale(1.05);
}
.copyright {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* Project Detail Trigger */
.project-detail-trigger {
    cursor: pointer;
}

.project-item {
    cursor: pointer;
}

/* ===== Project Detail Modal — Framer Aesthetic ===== */
.project-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.project-modal.active {
    pointer-events: all;
    opacity: 1;
    visibility: visible;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(40px) saturate(1.8);
    -webkit-backdrop-filter: blur(40px) saturate(1.8);
}

.modal-container {
    position: relative;
    width: 92%;
    max-width: 780px;
    max-height: 88vh;
    background: rgba(14, 14, 18, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    overflow: hidden;
    transform: translateY(30px) scale(0.97);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.04),
        0 24px 80px rgba(0, 0, 0, 0.55),
        0 0 100px rgba(99, 102, 241, 0.04);
}
.project-modal.active .modal-container {
    transform: translateY(0) scale(1);
}

/* Close Button — Framer minimal X */
.modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 10;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: none;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.modal-close svg {
    width: 16px;
    height: 16px;
}
.modal-close:hover {
    background: rgba(255, 255, 255, 0.12);
    color: white;
}

/* Scrollable Content */
.modal-scroll {
    overflow-y: scroll;
    max-height: 88vh;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
}
.modal-scroll::-webkit-scrollbar {
    display: none;
}

/* Modal Hero — Framer large media card */
.modal-hero {
    position: relative;
    width: calc(100% - 24px);
    margin: 12px auto 0;
    height: 280px;
    border-radius: 14px;
    overflow: hidden;
    flex-shrink: 0;
}
.modal-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s ease;
}
.project-modal.active .modal-hero img {
    transform: scale(1.04);
}
.modal-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(14, 14, 18, 0.9) 0%,
        rgba(14, 14, 18, 0.2) 40%,
        transparent 100%
    );
}

/* Modal Content — Framer generous spacing */
.modal-content {
    padding: 28px 32px 36px;
    position: relative;
}

.modal-header {
    margin-bottom: 32px;
}

/* Category pill — Framer badge */
.modal-category {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent-glow);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 14px;
    background: rgba(99, 102, 241, 0.08);
    padding: 5px 12px;
    border-radius: 6px;
}

.modal-title {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.035em;
    margin-bottom: 14px;
    line-height: 1.15;
    color: #fff;
}

.modal-subtitle {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    line-height: 1.75;
    max-width: 620px;
    font-weight: 400;
}

/* Divider between sections — Framer clean lines */
.modal-section {
    margin-bottom: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.modal-section:first-of-type {
    border-top: none;
    padding-top: 0;
}

.modal-section-title {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 14px;
    font-weight: 600;
}

/* Tech Tags — Framer chip style */
.modal-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.modal-tags .tag {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    padding: 7px 14px;
    border-radius: 8px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 500;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}
.modal-tags .tag:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.3);
    color: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
}

/* Features — Framer card-list style */
.modal-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.modal-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.88rem;
    line-height: 1.5;
    padding: 10px 14px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.2s ease;
}
.modal-features li:hover {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.8);
}
.modal-features li::before {
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent-glow);
    flex-shrink: 0;
    box-shadow: 0 0 6px rgba(99, 102, 241, 0.4);
}

/* Gallery Grid — Framer media grid */
.modal-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.modal-gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    aspect-ratio: 16 / 10;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.modal-gallery-item:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}
.modal-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.modal-gallery-item:hover img {
    transform: scale(1.05);
}

/* Modal Actions — Framer button row */
.modal-actions {
    display: flex;
    gap: 10px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 4px;
}
.modal-actions a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    letter-spacing: -0.01em;
}
.modal-actions a.primary-action {
    background: white;
    color: #0c0c10;
}
.modal-actions a.primary-action:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.12);
}
.modal-actions a.secondary-action {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
}
.modal-actions a.secondary-action:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
}
.modal-actions a svg {
    width: 14px;
    height: 14px;
    opacity: 0.6;
}

/* Body scroll lock */
body.modal-open {
    overflow: hidden;
}

/* Modal Mobile Responsive */
@media (max-width: 768px) {
    .modal-container {
        width: 100%;
        max-width: 100%;
        max-height: 100%;
        border-radius: 0;
    }
    .modal-hero {
        width: 100%;
        margin: 0;
        height: 200px;
        border-radius: 0;
    }
    .modal-content {
        padding: 20px 20px 28px;
    }
    .modal-title {
        font-size: 1.6rem;
    }
    .modal-features {
        grid-template-columns: 1fr;
    }
    .modal-gallery {
        grid-template-columns: 1fr 1fr;
    }
    .modal-actions {
        flex-direction: column;
    }
    .modal-actions a {
        justify-content: center;
    }
}

/* Scrollbar Hide */
::-webkit-scrollbar {
    width: 0px;
}

/* Tablet / Mobile */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .span-4, .span-2 { grid-column: span 2; }
                                                                /* Hero Adjustments for Tablet */
                                                                .hero-title {
                                                                    font-size: 5rem;
                                                                }
}

@media (max-width: 768px) {
    /* Global Mobile Fixes - The "Nuclear Option" for horizontal scroll */
        html,
        body {
            overflow-x: hidden;
            width: 100%;
            max-width: 100%;
            position: relative;
        }
    
        .container {
            padding: 0 16px;
            width: 100%;
            max-width: 100%;
            overflow: hidden;
            /* Ensure no child blows out container */
        }
    /* Hero Mobile */
    .hero {
        padding-top: 130px;
        align-items: flex-start;
        min-height: auto;
        padding-bottom: 60px;
    }
    
    .hero-content {
        gap: 15px;
        width: 100%;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 10vw, 3rem);
        /* Fluid sizing */
        line-height: 1.1;
        word-break: break-word;
        /* Prevent long words causing overflow */
    }
    
    .hero-subtitle {
        font-size: 1.05rem;
        max-width: 100%;
    }
    
        /* Nav Mobile */
        .glass-nav {
            width: 90%;
            top: 20px;
            backdrop-filter: blur(20px);
            background: rgba(10, 10, 12, 0.85);
            border-radius: 16px;
            padding: 12px 20px;
        }
    
        .nav-links a {
            display: none;
        }
    
        /* Hide regular links if too crowded, or keep them? */
        .nav-links {
            gap: 15px;
        }
    
        .nav-links a:last-child {
            display: block;
        }
    
        /* Always show CTA */
        /* Let's keep links but make them smaller */
        .nav-links a {
            display: block;
            font-size: 0.85rem;
        }
    
        /* Bento Grid Mobile */
        .bento-grid {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
    
        .bento-card {
            padding: 25px;
            min-height: auto;
            width: 100%;
                /* Force full width */
                max-width: 100%;
                /* Prevent overflow */
        }
    
        /* Profile Card Mobile */
        .profile-card {
            padding: 30px 20px;
            text-align: center;
            align-items: center;
        }
    
        .profile-info {
            align-items: center;
        }
    
        .profile-info h3 {
            font-size: 1.6rem;
        }
    
        .role-title {
            font-size: 1rem;
            margin-top: -5px;
        }
    
        .bio-text {
            font-size: 1rem;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.85);
            max-width: 100%;
        }
    
        .stats-grid {
            gap: 40px;
            justify-content: center;
        }
    
        .profile-avatar {
            width: 110px;
            height: 110px;
            order: -1;
            margin-bottom: 20px;
            align-self: center;
        }
    
        /* Stack Card Mobile */
        .stack-card {
            text-align: center;
        }
    
        .stack-card .card-header h3 {
            font-size: 1.4rem;
            justify-content: center;
        }
    
        .tags-wrapper {
            gap: 10px;
            justify-content: center;
        }
    
                .tag {
                    font-size: 0.95rem;
                    /* Larger font */
                    padding: 10px 18px;
                    /* Larger touch target */
                    background: rgba(255, 255, 255, 0.06);
                    /* Slightly more visible */
                }
        
                /* Projects Mobile */
    .project-item {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 80px;
    }
    .project-item.reverse { direction: ltr; }
                                                                .project-image-wrapper {
                                                                    height: 260px;
                                                                }
                                                                .project-info h3 {
                                                                    font-size: 2rem;
                                                                }
                                
                                                                /* Touch Feedback */
                                                                .btn-primary:active,
                                                                .footer-btn:active,
                                                                .tag:active {
                                                                    transform: scale(0.96);
                                                                    opacity: 0.8;
                                                                }
}