@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap');

:root {
    --background-color: #050f0a;
    --container-color: rgb(34, 34, 34);
    --navbar-color: rgba(34, 34, 34, 0.201);
    --navbar-text-color: rgb(255, 255, 255);
    --navbar-hover-color: rgb(50, 50, 50);
    --footer-color: rgb(14, 14, 14);
    --footer-text-color: white;
    --accent-color: rgb(78, 196, 139);
    --accent-color-low: rgb(53, 135, 95);
    --accent-color-hover: rgb(104, 255, 197);
}

/* PAGE */
body {
    background-color: var(--background-color);
    color: white;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    z-index: 0;
    position: relative;
}

/* FOOTER */
.footer {
    background: rgba(5, 10, 7, 0.851);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(74, 178, 128, 0.12);
    margin-top: 2rem;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 3.5rem 2rem 2.5rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-heading {
    font-family: 'Lexend', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-color);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 0 1rem;
}

.footer-nav,
.footer-contact,
.footer-alt {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.footer-nav a,
.footer-contact a {
    font-family: 'Courier New', monospace;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.15s;
    width: fit-content;
}

.footer-nav a:hover,
.footer-contact a:hover {
    color: var(--accent-color);
}

.footer-name {
    font-family: 'Lexend', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.2rem;
}

.footer-alt span {
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.5;
}

.footer-available {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    color: rgba(107, 224, 167, 0.75) !important;
}

.footer-bottom {
    max-width: 960px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-family: 'Courier New', monospace;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.25);
    text-align: center;
}


/* BACKGROUND */
#background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -100;
  pointer-events: none;
}


/* NAVBAR */
nav {
  z-index: 100;
}
.navbar {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(20, 28, 24, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(74, 178, 128, 0.15);
  border-radius: 9999px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  width: max-content;
}
.navbar a {
  text-decoration: none;
  color: var(--navbar-text-color);
  font-weight: bold;
  transition: 0.2s;
  padding: 0.4rem 0.9rem;
  border-radius: 9999px;
  font-size: 0.9rem;
}
.navbar a:hover {
  background-color: rgba(74, 178, 128, 0.12);
  color: var(--accent-color);
}


/* BUTTON */
/* From Uiverse.io by satyamchaudharydev */ 
.button {
  position: relative;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  padding-block: 0.4rem;
  padding-inline: 0.7rem;
  background-color: var(--accent-color-low);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffff;
  gap: 10px;
  font-weight: bold;
  border: 3px solid #ffffff4d;
  outline: none;
  overflow: hidden;
  font-size: 16.5px;
  cursor: pointer;
}

.icon {
  width: 20px;
  height: 20px;
  transition: all 0.3s ease-in-out;
}

.button:hover {
  transform: scale(1.05);
  border-color: #fff9;
}

.button:hover .icon {
  transform: translate(4px);
}

.button:hover::before {
  animation: shine 1.5s ease-out infinite;
}

.button::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100%;
  background-image: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0) 70%
  );
  top: 0;
  left: -100px;
  opacity: 0.6;
}

@keyframes shine {
  0% {
    left: -100px;
  }

  60% {
    left: 100%;
  }

  to {
    left: 100%;
  }
}


/* HERO */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem 2rem;
}

.hero-card {
    width: 100%;
    max-width: 960px;
    background: rgba(16, 24, 20, 0.45);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(74, 178, 128, 0.15);
    border-top: 1px solid rgba(104, 255, 197, 0.4);
    border-radius: 14px;
    overflow: hidden;
    box-shadow:
        0 8px 48px rgba(0, 0, 0, 0.6),
        0 2px 12px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(74, 178, 128, 0.213);
}

.hero-card-header {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0.6rem 1.2rem;
    border-bottom: 1px solid rgba(74, 178, 128, 0.1);
    background: rgba(74, 178, 128, 0.03);
}

.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-red    { background: #ff5f57; }
.dot-yellow { background: #febc2e; }
.dot-green  { background: #28c840; }


.hero-card-body {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 3rem;
    padding: 3rem 3.5rem;
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.hero-title {
    font-family: 'Lexend', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25;
    margin: 0;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.8);
}

.accent {
    color: var(--accent-color);
    text-shadow: 0 0 22px rgba(107, 224, 167, 0.3);
}

.hero-desc {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin: 0;
    font-family: 'Courier New', monospace;
    max-width: 440px;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.9);
}


.hero-button {
    align-self: flex-start;
    font-size: 1.25rem;
    padding-block: 0.7rem;
    padding-inline: 1.4rem;
}

/* CUBE */
.hero-right {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 1rem;
}

.cube-glow {
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(74, 178, 128, 0.05) 0%, transparent 68%);
    animation: glowPulse 3.5s ease-in-out infinite;
    pointer-events: none;
}

.cube-scene {
    perspective: 600px;
}

.cube {
    width: 150px;
    height: 150px;
    position: relative;
    transform-style: preserve-3d;
    animation: rotateCube 11s linear infinite;
}

.face {
    position: absolute;
    width: 150px;
    height: 150px;
    border: 1px solid rgba(74, 178, 128, 0.2);
    background-color: rgba(74, 178, 128, 0.01);
    background-image:
        linear-gradient(rgba(74, 178, 128, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(74, 178, 128, 0.07) 1px, transparent 1px);
    background-size: 30px 30px;
    box-shadow:
        inset 0 0 18px rgba(74, 178, 128, 0.02),
        0 0 4px rgba(74, 178, 128, 0.05);
    overflow: hidden;
}

.face::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        125deg,
        transparent 0%,
        rgba(104, 255, 197, 0.02) 35%,
        rgba(200, 255, 235, 0.04) 50%,
        rgba(104, 255, 197, 0.02) 65%,
        transparent 100%
    );
    background-size: 250% 250%;
    animation: holoSlide 4s ease-in-out infinite;
}

.face::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        225deg,
        rgba(80, 200, 255, 0.01) 0%,
        transparent 40%,
        rgba(180, 100, 255, 0.01) 100%
    );
    animation: holoColor 6s ease-in-out infinite alternate;
}

.face.front  { transform: translateZ(75px); }
.face.back   { transform: translateZ(-75px) rotateY(180deg); }
.face.left   { transform: translateX(-75px) rotateY(-90deg); }
.face.right  { transform: translateX(75px) rotateY(90deg); }
.face.top    { transform: translateY(-75px) rotateX(90deg); }
.face.bottom { transform: translateY(75px) rotateX(-90deg); }

@keyframes rotateCube {
    0%   { transform: rotateX(22deg) rotateY(0deg); }
    100% { transform: rotateX(22deg) rotateY(360deg); }
}

@keyframes holoSlide {
    0%   { background-position: 200% 200%; opacity: 0.4; }
    50%  { background-position: -100% -100%; opacity: 1; }
    100% { background-position: 200% 200%; opacity: 0.4; }
}

@keyframes holoColor {
    0%   { opacity: 0.3; }
    50%  { opacity: 1; }
    100% { opacity: 0.3; }
}

@keyframes glowPulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50%       { transform: scale(1.12); opacity: 1; }
}


/* PROFILE */
.profile {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    max-width: 960px;
    margin: 0 auto;
    padding: 2.5rem 2rem 1rem;
}

.profile-left {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    align-items: flex-start;
}

.profile-name {
    font-family: 'Lexend', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.03em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8), 0 0 40px rgba(107, 224, 167, 0.08);
}

.profile-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    align-items: flex-start;
}

.profile-line {
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.45);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.9);
}

.profile-status {
    color: rgba(107, 224, 167, 0.7);
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-color);
    flex-shrink: 0;
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 4px var(--accent-color); }
    50%       { opacity: 0.4; box-shadow: none; }
}

.profile-socials {
    display: flex;
    gap: 0.6rem;
    margin-top: 0.2rem;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.35rem 0.9rem;
    background: rgba(50, 50, 50, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 9999px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    backdrop-filter: blur(8px);
}

.social-btn:hover {
    background: rgba(70, 70, 70, 0.7);
    border-color: var(--accent-color);
    color: #ffffff;
}

.social-btn svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.profile-right {
    flex-shrink: 0;
}

.profile-photo-wrapper {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(74, 178, 128, 0.4);
    box-shadow: 0 0 24px rgba(74, 178, 128, 0.15);
    flex-shrink: 0;
}

.profile-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 0 -55px;
    transform: scale(1.8);
    transform-origin: center 5%;
}


/* PROJECTS */
.projects {
    max-width: 960px;
    margin: 0 auto;
    padding: 2rem 2rem 4rem;
}

.projects-title {
    font-family: 'Lexend', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 1.5rem;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.project-card {
    background: rgba(16, 24, 20, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(74, 178, 128, 0.12);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s, box-shadow 0.2s;
    transition: 0.15s;
}

.project-card:hover {
    border-color: rgba(74, 178, 128, 0.3);
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.5), 0 0 20px rgba(74, 178, 128, 0.08);
    transform: translateY(-5px);
}

.project-card-header {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0.5rem 1rem;
    border-bottom: 1px solid rgba(74, 178, 128, 0.08);
    background: rgba(74, 178, 128, 0.02);
}

.project-card-body {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    padding: 1.2rem 1.4rem 1.4rem;
    flex: 1;
}

.project-title {
    font-family: 'Lexend', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: 0.04em;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}

.project-desc {
    font-family: 'Courier New', monospace;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin: 0;
    flex: 1;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.8);
}

.project-techs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.tech-badge {
    font-family: 'Courier New', monospace;
    font-size: 0.68rem;
    color: var(--accent-color);
    background: rgba(78, 196, 139, 0.08);
    border: 1px solid rgba(78, 196, 139, 0.2);
    border-radius: 4px;
    padding: 0.15rem 0.5rem;
    letter-spacing: 0.02em;
}

.project-btn {
    align-self: flex-start;
    font-size: 0.75rem;
    padding-block: 0.25rem;
    padding-inline: 0.75rem;
    margin-top: auto;
    gap: 6px;
    text-decoration: none;
    background-color: var(--background-color);
}

.project-btn .icon {
    width: 14px;
    height: 14px;
}

.projects-cta {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.projects-cta-btn {
    text-decoration: none;
    font-size: 0.95rem;
    padding-block: 0.5rem;
    padding-inline: 1.1rem;
}


/* GITHUB */
.github {
    --gh-cell: 11px;
    --gh-gap: 3px;
    max-width: 960px;
    margin: 0 auto;
    padding: 1rem 2rem 4rem;
}

.github-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.2rem;
    flex-wrap: wrap;
}

.github-title {
    font-family: 'Lexend', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}

.github-total {
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.9);
}

.github-card {
    background: rgba(16, 24, 20, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(74, 178, 128, 0.12);
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.github-card-body {
    padding: 1.4rem 1.6rem;
    overflow-x: auto;
}

.github-months {
    display: grid;
    gap: var(--gh-gap);
    margin-left: calc(28px + var(--gh-gap));
    margin-bottom: 6px;
    font-family: 'Courier New', monospace;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    height: 14px;
}

.github-months span {
    grid-row: 1;
    white-space: nowrap;
    overflow: visible;
}

.github-body {
    display: flex;
    gap: var(--gh-gap);
}

.github-days {
    display: grid;
    grid-template-rows: repeat(7, var(--gh-cell));
    gap: var(--gh-gap);
    width: 28px;
    font-family: 'Courier New', monospace;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.4);
}

.github-days span {
    line-height: var(--gh-cell);
    height: var(--gh-cell);
}

.github-days span:nth-child(1) { grid-row: 2; }
.github-days span:nth-child(2) { grid-row: 4; }
.github-days span:nth-child(3) { grid-row: 6; }

.github-grid {
    display: grid;
    grid-template-rows: repeat(7, var(--gh-cell));
    gap: var(--gh-gap);
}

.github-cell {
    width: var(--gh-cell);
    height: var(--gh-cell);
    border-radius: 2px;
    background: rgba(74, 178, 128, 0.06);
    border: 1px solid rgba(74, 178, 128, 0.04);
    transition: transform 0.12s, outline 0.12s;
}

.github-cell.level-0 { background: rgba(74, 178, 128, 0.06); }
.github-cell.level-1 { background: rgba(78, 196, 139, 0.28); }
.github-cell.level-2 { background: rgba(78, 196, 139, 0.5); }
.github-cell.level-3 { background: rgba(78, 196, 139, 0.75); }
.github-cell.level-4 {
    background: var(--accent-color);
    box-shadow: 0 0 6px rgba(104, 255, 197, 0.35);
}

.github-grid .github-cell:hover {
    outline: 1px solid rgba(255, 255, 255, 0.6);
    transform: scale(1.15);
}

.github-legend {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: var(--gh-gap);
    margin-top: 1rem;
    font-family: 'Courier New', monospace;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.45);
}

.github-legend .github-cell {
    display: inline-block;
}

.github-cta {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
}

.github-btn {
    text-decoration: none;
    font-size: 0.95rem;
    padding-block: 0.5rem;
    padding-inline: 1.1rem;
}

.github-tooltip {
    position: fixed;
    transform: translate(-50%, -100%);
    background: rgba(20, 28, 24, 0.95);
    border: 1px solid rgba(74, 178, 128, 0.3);
    border-radius: 6px;
    padding: 0.4rem 0.7rem;
    font-family: 'Courier New', monospace;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.9);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.12s;
    z-index: 200;
    white-space: nowrap;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.6);
}

.github-tooltip.visible {
    opacity: 1;
}


/* CONTACT */
.contact {
    max-width: 960px;
    margin: 0 auto;
    padding: 1rem 2rem 6rem;
}

.contact-inner {
    background: rgba(16, 24, 20, 0.4);
    backdrop-filter: blur(6 px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(74, 178, 128, 0.12);
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    padding: 2.5rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.contact-title {
    font-family: 'Lexend', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}

.contact-desc {
    font-family: 'Courier New', monospace;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
    line-height: 1.6;
    max-width: 320px;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    flex-shrink: 0;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.9rem 1.2rem;
    background: rgba(74, 178, 128, 0.04);
    border: 1px solid rgba(74, 178, 128, 0.12);
    border-radius: 10px;
    text-decoration: none;
    color: #ffffff;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
    min-width: 280px;
}

.contact-card:hover {
    background: rgba(74, 178, 128, 0.1);
    border-color: rgba(74, 178, 128, 0.35);
    transform: translateX(4px);
}

.contact-card > svg:first-child {
    width: 22px;
    height: 22px;
    color: var(--accent-color);
    flex-shrink: 0;
}

.contact-card-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    flex: 1;
}

.contact-card-label {
    font-family: 'Lexend', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
}

.contact-card-sub {
    font-family: 'Courier New', monospace;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.4);
}

.contact-arrow {
    width: 14px;
    height: 14px;
    color: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
    transition: color 0.2s, transform 0.2s;
}

.contact-card:hover .contact-arrow {
    color: var(--accent-color);
    transform: translate(2px, -2px);
}


/* RESPONSIVE */
@media (max-width: 768px) {
    /* Profile */
    .profile {
        flex-direction: column-reverse;
        align-items: center;
        text-align: center;
        padding: 1.5rem 1.5rem 1rem;
        gap: 1.2rem;
    }

    .profile-left {
        align-items: center;
    }

    .profile-info {
        align-items: center;
    }

    .profile-line {
        justify-content: center;
    }

    .profile-name {
        font-size: 2.2rem;
    }

    .profile-photo-wrapper {
        width: 100px;
        height: 100px;
    }

    .profile-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 0 -30px;
    transform: scale(1.8);
    transform-origin: center 5%;
}

    /* Hero */
    .hero {
        padding: 0 1rem 2rem;
    }

    .hero-card-body {
        flex-direction: column;
        padding: 2rem 1.5rem;
        gap: 2rem;
    }

    .hero-right {
        order: -1;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-desc {
        max-width: 100%;
    }

    .cube-glow {
        width: 180px;
        height: 180px;
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .github {
        padding: 1rem 1.5rem 3rem;
    }

    .github-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.4rem;
    }

    .github-title {
        font-size: 1.5rem;
    }

    .contact-inner {
        flex-direction: column;
        padding: 2rem 1.5rem;
        gap: 1.8rem;
    }

    .contact-links {
        width: 100%;
    }

    .contact-card {
        min-width: unset;
    }

    .contact-desc {
        max-width: 100%;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-inner .footer-col:last-child {
        grid-column: auto;
    }
}

@media (max-width: 480px) {
    .profile {
        padding: 1rem 1rem 0.5rem;
    }

    .profile-name {
        font-size: 1.8rem;
    }

    .profile-line {
        font-size: 0.75rem;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-card-body {
        padding: 1.5rem 1.2rem;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .projects {
        padding: 1.5rem 1rem 3rem;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-inner .footer-col:last-child {
        grid-column: auto;
    }
}


/*TEXTS*/
.title {
    font-size: 75px;
    text-align: center;
    color: rgb(250, 255, 251);
    font-family: 'Lexend';
    text-shadow: 0px 0px 45px #3c7c6a;
    transform: scale(90%);
    transition: 0.7s;
    font-weight: 550;
    cursor: default;
}

.title:hover {
    transform: scale(92%);
    color: rgb(107, 224, 167);
    letter-spacing: 1px;
}