/* --- Responsive Breakpoints --- */

/* Minimum touch target size */
:root {
    --touch-min: 44px;
}

/* --- Variables & Reset --- */
:root {
    --bg-color: #0e0e0e;
    --text-primary: #dac5a7;
    --text-dim: rgba(218, 197, 167, 0.6);
    --border-color: rgba(218, 197, 167, 0.15);

    /* Exact Fonts from Original */
    --font-serif: 'Gambetta', serif;
    --font-display: 'Chillax', sans-serif;
    --font-sans: 'Inter', sans-serif;
    /* Red Accent from Demo */
    --accent-color: #ff3366;
    --accent-pink: #ff4d88;
    /* Extra styles */
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

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

img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* --- Responsive Base Styles --- */
@media (max-width: 768px) {
    :root {
        font-size: 14px; /* Slightly smaller base font for mobile */
    }
    
    /* Improve touch targets */
    a, button, .nav-link, .work-card, .service-card {
        min-height: var(--touch-min);
        min-width: var(--touch-min);
    }
    
    /* Adjust navigation for mobile */
    .site-nav ul {
        gap: 8px;
    }
    
    /* Ensure buttons are large enough to tap */
    .btn {
        padding: 12px 24px;
        min-width: 120px;
        text-align: center;
    }
    
    /* Improve form elements */
    input, textarea, select, button {
        font-size: 16px; /* Prevents iOS zoom on focus */
    }

    /* Fix Header for Mobile */
    .site-header {
        padding-top: 20px;
    }

    .navbar {
        padding: 8px 16px;
        width: 90%;
    }

    .nav-list {
        gap: 20px;
        justify-content: center;
        width: 100%;
    }

    .nav-list a {
        font-size: 0.7rem;
        letter-spacing: 1px;
    }

    /* Hero Responsive Fixes */
    .hero-section {
        padding-top: 100px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-layout {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .hero-image-wrapper {
        flex: 0 0 auto;
        width: 250px;
        margin: 0 auto;
    }

    .hero-text-container {
        align-items: center;
    }

    .hero-text {
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .hero-title {
        text-align: center;
        font-size: clamp(2.5rem, 10vw, 3.5rem);
    }

    .hero-subtitle {
        text-align: center;
        max-width: 100%;
        font-size: 1rem;
    }

    .services-badge {
        justify-content: center;
    }

    /* Logo Track Fix */
    .hero-content .logo-track-container {
        margin-top: 2.5rem;
    }

    /* Tools Grid Fix */
    .tools-container {
        grid-template-columns: 1fr 1fr;
    }
}

/* --- Typography --- */
h1,
h2,
h3 {
    font-family: var(--font-serif);
    font-weight: 400;
}

.hero-title {
    /* Huge Font Size to match original 128px */
    font-size: clamp(3rem, 7vw, 6rem);
    font-style: italic;
    /* Gambetta Italic */
    line-height: 1.1;
    text-align: left;
    margin-bottom: 1rem;
    font-weight: 400;
}

.hero-subtitle {
    font-family: var(--font-display);
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    /* ~20px */
    text-align: left;
    color: var(--text-primary);
    max-width: 500px;
    margin: 0;
    font-weight: 300;
}

/* --- Header --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding-top: 32px;
    display: flex;
    justify-content: center;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar {
    background: rgba(218, 197, 167, 0.05);
    /* Exact token color */
    backdrop-filter: blur(41px);
    /* Exact blur */
    border: 1px solid rgba(52, 51, 48, 1);
    padding: 12px 32px;
    border-radius: 50px;
}

.nav-list {
    display: flex;
    gap: 48px;
    list-style: none;
}

.nav-list a {
    font-family: var(--font-display);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    transition: color 0.3s;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: var(--text-primary);
    transition: width 0.3s;
}

.nav-list a:hover::after {
    width: 100%;
}

/* --- Animations --- */
/* Base class for animated elements */
.hero-image-wrapper,
.hero-text,
.services-badge,
.about-card,
.work-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
    /* Framer-like Spring */
}

.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays for Hero */
.hero-image-wrapper {
    transition-delay: 0.1s;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.services-badge {
    transition-delay: 0.5s;
}

/* --- Hero Section --- */
@media (max-width: 768px) {
    .hero {
        padding: 4rem 1.5rem;
        text-align: center;
    }
    
    .hero-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .hero-text {
        width: 100%;
    }
    
    .hero-image-wrapper {
        width: 80%;
        margin: 0 auto;
    }
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 140px;
    width: 100%;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.hero-layout {
    display: flex;
    align-items: center;
    gap: 4rem;
    width: 100%;
}

.hero-image-wrapper {
    flex: 0 0 400px;
    max-width: 400px;
}

.hero-text-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-image-wrapper img {
    border-radius: 50%;
    object-fit: cover;
    width: 100%;
    height: auto;
    filter: saturate(0.2) brightness(1.1);
    transition: filter 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-image-wrapper img:hover {
    filter: saturate(1) brightness(1);
}

.hero-text {
    margin-bottom: 2rem;
    text-align: left;
}

.hero-title {
    /* Huge Font Size to match original 128px */
    font-size: clamp(3rem, 7vw, 6rem);
    font-style: italic;
    /* Gambetta Italic */
    line-height: 1.1;
    text-align: left;
    margin-bottom: 1rem;
    font-weight: 400;
}

.hero-subtitle {
    font-family: var(--font-display);
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    /* ~20px */
    text-align: left;
    color: var(--text-primary);
    max-width: 500px;
    margin: 0;
    font-weight: 300;
}

/* Services Badge */
.services-badge {
    position: relative;
    display: flex;
    justify-content: flex-start;
}

.badge-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(218, 197, 167, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    backdrop-filter: blur(15px);
    transition: transform 0.2s;
}

.badge-link:hover {
    transform: translateY(-2px);
}

.badge-text {
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.badge-arrow {
    font-size: 0.95rem;
    line-height: 1;
    transform: translateY(-1px);
}

/* --- Responsive Design (Consolidated) --- */
@media (max-width: 768px) {
    /* Responsive Base Styles */
    :root {
        font-size: 14px;
    }
    
    a, button, .nav-link, .work-card, .service-card {
        min-height: var(--touch-min);
        min-width: var(--touch-min);
    }
    
    input, textarea, select, button {
        font-size: 16px;
    }

    /* Header & Navigation */
    .site-header {
        padding-top: 20px;
    }

    .navbar {
        padding: 8px 16px;
        width: 90%;
        max-width: 400px;
    }

    .nav-list {
        gap: 20px;
        justify-content: center;
    }

    .nav-list a {
        font-size: 0.7rem;
        letter-spacing: 1px;
    }

    /* Hero Section */
    .hero-section {
        padding-top: 100px;
        padding-left: 20px;
        padding-right: 20px;
        min-height: auto;
        padding-bottom: 40px;
    }

    .hero-layout {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .hero-image-wrapper {
        flex: 0 0 auto;
        width: 200px;
        max-width: 200px;
        margin: 0 auto;
    }

    .hero-text-container {
        align-items: center;
    }

    .hero-text {
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .hero-title {
        text-align: center;
        font-size: clamp(2.5rem, 10vw, 3.5rem);
    }

    .hero-subtitle {
        text-align: center;
        max-width: 100%;
        font-size: 1rem;
        padding: 0 10px;
    }

    .services-badge {
        justify-content: center;
    }

    /* Logos (Marquee) */
    .hero-content .logo-track-container {
        margin-top: 2.5rem;
        padding: 1rem 0;
    }

    /* Tools Grid */
    .tools-container {
        grid-template-columns: 1fr 1fr !important;
        gap: 15px !important;
    }

    .tool-category {
        grid-column: span 1 !important;
    }
}

/* Remove old conflicting media queries */


/* --- Logos Section (Marquee) --- */
.hero-content .logo-track-container {
    margin-top: 4rem;
    padding: 2rem 0;
    overflow: hidden;
    width: 100%;
    position: relative;
}

/* Base marquee animation */
.logo-track {
    display: flex;
    width: max-content;
    animation: marquee 20s linear infinite;
    animation-play-state: paused;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.logo-track.is-ready {
    animation-play-state: running;
}

.logo-set {
    display: flex;
    gap: 40px;
    padding: 0 20px;
    flex-shrink: 0;
}

@keyframes marquee {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(calc(-1 * var(--logo-set-width)), 0, 0);
    }
}

/* Ensure no overlap on small screens */
@media (max-width: 480px) {
    .logo-set {
        gap: 20px;
        padding: 0 12px;
    }

    .logo-track {
        animation-duration: 15s;
    }
    
    .client-logo {
        height: 30px;
    }
}

.client-logo {
    height: 40px;
    width: auto;
    flex-shrink: 0;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.3s;
    transform: translateZ(0);
}

.client-logo.text-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
    white-space: nowrap;
    padding: 0 20px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.client-logo.text-logo:hover {
    opacity: 1;
}

/* Specific styling for DaVinci Resolve logo */
.client-logo[alt="DaVinci Resolve"] {
    max-height: 40px;
    max-width: 100%;
    height: auto;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) brightness(2) contrast(0.8);
    opacity: 0.7;
    transition: opacity 0.3s;
}

.client-logo[alt="DaVinci Resolve"]:hover {
    opacity: 1;
}

.client-logo:hover {
    opacity: 1;
}

/* --- Tools & Technology Section --- */
.tools-section {
    padding: 120px 40px 60px;
}

.tools-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.tools-main-title {
    font-size: 3rem;
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 8px;
    position: relative;
}

.tools-main-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--accent-color);
}

.tools-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: min-content;
    gap: 20px;
}

.tool-category {
    padding: 16px;
    border-radius: 12px;
    background: rgba(218, 197, 167, 0.03);
    border: 1px solid rgba(218, 197, 167, 0.08);
    transition: all 0.3s ease;
}

/* Small categories - 1 column span */
.tool-category:nth-child(1), /* Game & Creative Tools */
.tool-category:nth-child(2), /* Creative / Media Tools */
.tool-category:nth-child(4), /* Databases */
.tool-category:nth-child(5), /* DevOps / Cloud & Hosting */
.tool-category:nth-child(6), /* IDEs & Scripting */
.tool-category:nth-child(8), /* Testing */
.tool-category:nth-child(9) { /* Utilities */
    grid-column: span 1;
}

/* Medium categories - 1.5 column span */
.tool-category:nth-child(3), /* Web & Backend */
.tool-category:nth-child(7) { /* OS / Platforms */
    grid-column: span 1.5;
}

.tool-category:hover {
    background: rgba(218, 197, 167, 0.06);
    border-color: rgba(218, 197, 167, 0.15);
    transform: translateY(-2px);
}

.category-title {
    font-size: 1.2rem;
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tool-list {
    list-style: none;
    font-family: var(--font-display);
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-primary);
}

.tool-list li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
    transition: color 0.2s ease;
}

.tool-list li:hover {
    color: var(--accent-color);
}

.tool-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 1rem;
    transition: transform 0.2s ease;
}

.tool-list li:hover::before {
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .tools-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .tools-main-title {
        font-size: 2.5rem;
    }
    
    .category-title {
        font-size: 1.1rem;
    }
}

/* --- Work Section --- */
@media (max-width: 768px) {
    .work-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .work-card {
        margin-bottom: 1rem;
    }
    
    .work-info {
        padding: 1rem;
    }
}

.work-section {
    padding: 6rem 0;
}

.work-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 96px;
}

.work-card {
    position: relative;
    overflow: hidden;
    width: 100%;
    cursor: pointer;
}

.work-image-wrapper {
    width: 96%;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    background: #1a1a1a;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.work-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.work-card:hover .work-image-wrapper {
    transform: scale(0.98);
}

.work-card:hover .work-img {
    transform: scale(1.05);
}

.work-info {
    width: 96%;
    margin: 0.3rem auto 0;
}

.work-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-style: italic;
    margin-bottom: 0;
}

.work-category {
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Redesigned About v2 --- */
.about-container {
    padding: 120px 40px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.about-v2-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

/* Portrait Column */
.portrait-col .portrait-wrapper {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    max-height: 600px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.main-portrait {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
}

.portrait-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.accent-name {
    font-size: 3.5rem;
    line-height: 0.9;
    color: var(--accent-color);
    margin-bottom: 20px;
    text-transform: uppercase;
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.location-info {
    font-size: 0.9rem;
    color: var(--text-primary);
    font-family: var(--font-display);
    font-weight: 300;
}

.location-info span {
    font-weight: 600;
}

/* Intro Column */
.section-title {
    font-size: 3rem;
    margin-bottom: 20px;
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
}

.subsection-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-primary);
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
}

.intro-text {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 1.5vw, 1.35rem);
    line-height: 1.6;
    color: var(--text-primary);
    max-width: 600px;
    font-weight: 300;
}

.intro-text .about-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 8px;
}

.intro-text .about-link:hover {
    color: #ff6699;
    transform: translateX(5px);
}

.intro-text.quote {
    font-style: italic;
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    border-top: 1px solid var(--border-color);
    color: var(--accent-color);
    font-size: 1.1rem;
    max-width: 100%;
    transition: all 0.3s ease;
    cursor: default;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.intro-text.quote:hover {
    animation: glitch 0.3s infinite;
}

.intro-text.quote::before,
.intro-text.quote::after {
    content: "A WINNER IS JUST A LOSER THAT TRIED ONE MORE TIME.";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.intro-text.quote:hover::before {
    animation: glitch-1 0.3s infinite;
    color: #00ffff;
    opacity: 0.8;
    z-index: -1;
}

.intro-text.quote:hover::after {
    animation: glitch-2 0.3s infinite;
    color: #ff00ff;
    opacity: 0.8;
    z-index: -2;
}

@keyframes glitch {
    0%, 100% {
        text-shadow: 
            0.05em 0 0 rgba(255, 0, 0, 0.75),
            -0.05em -0.025em 0 rgba(0, 255, 0, 0.75),
            0.025em 0.05em 0 rgba(0, 0, 255, 0.75);
    }
    14% {
        text-shadow: 
            0.05em 0 0 rgba(255, 0, 0, 0.75),
            -0.05em -0.025em 0 rgba(0, 255, 0, 0.75),
            0.025em 0.05em 0 rgba(0, 0, 255, 0.75);
    }
    15% {
        text-shadow: 
            -0.05em -0.025em 0 rgba(255, 0, 0, 0.75),
            0.025em 0.025em 0 rgba(0, 255, 0, 0.75),
            -0.05em -0.05em 0 rgba(0, 0, 255, 0.75);
    }
    49% {
        text-shadow: 
            -0.05em -0.025em 0 rgba(255, 0, 0, 0.75),
            0.025em 0.025em 0 rgba(0, 255, 0, 0.75),
            -0.05em -0.05em 0 rgba(0, 0, 255, 0.75);
    }
    50% {
        text-shadow: 
            0.025em 0.05em 0 rgba(255, 0, 0, 0.75),
            0.05em 0 0 rgba(0, 255, 0, 0.75),
            0 -0.05em 0 rgba(0, 0, 255, 0.75);
    }
    99% {
        text-shadow: 
            0.025em 0.05em 0 rgba(255, 0, 0, 0.75),
            0.05em 0 0 rgba(0, 255, 0, 0.75),
            0 -0.05em 0 rgba(0, 0, 255, 0.75);
    }
}

@keyframes glitch-1 {
    0%, 100% {
        clip: rect(132px, 350px, 101px, 30px);
        transform: translate(2px, -2px);
    }
    20% {
        clip: rect(25px, 350px, 80px, 30px);
        transform: translate(-2px, 2px);
    }
    40% {
        clip: rect(50px, 350px, 60px, 30px);
        transform: translate(2px, -2px);
    }
    60% {
        clip: rect(80px, 350px, 40px, 30px);
        transform: translate(-2px, 2px);
    }
    80% {
        clip: rect(100px, 350px, 20px, 30px);
        transform: translate(2px, -2px);
    }
}

@keyframes glitch-2 {
    0%, 100% {
        clip: rect(65px, 350px, 119px, 30px);
        transform: translate(-2px, 2px);
    }
    20% {
        clip: rect(40px, 350px, 90px, 30px);
        transform: translate(2px, -2px);
    }
    40% {
        clip: rect(20px, 350px, 70px, 30px);
        transform: translate(-2px, 2px);
    }
    60% {
        clip: rect(90px, 350px, 50px, 30px);
        transform: translate(2px, -2px);
    }
    80% {
        clip: rect(110px, 350px, 30px, 30px);
        transform: translate(-2px, 2px);
    }
}

.accent-text {
    color: var(--accent-color);
    font-weight: 600;
}

.role-desc {
    font-family: var(--font-display);
    font-weight: 400;
    margin-bottom: 15px;
    opacity: 0.9;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.mt-large {
    margin-top: 30px;
}

.styled-list {
    list-style: none;
}

.styled-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    align-items: flex-start;
}

.exp-skills-flex {
    display: flex;
    gap: 60px;
    margin-top: 50px;
}

.list-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text-dim);
    margin-top: 10px;
    flex-shrink: 0;
}

.list-content strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
}

.list-content span {
    font-family: var(--font-display);
    font-size: 0.8rem;
    color: var(--text-dim);
    font-weight: 300;
}

/* Creative Skills Section */
.best-at-section {
    flex: 1;
}

.creative-list {
    list-style: none;
    font-family: 'Gambetta', serif;
    font-style: italic;
    font-size: 1.4rem;
    line-height: 1.4;
    color: var(--text-dim);
}

/* Skills Column */
.skills-main-title {
    font-size: 2rem;
    margin-bottom: 40px;
}

.skill-category {
    margin-bottom: 30px;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.category-icon {
    font-size: 1.5rem;
}

.skill-tags {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skill-tags li {
    padding: 8px 16px;
    background: rgba(218, 197, 167, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: var(--text-dim);
    transition: all 0.3s ease;
    font-weight: 400;
}

.skill-tags li:hover {
    border-color: var(--accent-color);
    color: var(--text-primary);
}

/* Floating Contact Bar */
.floating-contact-bar {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(14, 14, 14, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    padding: 15px 40px;
    border-radius: 100px;
    z-index: 100;
}

.contact-links {
    display: flex;
    gap: 30px;
}

.contact-links a {
    font-size: 0.85rem;
    color: var(--text-dim);
    transition: color 0.3s;
}

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

/* Responsive Redesign */
@media (max-width: 1100px) {
    .about-v2-grid {
        grid-template-columns: 1fr 1fr;
    }

    .skills-col {
        grid-column: span 2;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .about-v2-grid {
        grid-template-columns: 1fr;
    }

    .skills-col {
        grid-column: span 1;
    }

    .exp-skills-flex {
        flex-direction: column;
    }

    .accent-name {
        font-size: 2.5rem;
    }
}

/* Active navigation state */
.nav-list a.active {
    color: var(--text-primary);
}

.nav-list a.active::after {
    width: 100%;
}

/* --- Footer --- */
.site-footer {
    padding: 2rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
    color: var(--text-dim);
}