@font-face { font-family: 'Meow'; src: url('/assets/meow.ttf') format('truetype'); font-weight: normal; font-style: normal; }
@font-face { font-family: 'HumanSans'; src: url('/assets/HumanSans-Regular.otf') format('opentype'); font-weight: normal; font-style: normal; }
body.lightmode { background: linear-gradient(to bottom, #3a3a3a, #101010); --grey: #e8e8e8; }
body.lightmode .toast, body.lightmode .custom-tooltip { background-color: #ffffff !important; color: black; }
body.lightmode .toast, body.lightmode .easter-egg-desc, body.lightmode .easter-egg-title { color: black; }
img { -webkit-user-drag: none;}
@keyframes twinkle { 0%, 100% { opacity: 0.3; transform: scale(1); } 50% { opacity: 1; transform: scale(1.3); } }
@keyframes fadeIn { from { opacity: 0; transform: translate(-50%, 0px); } to { opacity: 1; transform: translate(-50%, 0); } }
@keyframes slideDown { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideDown { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideInRight { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes slideInLeft { from { opacity: 0; transform: translateX(-40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes wave { 0% { transform: rotate(0deg); } 15% { transform: rotate(20deg); } 30% { transform: rotate(-10deg); } 45% { transform: rotate(15deg); } 60%, 100% { transform: rotate(0deg); } }
@keyframes slideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes flag { 0% { opacity: 0; transform: translateY(0) scale(0.8); } 100% { opacity: 1; transform: translate(0px, -30px) scale(1.2); } }
@keyframes slideIn { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeOut { to { opacity: 0; transform: translateY(-10px); } }
.up { animation: slideUp 0.6s ease-out forwards; }
.left { animation: slideInLeft 0.6s ease-out forwards; }
.right { animation: slideInRight 0.6s ease-out forwards; }
.down { animation: slideDown 0.6s ease-out forwards; }
.fade { animation: fadeIn 0.8s ease forwards; }
.flex-col { display: flex; flex-direction: column; }
.flex-row { display: flex; flex-direction: row; }
.center { align-items: center; justify-content: center; }
.font-accent { font-family: 'meow', sans-serif; }
@media (max-width: 768px) {
  .main-layout { max-width: 350px; }
  .main-info { flex-direction: column; justify-content: center; align-items: left;}
  .info { align-items: left;}
  .pfp img { width: 90px; height: 110px; }
  .hi { font-size: 1.5rem; }
  .description { font-size: 12px !important; }
  .USA { font-size: 12px; }
  .USA i { font-size: 12px; }
  .project-rows { flex-direction: column !important; }
  .project-img {height: 200px;}
  .branding { overflow-y: scroll; }
  .technologies { gap: 5px; }
  .languages { padding: 5px; }
  .languages i { font-size: 2rem !important; }
  .languages svg { width: 32px; height: 32px; }
  .language-name { display: none; }
  .wisdom { display: none; }
}


:root {
    --white: #e8e8e8;
    --grey: #ccc;
    --radius-md: 8px;
    --radius-full: 50%;
    --font-l: 2rem;
    --font-md: 1rem;
    --light-main: black;
    --border-color: rgba(255, 255, 255, 0.1)
}


body,
html {
    margin: 0;
    padding: 0;
    background-color: black;
    font-family: 'HumanSans', sans-serif;
    overflow: auto;
      user-select: none;       
  -webkit-user-select: none; 
  -ms-user-select: none; 
}

a {
  text-decoration: none;
}


.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--white);
    border-radius: var(--radius-full);
    opacity: 0.8;
    box-shadow: 0 0 6px var(--white);
    animation: twinkle 2s infinite ease-in-out;
    z-index: 0;
}

.cursorFollower,
.cursorFollowerDot {
    position: fixed;
    border-radius: var(--radius-full);
    transform: translate(-50%, -50%);
    transition: transform 0.3s;
    mix-blend-mode: difference;
    z-index: 999;
}

.cursorFollower {
    width: 2rem;
    height: 2rem;
    border: 2px solid var(--white);
}

.cursorFollowerDot {
    width: 0.8rem;
    height: 0.8rem;
    background: var(--white);
}

.main-layout {
  position: relative;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0%);
  border: 1px solid var(--border-color);
  width: 700px;
  height: auto;
  overflow: hidden;
  padding: 20px;
  gap: 20px;
  z-index: 1;
  backdrop-filter: blur(3px);
}

.nav-bar {
    justify-content: space-between;
    height: 40px;
    margin-bottom: 20px;
    align-items: center;
}

.nav-center {
  color: var(--white); 
  font-size: 0.8rem;
}


.nav-center-wrapper {
  position: relative;
  display: inline-block;
}

.custom-tooltip, 
.custom-tooltip-top {
position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: rgb(42, 42, 42); 
  border: 1px dotted var(--border-color);
  color: var(--white);
  padding: 12px;
  font-size: 0.9rem;
  border-radius: 8px;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 999;
  opacity: 0;
}

.custom-tooltip {
  top: 180%;
  min-width: 300px;
}

.custom-tooltip-top {
  bottom: 180%;
  min-width: 400px;
}

.wisdom:hover .custom-tooltip-top, 
.question:hover .custom-tooltip, 
.nav-center-wrapper:hover .custom-tooltip {
  opacity: 1; 
  transform: translateX(-50%) translateY(-5px);
}

.question {
    position: relative;
}

.egg-title {
    gap: 5px; 
    align-items: flex-start;
    margin-bottom: 10px; 
}

.egg-icon i {
    font-size: 1.3rem; 
}

.easter-egg-title {
    font-size: 1.3rem; 
    color: var(--white)
}

.easter-egg-desc {
    color: var(--grey)
}

.right-side-nav,
.left-side-nav {
    gap: 10px;
}

.logo img {
  filter: invert();
  aspect-ratio: 1;
  width: 50px;
}


.sera {
    font-size: var(--font-l);
    color: var(--white);
    margin-bottom: 4px;
}

.social-icon {
    transition: all 0.3s ease;
}

.social-icon i {
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
      transition: opacity 0.25s ease;
}

.social-icon svg {
    width: 1.9rem; 
    height: 1.9rem; 
}

.social-icon i.fade-out {
  opacity: 0;
}

.social-icon:hover {
    transform: scale(1.2) rotate(5deg);
}

.pfp img {
    width: 110px;
    aspect-ratio: 1;
    border-radius: var(--radius-full);
    border: 1px solid var(--white);
    margin-right: 20px;
    animation: slideInLeft 0.6s ease-out forwards;
}

.pfp img:hover {
    animation: spin 0.6s ease-in-out 1;
}

.info {
    justify-content: flex-start;
    gap: 10px;
}

.hi {
    font-size: var(--font-l);
    color: var(--white);
}


.emoji:hover {
    animation: wave 1s ease-in-out infinite;
    display: inline-block
}


.description {
  font-size: var(--font-md);
  color: var(--grey);
}


.USA-wrapper {
    width: 100%; 
        display: flex;
    align-items:flex-end; 
    justify-content: right;
}


.USA {
    position: relative;
    gap: 5px;
    overflow: visible;
    width: max-content; 
}

.flags {
    position: absolute;
    top: 0;
    right: 25px;
    pointer-events: none;
}

.flag {
    position: absolute;
    font-size: 1.2rem;
    opacity: 0;
    transform: translateY(0) scale(1);
}

.USA:hover .flag:nth-child(1) {
    animation: flag 0.6s ease-out forwards;
}

.USA i {
    font-size: var(--font-md);
    color: var(--grey)
}

.location {
    color: var(--grey);
}

.divider {
    width: 100%;
    height: 1px;
    border-radius: var(--radius-full);
    background-color: var(--border-color);
}

.current-work {
    gap: 10px;
}

.currently {
    font-size: .7rem;
    color: var(--grey);
          animation: slideInLeft 0.6s ease-out forwards;
       
}

.current-work-info {
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.job-info {
    gap: 5px;
    justify-content: center;
}

.imafed {
    aspect-ratio: 1;
    width: 20px;
}

.imafed-lang-icons {
    gap: 10px;
    color: var(--white);
    font-size: 1.5rem;
}

.imafed-lang-icons i {
  transition: all 0.3s ease;
}

.imafed-lang-icons i:nth-child(1):hover { color: #F0DB4F; }
.imafed-lang-icons i:nth-child(2):hover { color: #e34c26; }
.imafed-lang-icons i:nth-child(3):hover { color: #663399; }

.imafed-lang-icons i:hover {
  transform: scale(1.2) rotate(5deg);
}

.recent-projects {
  gap: 20px;
}


.technologies,
.branding,
.project-rows {
    justify-content: space-between;
    gap: 20px;
}

.languages,
.project-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    text-align: center;
    overflow: hidden;
}

.project-img {
        object-fit: cover;
}

.project-img img {
    height: 100%;
    width: 100%;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

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


.project-info {
  padding: 5px 10px;
  gap: 10px;
}


.project-info-main {
    align-items: center;
    justify-content: space-between;
}

.project-title {
    font-size: 1.2rem;
    color: var(--white);
}

.arrow-icon {
    display: flex;
    transition: all 0.3s ease;
    cursor: pointer
}

.arrow-icon:hover {
    transform: rotate(45deg);
}

.arrow-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--white);
    transform: rotate(45deg);
}

.project-description {
    gap: 5px;
    justify-content: flex-start;
}

.project-desc-text {
    font-size: 12px;
    color: var(--white);
    text-align: left;
    line-height: 1.5;
}

.project-tags {
    align-items: center;
    justify-content: space-between;
}

.tags {
  gap: 5px;
}

.tag {
    font-size: 10px;
    color: var(--grey);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    padding: 3px 5px;
    transition: 0.3s ease;
}

.tag:nth-child(1):hover { background-color: #e34c26; color: var(--white); }
.tag:nth-child(2):hover { background-color: #663399; color: var(--white); }
.tag:nth-child(3):hover { background-color: #F0DB4F; color: var(--white); }


.in-progress {
    background-color: rgba(88, 214, 96, 0.252);
        padding: 3px 5px;
        border-radius: 20px; 
        gap: 5px; 
}

.dot {
    width: 5px; 
    height: 5px; 
    border-radius: var(--radius-full); 
    background-color: rgb(8, 109, 2); 
}

.in-prog-txt {
    color: var(--white); 
    font-size: 0.6rem; 
}

.branding-image {
    flex: 1;
}

.branding img {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    width: 150px;
    aspect-ratio: 1;
    object-fit: cover;
    transition: 0.3s ease;
}

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


.languages {
    gap: 10px;
    aspect-ratio: 1;
}

.languages i {
    color: var(--white);
    font-size: 3rem;
        transition: all 0.3s ease;
}

.languages svg:hover, 
.languages i:hover {
    transform: scale(1.2);
}

.languages.js i:hover { color: #F0DB4F; }
.languages.html i:hover { color: #e34c26; }
.languages.css i:hover { color: #663399; }
.languages.type svg:hover { fill: #007acc; }
.languages.python svg:hover { fill: #306998; }
.languages.c-sharp svg:hover { fill: #9b4993; }



.languages svg {
    fill: var(--white);
    width: 3rem;
    height: 3rem;
     transition: all 0.3s ease;
}

.language-name {
    font-size: var(--font-md);
    color: var(--white);
    stroke: var(--white);
}

.cta {
    gap: 10px;
}

.cta-title {
    font-size: var(--font-l);
    color: var(--white)
}

.cta-desc {
    font-size: var(--font-md);
    color: var(--grey);
}

.wisdom {
    color: var(--grey); 
    font-size: .7rem; 
    position: relative;
    cursor: pointer
}

#toast-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: rgba(0, 0, 0, 0.85);
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  border: 1px solid var(--border-color); 
  font-size: 1rem;
  min-width: 200px; 
  max-width: 200px;
  opacity: 0;
  transform: translateY(20px);
  animation: slideIn 0.3s forwards, fadeOut 0.5s 2.5s forwards;
}

.entry-title{
    font-size: 2rem; 
}

.entry-desc {
    font-size: var(--font-md); 
    font-family: 'HumanSans', sans-serif
}

.entry-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(10px);
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease;
}

.entry-box {
gap: 20px; 
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  backdrop-filter: blur(30px);
}

.entry-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.tos {
    position: fixed; 
    top: 245px; 
    left: 20px; 
    width: max-content; 
}

button {
  display: flex;
  align-items: center;
  font-family: inherit;
  cursor: pointer;
  font-size: 17px;
  padding: 5px;
  color: var(--grey); 
  background: transparent;
  border: 1px solid var(--border-color);
  border-bottom: none;
}

button SVG {
  transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
  width: 20px;
  height: 20px;  
  fill: var(--white)
}

button span {
  transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
  margin-right: 10px; 
}

button:hover svg {
  transform: translateX(5px) rotate(90deg);
}

button:hover span {
  transform: translateX(7px);
}

