:root {
    --red: #C41E3A;
    --black: #000;
    --grey: #CCCCCC;
    --off-white: #F5F0E8;
    --dark-red: #8B0000;
    --gold: #C9A84C;
    --graphite: #1E1E1E;
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Share Tech Mono', monospace;
}

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

body {
    background: var(--graphite);
    color: var(--off-white);
    font-family: var(--font-body);
}

h1, h2, h3, h4, h5,
.logo h2,
.ag-timeline-card_title,
.footer-logo,
nav a,
.drawer a,
.drawer-logo,
.card-title,
.special-color {
    font-family: var(--font-heading);
}

/* Navigation Bar */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    width: 100%;
    box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    background: var(--graphite);
    border-bottom: 1px solid #333;
    border-left: 4px solid var(--red);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

header.nav-hidden {
    opacity: 0;
    transform: translateY(-100%);
    pointer-events: none;
}

/* Hamburger menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
}

.bar {
    width: 30px;
    height: 3px;
    background-color: var(--off-white);
    margin: 4px 0;
    border-radius: 2px;
}

.logo {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.logo h2 {
    color: var(--gold);
    text-decoration: none;
}

.logo img {
    height: auto;
    margin-right: 10px;
}

.logo a {
    color: var(--gold);
    text-decoration: none;
}

nav ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    margin-left: auto;
}

nav li {
    display: inline;
    margin-right: 10px;
}

nav a {
    color: var(--off-white);
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    display: inline-block;
}

nav a:hover {
    color: var(--gold);
    background-color: rgba(196, 30, 58, 0.15);
    border-radius: 8px;
}

nav a.active {
    color: var(--gold);
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 20px;
        background-color: var(--dark-red);
        border-radius: 10px;
        z-index: 2;
    }

    nav ul.active {
        display: flex;
    }

    nav li {
        margin: 0;
    }

    nav a {
        display: block;
        padding: 10px 20px;
    }
}

/* Matrix Section */
#home {
    position: relative;
}

#home::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to bottom, transparent, var(--graphite));
    pointer-events: none;
}

canvas {
    display: block;
    height: 100vh;
    width: 100%;
}

.textOverlap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--off-white);
    width: 90%;
    max-width: 700px;
}

.hero-title {
    text-align: center;
    margin-bottom: 16px;
}

.hero-intro {
    display: inline-block;
    text-align: left;
}

.textOverlap p {
    font-size: 21px;
}

.textOverlap p, h2 {
    text-align: left;
}

.textOverlap h1 {
    margin-bottom: 10px;
    font-size: clamp(22px, 4vw, 32px);
}

.textOverlap h2 {
    font-size: clamp(18px, 3vw, 26px);
}

.home {
    padding-bottom: 25px;
}

.home h1 {
    color: var(--off-white);
}

.special-color {
    color: var(--red);
}

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

.arrow-container {
    animation: hoverArrow 2s ease infinite;
    position: relative;
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.arrow {
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-top: 40px solid var(--gold);
    margin-top: 0.5rem;
}

@keyframes hoverArrow {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(20px); }
}

/* About Me Section */
.about-section {
    display: flex;
    align-items: flex-start;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    margin-top: 5vh;
    justify-content: space-around;
    gap: 30px;
}

.avatar-img {
    border-radius: 15px;
    width: 30%;
    min-width: 200px;
    flex-shrink: 0;
}

.avatar-img img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 0 15px var(--gold);
}

.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 10px;
    min-width: 0;
}

.title-container {
    display: flex;
    align-items: center;
    padding: 10px 0;
}

.title {
    padding-bottom: 5px;
}

.title-icon {
    color: var(--gold);
    font-size: 24px;
    margin-right: 10px;
}

.content p {
    padding-bottom: 5px;
    line-height: 1.7;
}

.social-media {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 16px;
    padding: 20px 0;
}

.social-group {
    display: flex;
    align-items: center;
}

.social-group a {
    text-decoration: none;
    cursor: pointer;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 6px;
}

.social-group a:hover {
    text-decoration: underline;
    color: var(--gold);
}

.social-handler {
    color: var(--gold);
    font-size: 24px;
}

.tech-stack h2 {
    margin-bottom: 16px;
}

.stack-group {
    margin-bottom: 14px;
}

.stack-category {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.stack-labels {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    max-width: 600px;
    margin: 0 auto;
    padding: 10px;
    margin-top: 5px;
}

.icons img {
    width: 65px;
    height: 65px;
}

.icon {
    width: calc(20% - 10px);
    max-width: 85px;
    margin-bottom: 10px;
}

.hidden {
    display: none;
}

.active {
    color: var(--gold);
    box-shadow: 0 0 10px 5px var(--dark-red);
    border-radius: 15px;
    padding: 3px 7px;
}

i {
    font-size: 65px;
    padding: 5px;
}

@media (max-width: 768px) {
    .about-section {
        flex-direction: column;
        align-items: center;
    }

    .avatar-img {
        width: 70%;
        min-width: unset;
    }

    .content {
        width: 100%;
    }

    .icon {
        width: calc(25% - 10px);
    }
}

@media (max-width: 480px) {
    .avatar-img {
        width: 90%;
    }
}

/* Mobile Drawer */
.drawer {
    display: none;
    position: fixed;
    top: 0;
    left: -280px;
    width: 260px;
    height: 100%;
    background: var(--graphite);
    border-right: 2px solid var(--red);
    z-index: 200;
    transition: left 0.35s cubic-bezier(.4,0,.2,1);
    flex-direction: column;
    padding-top: 0;
}

.drawer-logo {
    padding: 20px 24px 16px;
    font-family: Georgia, serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--gold);
    border-bottom: 1px solid var(--red);
    margin-bottom: 8px;
}

.drawer a {
    display: block;
    padding: 16px 24px;
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--off-white);
    text-decoration: none;
    border-bottom: 0.5px solid #333;
    transition: color 0.2s, background 0.2s;
}

.drawer a:hover {
    color: var(--gold);
    background: rgba(196, 30, 58, 0.1);
}

.drawer a:first-of-type {
    color: var(--gold);
    border-left: 2px solid var(--gold);
}

.drawer.drawer-open {
    left: 0;
}

.drawer-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 199;
}

.drawer-overlay.drawer-overlay-show {
    display: block;
}

.menu-toggle.is-open .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.is-open .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-open .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
    .drawer {
        display: flex;
    }
}

/* Resume button */
.resume-btn-wrap {
    margin: 20px 0;
}

.resume-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    border-radius: 99px;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1px;
    transition: background 0.2s, color 0.2s;
}

.resume-btn:hover {
    background: var(--gold);
    color: var(--black);
}

/* Salesforce labels */
.sf-label {
    display: inline-block;
    background: var(--graphite);
    border: 1px solid var(--red);
    color: var(--off-white);
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 99px;
    margin: 4px;
}

/* Certifications */
.certifications {
    margin-top: 20px;
}

.certifications h2 {
    margin-bottom: 12px;
}

.cert-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 12px;
    align-items: center;
}

.cert-img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    transition: transform 0.2s ease;
}

.cert-img:hover {
    transform: scale(1.1);
}

/* Sidebar */
.sidebar {
    display: none;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(180deg, var(--red) 0%, var(--dark-red) 100%);
    border: 1px solid var(--gold);
    border-radius: 30px;
    overflow: hidden;
    padding: 8px 0;
    position: fixed;
    right: 15px;
    top: 50%;
    width: 50px;
    transform: translateY(-50%) translateX(80px);
    transition: transform 0.4s ease, opacity 0.4s ease;
    opacity: 0;
    pointer-events: none;
    z-index: 99;
    box-shadow:
        0 -6px 16px rgba(201, 168, 76, 0.5),
        -6px 0 16px rgba(201, 168, 76, 0.5),
        0 6px 16px rgba(201, 168, 76, 0.5);
}

@media (min-width: 768px) {
    .sidebar {
        display: flex;
    }
}

.sidebar.sidebar-visible {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
    pointer-events: all;
}

.sidebar a {
    text-decoration: none;
    font-size: 20px;
    color: var(--off-white);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    padding: 8px 10px;
}

.sidebar a:hover {
    color: var(--gold);
}

/* Journey Section */
@font-face {
    font-family: 'ESL Legend';
    src: url(https://raw.githubusercontent.com/SochavaAG/example-mycode/master/pens/timeline/fonts/legend/ESLLegend-Light.eot);
    src: url(https://raw.githubusercontent.com/SochavaAG/example-mycode/master/pens/timeline/fonts/legend/ESLLegend-Light.eot#iefix) format("embedded-opentype"),
        url(https://raw.githubusercontent.com/SochavaAG/example-mycode/master/pens/timeline/fonts/legend/ESLLegend-Light.woff2) format("woff2"),
        url(https://raw.githubusercontent.com/SochavaAG/example-mycode/master/pens/timeline/fonts/legend/ESLLegend-Light.woff) format("woff"),
        url(https://raw.githubusercontent.com/SochavaAG/example-mycode/master/pens/timeline/fonts/legend/ESLLegend-Light.ttf) format("truetype"),
        url(https://raw.githubusercontent.com/SochavaAG/example-mycode/master/pens/timeline/fonts/legend/ESLLegend-Light.svg#eicon) format("svg");
    font-style: normal;
    font-weight: 300;
}

@font-face {
    font-family: 'ESL Legend';
    src: url(https://raw.githubusercontent.com/SochavaAG/example-mycode/master/pens/timeline/fonts/legend/ESLLegend-Regular.eot);
    src: url(https://raw.githubusercontent.com/SochavaAG/example-mycode/master/pens/timeline/fonts/legend/ESLLegend-Regular.eot#iefix) format("embedded-opentype"),
        url(https://raw.githubusercontent.com/SochavaAG/example-mycode/master/pens/timeline/fonts/legend/ESLLegend-Regular.woff2) format("woff2"),
        url(https://raw.githubusercontent.com/SochavaAG/example-mycode/master/pens/timeline/fonts/legend/ESLLegend-Regular.woff) format("woff"),
        url(https://raw.githubusercontent.com/SochavaAG/example-mycode/master/pens/timeline/fonts/legend/ESLLegend-Regular.ttf) format("truetype"),
        url(https://raw.githubusercontent.com/SochavaAG/example-mycode/master/pens/timeline/fonts/legend/ESLLegend-Regular.svg#eicon) format("svg");
    font-style: normal;
    font-weight: normal;
}

@font-face {
    font-family: 'ESL Legend';
    src: url(https://raw.githubusercontent.com/SochavaAG/example-mycode/master/pens/timeline/fonts/legend/ESLLegend-Bold.eot);
    src: url(https://raw.githubusercontent.com/SochavaAG/example-mycode/master/pens/timeline/fonts/legend/ESLLegend-Bold.eot#iefix) format("embedded-opentype"),
        url(https://raw.githubusercontent.com/SochavaAG/example-mycode/master/pens/timeline/fonts/legend/ESLLegend-Bold.woff2) format("woff2"),
        url(https://raw.githubusercontent.com/SochavaAG/example-mycode/master/pens/timeline/fonts/legend/ESLLegend-Bold.woff) format("woff"),
        url(https://raw.githubusercontent.com/SochavaAG/example-mycode/master/pens/timeline/fonts/legend/ESLLegend-Bold.ttf) format("truetype"),
        url(https://raw.githubusercontent.com/SochavaAG/example-mycode/master/pens/timeline/fonts/legend/ESLLegend-Bold.svg#eicon) format("svg");
    font-style: normal;
    font-weight: bold;
}

img {
    max-width: 100%;
}

.ag-format-container {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.journey-section {
    padding: 60px 0;
    margin-top: 2vh;
}

.ag-timeline_title-box {
    padding: 0 0 30px;
    text-align: center;
}

.footstep-icon {
    font-size: 36px;
}

.ag-timeline_item {
    margin: 0 0 50px;
    position: relative;
}

.ag-timeline_item:nth-child(2n) {
    text-align: right;
}

.ag-timeline {
    display: inline-block;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
}

.ag-timeline_line {
    width: 2px;
    background-color: var(--grey);
    position: absolute;
    top: 2px;
    left: 50%;
    bottom: 0;
    overflow: hidden;
    transform: translateX(-50%);
}

.ag-timeline_line-progress {
    width: 100%;
    height: 0;
    background-color: var(--gold);
    transition: height 0.1s linear;
}

.ag-timeline-card_box {
    padding: 0 0 20px 50%;
}

.ag-timeline_item:nth-child(2n) .ag-timeline-card_box {
    padding: 0 50% 20px 0;
}

.ag-timeline-card_point-box {
    display: inline-block;
    margin: 0 14px 0 -28px;
}

.ag-timeline_item:nth-child(2n) .ag-timeline-card_point-box {
    margin: 0 -28px 0 14px;
}

.ag-timeline-card_point {
    height: 54px;
    width: 54px;
    border: 3px solid var(--gold);
    background-color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Share Tech Mono', monospace;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--off-white);
    border-radius: 50%;
}

.js-ag-active .ag-timeline-card_point {
    color: var(--dark-red);
    background-color: var(--gold);
}

.ag-timeline-card_meta-box {
    display: inline-block;
}

.ag-timeline-card_meta {
    margin: 10px 0 0;
    font-family: 'ESL Legend', sans-serif;
    font-weight: bold;
    font-size: 28px;
    color: var(--off-white);
}

.ag-timeline-card_item {
    display: inline-block;
    width: 35%;
    margin: 0 100px 0 100px;
    background-color: var(--graphite);
    border: 1px solid var(--gold);
    opacity: 0;
    border-radius: 6px;
    box-shadow: 0 0 0 0 rgba(0,0,0,.5);
    transition: transform .5s, opacity .5s;
    position: relative;
}

.js-ag-active.ag-timeline_item:nth-child(2n+1) .ag-timeline-card_item,
.js-ag-active.ag-timeline_item:nth-child(2n) .ag-timeline-card_item {
    opacity: 1;
    transform: translateX(0);
}

.ag-timeline-card_arrow {
    height: 18px;
    width: 18px;
    margin-top: 20px;
    background-color: var(--gold);
    z-index: -1;
    position: absolute;
    top: 0;
    right: 0;
    transform: rotate(45deg);
}

.ag-timeline_item:nth-child(2n+1) .ag-timeline-card_arrow {
    margin-left: calc(-18px / 2);
    margin-right: calc(-18px / 2);
}

.ag-timeline_item:nth-child(2n) .ag-timeline-card_arrow {
    margin-left: -10px;
    right: auto;
    left: 0;
}

.ag-timeline-card_info {
    padding: 20px 30px;
}

.ag-timeline-card_title {
    display: block;
    margin: 10px 0 0;
    padding-bottom: 8px;
    font-family: 'ESL Legend', sans-serif;
    font-weight: bold;
    font-size: 24px;
    color: var(--gold);
}

.ag-timeline-card_desc {
    line-height: 1.45;
    font-size: 15px;
    color: var(--off-white);
}

@media only screen and (max-width: 979px) {
    .ag-timeline_line {
        left: 30px;
    }

    .ag-timeline_item:nth-child(2n) {
        text-align: left;
    }

    .ag-timeline-card_box,
    .ag-timeline_item:nth-child(2n) .ag-timeline-card_box {
        padding: 0 0 20px;
    }

    .ag-timeline-card_meta-box {
        display: none;
    }

    .ag-timeline-card_point-box,
    .ag-timeline_item:nth-child(2n) .ag-timeline-card_point-box {
        margin: 0 0 0 8px;
    }

    .ag-timeline-card_point {
        height: 40px;
        line-height: 40px;
        width: 40px;
        font-size: 13px;
    }

    .ag-timeline-card_item {
        width: calc(100% - 170px);
        margin: 10px 0 0 70px;
    }

    .ag-timeline_item:nth-child(2n+1) .ag-timeline-card_arrow {
        right: auto;
        left: 0;
    }

    .ag-timeline-card_arrow {
        margin-top: 12px;
    }
}

@media only screen and (max-width: 767px) {
    .ag-format-container {
        width: 100%;
        padding: 0 12px;
    }

    .ag-timeline-card_item {
        width: calc(100% - 60px);
        margin: 10px 0 0 55px;
    }
}

@media only screen and (max-width: 639px) {
    .ag-timeline-card_info {
        padding: 10px 15px;
    }

    .ag-timeline-card_title {
        font-size: 18px;
    }

    .ag-timeline-card_desc {
        font-size: 13px;
    }
}

/* Project Section */
.project-section {
    box-sizing: border-box;
    padding: 30px 20px;
    width: 95%;
    max-width: 1200px;
    margin: 0 auto;
}

.project-title {
    margin-bottom: 2vh;
}

.carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 1.5vh .5vh;
}

.carousel {
    display: flex;
    gap: 15px;
    transform: translateX(0);
    transition: transform 0.3s ease;
}

.card {
    flex: 0 0 auto;
    color: var(--off-white);
    width: clamp(240px, 30%, 320px);
    background-color: var(--graphite);
    border: 1px solid var(--gold);
    border-radius: 0.375rem;
}

@media (max-width: 768px) {
    .card {
        width: 85vw;
        max-width: 340px;
    }

    .carousel {
        gap: 16px;
    }
}

.card a {
    text-decoration: none;
}

.card img {
    border-top-left-radius: 0.3rem;
    border-top-right-radius: 0.3rem;
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.card-content {
    padding: 1.25rem;
}

.card-title {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--gold);
}

.card-description {
    margin-bottom: 0.75rem;
    font-weight: 400;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--off-white);
}

.card-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-align: center;
    color: var(--off-white);
    background-color: var(--red);
    border-radius: 0.375rem;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s, box-shadow 0.2s;
}

.card-btn:hover {
    background-color: var(--dark-red);
    box-shadow: 0 2px 4px 0 var(--black);
}

.svg-icon {
    width: 1rem;
    height: 1rem;
    margin-left: 0.5rem;
}

.prevBtn::before {
    content: '\2190';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.nextBtn::before {
    content: '\2192';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.prevBtn,
.nextBtn {
    background-color: var(--gold);
    color: var(--black);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    font-size: 20px;
    transform: translateY(-50%);
}

.prevBtn {
    left: 3px;
}

.nextBtn {
    right: 3px;
}

/* Blogs Section */
.article-section {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 30px 20px 60px;
    margin-top: 5vh;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.article-section .title-container {
    width: 100%;
}

.article {
    background-color: var(--graphite);
    border: 1px solid var(--gold);
    border-radius: 12px;
    font-size: 16px;
    width: clamp(240px, 45%, 420px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s;
}

.article:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(201, 168, 76, 0.2);
}

.article a {
    text-decoration: none;
    color: var(--off-white);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.article img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

.article span {
    padding: 12px 14px 16px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--off-white);
}

.article a:hover span {
    color: var(--gold);
}

@media (max-width: 600px) {
    .article {
        width: 100%;
    }

    .article-section {
        padding: 20px 16px 40px;
    }
}

/* Footer */
.site-footer {
    background: var(--graphite);
    border-top: 1px solid var(--gold);
    padding: 40px 20px;
    text-align: center;
}

.footer-inner {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.footer-logo {
    font-family: Georgia, serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1px;
}

.footer-sub {
    font-size: 13px;
    color: var(--grey);
    letter-spacing: 0.5px;
}

.footer-links {
    display: flex;
    gap: 20px;
    margin: 8px 0;
}

.footer-links a {
    color: var(--off-white);
    font-size: 22px;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-copy {
    font-size: 11px;
    color: #555;
    margin-top: 4px;
}

/* ── Custom Cursor ────────────────────────────────────────── */
body,
a, button, [role="button"],
.card-btn, .resume-btn,
.prevBtn, .nextBtn,
.menu-toggle, .cert-img,
.social-group, label {
    cursor: none !important;
}

.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px var(--gold), 0 0 22px rgba(201, 168, 76, 0.35);
    transition: width 0.15s ease, height 0.15s ease,
                background 0.15s ease, box-shadow 0.15s ease;
}

.cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    width: 32px;
    height: 32px;
    border: 1.5px solid rgba(201, 168, 76, 0.55);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s ease, height 0.2s ease,
                border-color 0.2s ease, opacity 0.3s ease;
}

/* Hover over interactive elements → switch to red */
.cursor-dot.hovering {
    width: 12px;
    height: 12px;
    background: var(--red);
    box-shadow: 0 0 12px var(--red), 0 0 26px rgba(196, 30, 58, 0.45);
}

.cursor-ring.hovering {
    width: 46px;
    height: 46px;
    border-color: rgba(196, 30, 58, 0.5);
}

/* Click feedback */
.cursor-dot.clicking {
    width: 5px;
    height: 5px;
}

.cursor-ring.clicking {
    width: 18px;
    height: 18px;
    border-color: var(--gold);
    opacity: 0.9;
}

/* Hide custom cursor on touch devices */
@media (hover: none) {
    .cursor-dot,
    .cursor-ring {
        display: none;
    }

    body,
    a, button, [role="button"],
    .card-btn, .resume-btn,
    .prevBtn, .nextBtn,
    .menu-toggle, .cert-img,
    .social-group, label {
        cursor: auto !important;
    }
}
