html, body {
scroll-behavior: smooth;
font-family: "Geist", sans-serif;
@apply antialiased;
font-size: 24px;
font-weight: 400;
margin: 0;
padding: 0;
color: white;
}
a, button, input[type="submit"], input#submit {
cursor: pointer;
color: white;
text-decoration: underline;
text-transform: uppercase;
font-size: 20px;
position: relative;
}
a::before, button::before, input[type="submit"]::before, input#submit::before {
content: '';
position: absolute;
top: 50%;
left: 0;
right: 0;
height: 3px;
background-color: #fff;
transform-origin: center right;
transform: scaleX(0) translateY(-50%);
transition: transform 0.3s ease;
}
a:hover, button:hover, input[type="submit"]:hover, input#submit:hover {
color: #fff;
text-decoration: none;
}
a:hover::before, button:hover::before, input[type="submit"]:hover::before, input#submit:hover::before {
transform-origin: center left;
transform: scaleX(1) translateY(-50%);
}
a:has(img),
a:has(svg) {
text-decoration: none;
text-transform: none;
font-size: inherit;
pointer-events: auto !important;
}
a:has(img)::before,
a:has(img):hover::before,
a:has(svg)::before,
a:has(svg):hover::before {
content: none !important;
display: none !important;
}
a:has(img):hover,
a:has(svg):hover {
color: inherit;
}
img {
pointer-events: none !important;
display: block;
width: 100%;
height: auto;
border-radius: 30px;
}
h1, h2, h3, h4, h5, h6 {
font-family: "Geist", sans-serif;
font-weight: 400;
text-transform: uppercase;
margin: 0;
line-height: 100%;
}
h1 {
font-size: 64px;
}
h2 {
font-size: 64px;
}
p {
line-height: 160%;
margin: 0 0 30px;
}
input[type="submit"] {
background: none;
border: none;
text-transform: uppercase;
padding: 0;
font-size: 24px;
}
input[type="text"], input[type="email"], textarea {
font-family: "Geist", sans-serif;
background: none;
font-size: 16px;
box-sizing: border-box;
padding: 15px 20px;
border: 1px solid white;
user-select: text;
}
::selection {
background: #000;
color: #fff;
}
::-moz-selection {
background: #000; color: #fff;
} @keyframes b{
100% {background-position: 50% 0, 60% 50%}
}
header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 30px;
position: relative;
z-index: 100;
}
#logo-icon {
width: 80px;
height: auto;
fill: white;
}
nav ul {
list-style: none;
margin: 0;
padding: 0;
display: flex;
}
nav li {
margin: 0;
margin: 0 0 0 30px;
}
nav a {
text-decoration: none;
font-size: 16px;
font-weight: 600;
}
.marquee-wrapper {
overflow: hidden;
white-space: nowrap;
display: block;
position: absolute;
bottom: 0;
width: 100%;
padding: 0 0 30px;
}
.marquee-track {
display: inline-flex;
animation: marquee 40s linear infinite;
will-change: transform;
}
.marquee-track span {
display: inline-block;
flex-shrink: 0;
text-transform: uppercase;
}
@keyframes marquee {
0%   { transform: translateX(0); }
100% { transform: translateX(-33.333%); }
}
#home-page-bg {
position: fixed;
inset: 0;
width: 100%;
height: 100%;
pointer-events: none !important;
}
.body-content, #secondary-content {
display: grid;
grid-template-columns: 1fr 2fr; gap: 20px;
align-items: start; width: 90%;
max-width: 1200px;
margin: 0 auto;
padding: 120px 0;
}
#page-intro {
position: sticky;
top: 30px;
}
#page-intro p {
font-size: 16px;
margin: 20px 0 0;
}
#secondary-content {
grid-template-columns: 2fr 1fr; padding: 0;
}
.body-content:last-of-type a {
display: inline-block;
} .cards-container {
display: grid;
place-items: center;
width: 100%;
height: 100%;
position: fixed;
inset: 0;
}
.card-wrapper {
perspective: 1000px;
width: min(40vw, 70vh);
max-width: 800px;
aspect-ratio: 1;
margin: 0 auto;
} @media (max-width: 1024px) {
.cards-container {
grid-template-columns: repeat(auto-fit, minmax(var(--card-size-tablet), 1fr));
gap: 40px;
}
.card-wrapper {
max-width: var(--card-size-tablet);
}
} @media (max-width: 768px) {
.cards-container {
grid-template-columns: 1fr;
gap: 40px;
}
.card-wrapper {
max-width: var(--card-size-mobile);
}
}
.metallic-card {
width: 100%;
height: 100%;
position: relative;
transform-style: preserve-3d;
transition: transform 0.6s ease-in-out;
} .metallic-card.flipped {
transform: rotateY(180deg);
} .card-front,
.card-back {
position: absolute;
width: 100%;
height: 100%;
backface-visibility: hidden;
transform-style: preserve-3d;
}
.card-front {
cursor: pointer;
transition: transform 0.1s ease-out;
will-change: transform;
-webkit-transform: translateZ(0);
transform: translateZ(0);
}
.card-back {
transform: rotateY(180deg);
cursor: pointer;
}
.card-surface {
width: 100%;
height: 100%;
background: #fff;
border-radius: 20px;
box-shadow: 
0 20px 60px rgba(0, 0, 0, 0.5),
inset 0 1px 0 rgba(255, 255, 255, 0.4),
inset 0 -1px 0 rgba(0, 0, 0, 0.2);
position: relative;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
padding: 30px;
box-sizing: border-box;
} .card-surface::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(
to bottom,
rgba(255, 255, 255, 0.3) 0%,
rgba(255, 255, 255, 0) 50%,
rgba(0, 0, 0, 0.1) 100%
);
pointer-events: none;
z-index: 0;
} .light-reflection {
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: radial-gradient(
circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
rgba(255, 255, 255, 0.4) 0%,
transparent 50%
);
pointer-events: none;
transition: opacity 0.3s ease;
opacity: 0;
z-index: 10; will-change: opacity;
-webkit-transform: translateZ(0);
transform: translateZ(0);
} .metallic-card:not(.flipped) .card-front:hover .light-reflection {
opacity: 1;
} .card-surface::after {
content: '';
position: absolute;
top: 4px;
left: 4px;
right: 4px;
bottom: 4px;
border-radius: 16px;
pointer-events: none;
} .art-container {
width: 100%;
height: 100%;
background: transparent;
border-radius: 12px;
box-shadow: 
0 10px 30px rgba(0, 0, 0, 0.3),
inset 0 1px 0 rgba(255, 255, 255, 0.8);
display: flex;
align-items: center;
justify-content: center;
position: relative;
z-index: 1;
overflow: hidden;
}
.art-container img {
width: 70%;
height: 70%;
object-fit: contain;
display: block;
} .metallic-border {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
border-radius: 20px;
pointer-events: none;
} .card-back-content {
width: 100%;
height: 100%;
background: #212224;
border-radius: 20px;
box-shadow: 
0 20px 60px rgba(0, 0, 0, 0.5),
inset 0 1px 0 rgba(255, 255, 255, 0.1);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 40px;
color: white;
text-align: center;
box-sizing: border-box;
}
.card-back-content h2 {
font-size: 28px;
margin-bottom: 20px;
color: #e8e8e8;
font-weight: 600;
}
.card-back-content p {
font-size: 16px;
line-height: 1.6;
color: rgba(255, 255, 255, 0.8);
margin-bottom: 30px;
max-width: 80%;
}
.card-back-content button {
padding: 12px 30px;
font-size: 16px;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
border: none;
border-radius: 25px;
cursor: pointer;
font-weight: 600;
transition: all 0.3s ease;
box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}
.card-back-content button:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}
.card-back-content button:active {
transform: translateY(0);
} .m-by {
display: none !important;
}  .menu-toggle {
display: none;
} .hamburger {
display: none;
flex-direction: column;
gap: 5px;
cursor: pointer;
z-index: 100;
}
.hamburger span {
display: block;
width: 25px;
height: 2px;
background: white;
transition: all 0.3s ease;
} .menu-toggle:checked + .hamburger span:nth-child(1) {
transform: translateY(7px) rotate(45deg);
}
.menu-toggle:checked + .hamburger span:nth-child(2) {
opacity: 0;
}
.menu-toggle:checked + .hamburger span:nth-child(3) {
transform: translateY(-7px) rotate(-45deg);
} @media only screen and (max-width: 800px) {
.hamburger {
display: flex;
}
nav {
display: none;
position: fixed;
inset: 0;
background: rgba(0,0,0,0.95);
flex-direction: column;
align-items: center;
justify-content: center;
z-index: 99;
}
.menu-toggle:checked ~ nav {
display: flex;
}
nav ul {
flex-direction: column;
text-align: center;
gap: 30px;
}
nav li {
margin: 0;
}
nav a {
font-size: 24px;
}
} @media only screen and (max-width: 1200px) {
html, body {
hyphens: auto;
font-size: 20px;
}
h1, h2 {
font-size: 52px;
}
}
@media only screen and (max-width: 800px) {
html, body {
font-size: 18px;
}
h1, h2 {
font-size: 36px;
}
header {
padding: 30px 0 0;
width: 90%;
margin: 0 auto;
}
.body-content, #secondary-content {
display: flex;
flex-direction: column;
padding: 90px 0;
}
.body-content:first-of-type {
padding: 90px 0 0;
}
#secondary-content {
padding: 0;
}
.card-wrapper {
width: min(80vw, 70vh);
}
.card-surface {
padding: 20px;
}
} .mm-cv {
font-family: 'Geist', -apple-system, Helvetica, sans-serif !important;
font-weight: 300;
background: #ffffff !important;
color: #000000;
line-height: 1.6;
-webkit-font-smoothing: antialiased;
--red:     #DB2C2C;
--orange:  #DB662C;
--dark:    #101010;
--meta:    #8F8F8F;
--bg:      #ffffff;
--text:    #000000;
--border:  #D8D8D8;
--card-bg: #ffffff;
--ph-bg:   #f4f4f4;
--max:     1100px;
--px:      clamp(1.25rem, 4vw, 2.5rem);
--radius:  10px;
}
.mm-cv[data-theme="dark"],
html[data-theme="dark"] .mm-cv {
background: #101010 !important;
color: #f0ede6;
--bg:      #101010;
--text:    #f0ede6;
--border:  #2a2a2a;
--card-bg: #181818;
--ph-bg:   #1f1f1f;
--meta:    #666666;
}
.mm-cv *, .mm-cv *::before, .mm-cv *::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
.mm-cv h1, .mm-cv h2, .mm-cv h3,
.mm-cv p, .mm-cv a, .mm-cv li,
.mm-cv span, .mm-cv button {
text-transform: none !important;
font-family: 'Geist', -apple-system, Helvetica, sans-serif !important;
letter-spacing: normal !important;
}
.mm-cv a { color: inherit; text-decoration: none !important; }
.mm-cv ul { list-style: none !important; }
.mm-cv img { display: block; width: 100%; height: 100%; object-fit: cover; }
.mm-cv :focus-visible { outline: 2px solid var(--red); outline-offset: 3px; border-radius: 3px; }
.mm-cv a::before, .mm-cv button::before,
.mm-cv a:hover::before, .mm-cv button:hover::before {
content: none !important;
display: none !important;
background: none !important;
height: 0 !important;
transform: none !important;
} .mm-cv a:not(.mm-btn):not(.mm-footer-icon-link):not(.mm-proj-card) {
color: var(--text) !important;
text-decoration: underline !important;
text-underline-offset: 3px;
}
.mm-cv a:not(.mm-btn):not(.mm-footer-icon-link):not(.mm-proj-card):hover {
color: var(--orange) !important;
text-decoration: none !important;
}
.mm-cv .mm-red      { color: var(--red); }
.mm-cv .mm-meta-val { color: var(--meta); } .mm-cv .mm-btn {
display: inline-block;
padding: 14px 28px;
border-radius: var(--radius) !important;
font-size: 14px !important;
font-weight: 600 !important;
text-transform: uppercase !important;
letter-spacing: 0.05em !important;
cursor: pointer;
border: 1.5px solid transparent !important;
white-space: nowrap;
line-height: 1 !important;
box-shadow: none !important;
box-sizing: border-box !important;
transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease !important;
}
.mm-cv .mm-btn-black { background: var(--text) !important; color: var(--bg) !important; }
.mm-cv .mm-btn-black:hover, .mm-cv .mm-btn-black:focus-visible {
background: transparent !important; border-color: var(--text) !important; color: var(--text) !important;
}
.mm-cv .mm-btn-red { background: var(--red) !important; color: #fff !important; }
.mm-cv .mm-btn-red:hover, .mm-cv .mm-btn-red:focus-visible {
background: transparent !important; border-color: var(--red) !important; color: var(--red) !important;
}
.mm-cv .mm-btn-ghost {
background: transparent !important; color: var(--text) !important;
border: 1.5px solid var(--border) !important;
transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease !important;
}
.mm-cv .mm-btn-ghost:hover, .mm-cv .mm-btn-ghost:focus-visible {
border-color: var(--orange) !important; color: var(--orange) !important;
} .mm-cv .mm-hero { max-width: var(--max); margin: 0 auto; padding: 0 var(--px) 3rem; }
.mm-cv .mm-topbar { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem 0; margin-bottom: 0.5rem; }
.mm-cv .mm-eyebrow { font-size: 14px !important; font-weight: 500 !important; color: var(--text); line-height: 1.6; }
.mm-cv .mm-theme-btn {
display: flex; align-items: center; gap: 8px;
background: none !important; border: none !important; box-shadow: none !important;
cursor: pointer; font-size: 12px !important; color: var(--meta);
padding: 0 !important; font-weight: 400 !important; text-decoration: none !important;
transition: color 0.2s ease !important;
}
.mm-cv .mm-theme-btn:hover { color: var(--text) !important; text-decoration: none !important; }
.mm-cv .mm-theme-btn::before, .mm-cv .mm-theme-btn:hover::before { content: none !important; display: none !important; }
.mm-cv .mm-toggle-track {
width: 36px; height: 20px; border-radius: 10px;
border: 1px solid var(--border) !important; background: var(--ph-bg);
position: relative; transition: background 0.2s; flex-shrink: 0;
}
.mm-cv .mm-toggle-thumb {
width: 14px; height: 14px; border-radius: 50%; background: var(--meta);
position: absolute; top: 2px; left: 2px; transition: transform 0.2s, background 0.2s;
}
.mm-cv[data-theme="dark"] .mm-toggle-thumb,
html[data-theme="dark"] .mm-cv .mm-toggle-thumb { transform: translateX(16px); background: var(--text); }
.mm-cv .mm-hero-name {
font-size: clamp(52px, 9vw, 90px) !important; font-weight: 600 !important;
letter-spacing: -0.04em !important; line-height: 1.0 !important;
margin-bottom: 1.25rem !important; color: var(--text) !important;
}
.mm-cv .mm-hero-desc {
font-size: clamp(15px, 2vw, 19px) !important; font-weight: 300 !important;
color: var(--text); max-width: 680px; margin-bottom: 2rem !important; line-height: 1.65 !important;
}
.mm-cv .mm-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 2rem; }
.mm-cv .mm-tag {
padding: 10px 18px; border-radius: var(--radius) !important;
border: 1px solid var(--border) !important; background: var(--card-bg) !important;
font-size: 11px !important; font-weight: 600 !important; text-transform: uppercase !important;
letter-spacing: 0.05em !important; color: var(--text) !important; line-height: 1 !important; box-shadow: none !important;
}
.mm-cv .mm-hero-divider { border: none !important; border-top: 1px solid var(--border) !important; margin-bottom: 2rem; height: 0; }
.mm-cv .mm-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; } .mm-cv .mm-section { padding: 0; }
.mm-cv .mm-section-inner { max-width: var(--max); margin: 0 auto; padding: 3rem var(--px); border-top: 1px solid var(--border); }
.mm-cv .mm-sec-label { font-size: 14px !important; font-weight: 500 !important; color: var(--orange) !important; margin-bottom: 0.4rem !important; line-height: 1.6 !important; }
.mm-cv .mm-sec-title { font-size: clamp(30px, 4.5vw, 50px) !important; font-weight: 600 !important; letter-spacing: -0.03em !important; line-height: 1.05 !important; margin-bottom: 2rem !important; color: var(--text) !important; } .mm-cv .mm-cs-card { border: 1px solid var(--border); border-radius: var(--radius); padding: clamp(1.5rem, 4vw, 2.5rem); margin-bottom: 1.5rem; background: var(--card-bg); }
.mm-cv .mm-cs-card:last-child { margin-bottom: 0; }
.mm-cv .mm-cs-top { display: flex; flex-wrap: wrap; align-items: flex-start; gap: 1rem 2rem; margin-bottom: 1.25rem; }
.mm-cv .mm-cs-name { font-size: clamp(30px, 4.5vw, 50px) !important; font-weight: 600 !important; letter-spacing: -0.03em !important; color: var(--text) !important; flex-shrink: 0; line-height: 1.1 !important; }
.mm-cv .mm-cs-metas { display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; align-items: center; padding-top: 0.75rem; }
.mm-cv .mm-cs-meta { font-size: 13px !important; font-weight: 500 !important; line-height: 1.6 !important; }
.mm-cv .mm-cs-desc { font-size: clamp(14px, 1.8vw, 17px) !important; font-weight: 300 !important; color: var(--text); line-height: 1.7 !important; margin-bottom: 1rem !important; }
.mm-cv .mm-cs-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 2rem; }
.mm-cv .mm-cs-img { aspect-ratio: 148/89; border-radius: 6px; background: var(--ph-bg); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 11px !important; color: var(--meta); overflow: hidden; font-weight: 300 !important; }
.mm-cv .mm-cs-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 6px; }
.mm-cv .mm-cs-btns { display: flex; gap: 12px; flex-wrap: wrap; } .mm-cv .mm-proj-list { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 0.5rem; }
.mm-cv .mm-proj-card {
display: flex !important; border: 1px solid var(--border) !important; border-radius: var(--radius) !important;
overflow: hidden; background: var(--card-bg) !important; transition: background 0.2s;
text-decoration: none !important; color: inherit !important; min-height: 240px;
}
.mm-cv .mm-proj-card:hover { background: var(--ph-bg) !important; }
.mm-cv .mm-proj-img { width: 45%; flex-shrink: 0; overflow: hidden; background: var(--ph-bg); display: flex; align-items: center; justify-content: center; font-size: 11px !important; color: var(--meta); min-height: 240px; font-weight: 300 !important; }
.mm-cv .mm-proj-img img { width: 100%; height: 100%; object-fit: cover; }
.mm-cv .mm-proj-content { flex: 1; padding: clamp(1.5rem, 3vw, 2.5rem); display: flex; flex-direction: column; justify-content: center; gap: 0.4rem; }
.mm-cv .mm-proj-cat { font-size: 11px !important; font-weight: 600 !important; text-transform: uppercase !important; letter-spacing: 0.08em !important; color: var(--red) !important; margin-bottom: 0.25rem !important; line-height: 1.6 !important; }
.mm-cv .mm-proj-name { font-size: clamp(20px, 2.5vw, 28px) !important; font-weight: 600 !important; letter-spacing: -0.02em !important; color: var(--text) !important; margin-bottom: 0.4rem !important; line-height: 1.2 !important; }
.mm-cv .mm-proj-desc { font-size: clamp(13px, 1.5vw, 15px) !important; font-weight: 300 !important; color: var(--text) !important; line-height: 1.65 !important; margin: 0 !important; }
.mm-cv .mm-proj-arrow-wrap { display: flex; justify-content: center; align-items: center; padding: 2rem; flex-shrink: 0; }
.mm-cv .mm-proj-arrow-circle { width: 52px; height: 52px; border-radius: 50% !important; border: 1px solid var(--border) !important; display: flex; align-items: center; justify-content: center; transition: border-color 0.2s; flex-shrink: 0; background: transparent !important; box-shadow: none !important; }
.mm-cv .mm-proj-card:hover .mm-proj-arrow-circle { border-color: var(--red) !important; }
.mm-cv .mm-proj-card:hover .mm-proj-arrow-circle path { fill: var(--red); }
.mm-cv .mm-proj-arrow-circle path { transition: fill 0.2s; } .mm-cv .mm-about-text { font-size: clamp(14px, 1.8vw, 17px) !important; font-weight: 300 !important; color: var(--text) !important; line-height: 1.75 !important; max-width: 780px; } .mm-cv .mm-exp-divider { border: none !important; border-top: 1px solid var(--border) !important; margin-bottom: 2rem; height: 0; }
.mm-cv .mm-exp-list { display: flex; flex-direction: column; gap: 1.5rem; }
.mm-cv .mm-exp-row { display: flex; gap: 3rem; align-items: flex-start; }
.mm-cv .mm-exp-left { width: 220px; flex-shrink: 0; }
.mm-cv .mm-exp-co { font-size: clamp(15px, 1.8vw, 20px) !important; font-weight: 600 !important; letter-spacing: -0.01em !important; color: var(--text) !important; margin-bottom: 4px !important; line-height: 1.3 !important; }
.mm-cv .mm-exp-meta { font-size: 12px !important; font-weight: 500 !important; line-height: 1.6 !important; }
.mm-cv .mm-exp-detail { font-size: 13px !important; font-weight: 300 !important; color: var(--text) !important; line-height: 1.65 !important; flex: 1; margin: 0 !important; } .mm-cv .mm-skills-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem 4rem; }
.mm-cv .mm-skill-label { font-size: 13px !important; font-weight: 500 !important; color: var(--red) !important; margin-bottom: 1rem !important; line-height: 1.6 !important; }
.mm-cv .mm-skill-list li { font-size: clamp(15px, 1.8vw, 20px) !important; font-weight: 600 !important; color: var(--text) !important; line-height: 1.8 !important; } .mm-cv .mm-page-content { width: 100%; margin-top: 2rem; }
.mm-cv .mm-page-content p { font-size: clamp(15px, 2vw, 19px) !important; font-weight: 300 !important; color: var(--text) !important; line-height: 1.65 !important; margin-bottom: 0.75rem !important; text-transform: none !important; }
.mm-cv .mm-page-content a { color: var(--text) !important; text-decoration: underline !important; text-underline-offset: 3px; transition: color 0.15s; }
.mm-cv .mm-page-content a:hover, .mm-cv .mm-page-content a:focus-visible { color: var(--orange) !important; }
.mm-cv .mm-page-content a::before, .mm-cv .mm-page-content a:hover::before { content: none !important; display: none !important; }
.mm-cv .mm-page-content ul, .mm-cv .mm-page-content ol { margin: 0 0 1rem 1.25rem !important; }
.mm-cv .mm-page-content li { font-size: clamp(15px, 2vw, 19px) !important; font-weight: 300 !important; color: var(--text) !important; line-height: 1.65 !important; margin-bottom: 0.4rem !important; text-transform: none !important; list-style: disc !important; }
.mm-cv .mm-page-content h2, .mm-cv .mm-page-content h3 { font-size: clamp(18px, 2.5vw, 24px) !important; font-weight: 600 !important; color: var(--text) !important; margin: 1.5rem 0 0.5rem !important; line-height: 1.2 !important; } .mm-cv .mm-footer { background: #101010 !important; padding: 0; }
.mm-cv .mm-footer-inner { max-width: var(--max); margin: 0 auto; padding: 4rem var(--px); display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.mm-cv .mm-footer-title { font-size: clamp(28px, 4vw, 52px) !important; font-weight: 600 !important; color: #fff !important; margin: 0 !important; letter-spacing: -0.03em !important; line-height: 1 !important; }
.mm-cv .mm-footer-icons { display: flex; align-items: center; gap: 1rem; }
.mm-cv .mm-footer-icon-link { opacity: 0.55; transition: opacity 0.2s; display: flex; align-items: center; border: none !important; background: none !important; padding: 0 !important; box-shadow: none !important; }
.mm-cv .mm-footer-icon-link:hover, .mm-cv .mm-footer-icon-link:focus-visible { opacity: 1; } @media (max-width: 680px) {
.mm-cv .mm-proj-card { flex-direction: column !important; }
.mm-cv .mm-proj-img { width: 100% !important; min-height: 180px; }
.mm-cv .mm-proj-arrow-wrap { display: none; }
.mm-cv .mm-cs-imgs { grid-template-columns: 1fr; }
.mm-cv .mm-cs-top { flex-direction: column; gap: 0.75rem; }
.mm-cv .mm-exp-row { flex-direction: column; gap: 0.5rem; }
.mm-cv .mm-exp-left { width: 100% !important; }
.mm-cv .mm-skills-cols { grid-template-columns: 1fr; }
.mm-cv .mm-footer-inner { flex-direction: column; align-items: flex-start; }
.mm-cv .mm-hero-btns { flex-direction: column; align-items: flex-start; }
.mm-cv .mm-hero { padding-top: 1.5rem; }
}  header, #logo-icon, nav a, .hamburger span {
transition: background 0.2s, color 0.2s, fill 0.2s;
} html[data-theme="dark"],
html[data-theme="dark"] body,
body[data-theme="dark"] {
background: #101010 !important;
color: #ffffff !important;
}
html[data-theme="dark"] #logo-icon,
body[data-theme="dark"] #logo-icon { fill: #ffffff !important; }
html[data-theme="dark"] nav a,
body[data-theme="dark"] nav a { color: #ffffff !important; }
html[data-theme="dark"] .hamburger span,
body[data-theme="dark"] .hamburger span { background: #ffffff !important; }
body[data-theme="dark"] header { background: #101010 !important; } html[data-theme="light"],
html[data-theme="light"] body,
body[data-theme="light"] {
background: #ffffff !important;
color: #000000 !important;
}
html[data-theme="light"] #logo-icon,
body[data-theme="light"] #logo-icon { fill: #000000 !important; }
html[data-theme="light"] nav a,
body[data-theme="light"] nav a { color: #000000 !important; }
html[data-theme="light"] .hamburger span,
body[data-theme="light"] .hamburger span { background: #000000 !important; }
body[data-theme="light"] header { background: #ffffff !important; } @media only screen and (max-width: 800px) {
html[data-theme="light"] nav,
body[data-theme="light"] nav { background: rgba(0,0,0,0.95) !important; }
html[data-theme="light"] nav a,
body[data-theme="light"] nav a { color: #ffffff !important; }
}