@charset "UTF-8";

*, *::before, *::after {
  box-sizing: border-box;
}

/* Color Palette Default Dark/Light & Red */
:root {
  --red: #ff2a2a;
  --yellow: #ffd700;
  --black: #080808;
  --white: #ffffff;
  --bg-dark: #121212;
  --bg-light: #f7f7f7;
  --grey: #aaaaaa;
}

html {
  scroll-behavior: smooth;
}

body,
html {
  margin: 0;
  padding: 0;
  width: 100%;
  font-family: 'VT323', monospace;
  font-size: 26px;
  background-color: var(--white);
  color: var(--black);
  overflow-x: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

strong {
  color: var(--red);
  font-weight: normal;
}

/* --- TYPOGRAPHY UTILS --- */
.text-red {
  color: var(--red);
}

.text-white {
  color: var(--white);
}

.text-black {
  color: var(--black);
}

.section-title {
  font-family: 'Press Start 2P', cursive;
  font-size: 32px;
  text-align: center;
  margin: 40px 0 60px 0;
  text-transform: uppercase;
  z-index: 2;
  position: relative;
}

/* --- NAVIGATION --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
  box-sizing: border-box;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
}

.logo {
  display: flex;
  align-items: center;
}

.pixel-heart {
  width: 32px;
  height: 32px;
  background-color: var(--red);
  clip-path: polygon(10% 30%, 30% 10%, 50% 30%, 70% 10%, 90% 30%,
      90% 50%, 50% 90%, 10% 50%);
  image-rendering: pixelated;
  margin: 0 auto;
}

.pixel-heart.bounce {
  animation: bounce 1s infinite alternate;
}

@keyframes bounce {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(10px);
  }
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 40px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--white);
  font-family: 'Press Start 2P', cursive;
  font-size: 14px;
  text-transform: uppercase;
  transition: color 0.2s;
  text-shadow: 2px 2px 0 var(--black);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--red);
}

/* --- LANGUAGE SWITCHER --- */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 20px;
  font-family: 'Press Start 2P', cursive;
  font-size: 14px;
  color: var(--white);
  text-shadow: 2px 2px 0 var(--black);
}

.lang-btn {
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 0;
  font-family: inherit;
  font-size: inherit;
  transition: color 0.2s;
}

.lang-btn:hover,
.lang-btn.active {
  color: var(--red);
}

.lang-divider {
  color: var(--grey);
}


/* --- MAIN BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Press Start 2P', cursive;
  text-decoration: none;
  border: 4px solid var(--black);
  background-color: transparent;
  color: var(--black);
  transition: all 0.2s;
  cursor: pointer;
}

.btn-primary {
  padding: 15px 30px;
  font-size: 16px;
  text-transform: uppercase;
  box-shadow: 4px 4px 0 0 var(--red);
}

.btn-primary:active {
  transform: translate(4px, 4px);
  box-shadow: 0px 0px 0 0 var(--red);
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 10px 10px 0 0 var(--red);
  color: var(--black);
}

.btn-outline {
  padding: 15px 30px;
  font-size: 16px;
  border-color: var(--red);
  color: var(--red);
  background-color: transparent;
  box-shadow: 4px 4px 0 0 var(--black);
}

.btn-outline:active {
  transform: translate(4px, 4px);
  box-shadow: 0 0 0 0 var(--black);
}

.btn-outline:hover {
  background-color: var(--red);
  color: var(--white);
}

.btn-icon {
  width: 50px;
  height: 50px;
  padding: 0;
  background-color: var(--white);
  border: 4px solid var(--black);
  box-shadow: 4px 4px 0 0 var(--red);
}

.btn-icon:hover {
  transform: translateY(-4px);
  box-shadow: 10px 10px 0 0 var(--red);
}

.btn-icon:active {
  transform: translate(4px, 4px);
  box-shadow: 0px 0px 0 0 var(--red);
}

/* ICONS */
.icon-email-small {
  width: 24px;
  height: 16px;
  background-color: var(--black);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 50%, 0 100%);
}

.icon-linkedin-small {
  width: 20px;
  height: 20px;
  background-color: var(--black);
  clip-path: polygon(20% 0, 80% 0, 80% 100%, 20% 100%);
}

.icon-time {
  width: 16px;
  height: 16px;
  background-color: #f39c12;
  /* Golden orange icon color from original */
  clip-path: circle(50% at 50% 50%);
  /* Simplified clock face */
  display: inline-block;
  margin-right: 8px;
  vertical-align: text-bottom;
}

.icon-link {
  width: 16px;
  height: 16px;
  background-color: var(--black);
  clip-path: polygon(10% 0, 90% 0, 100% 30%, 100% 70%, 90% 100%, 10% 100%, 0 70%, 0 30%);
  display: inline-block;
  margin-right: 8px;
  vertical-align: text-bottom;
}

/* --- SECTION: HERO --- */
.hero {
  min-height: 100vh;
  display: flex;
  position: relative;
  overflow: hidden;
}

/* Left Pane */
.hero-left {
  flex: 70;
  background-color: var(--white);
  color: var(--black);
  display: flex;
  align-items: center;
  padding: 120px 80px 80px 80px;
  box-sizing: border-box;
  position: relative;
}

/* Background elements removed for simplicity */

.hero-text-content {
  max-width: 1100px;
  width: 90%;
  margin-left: 15vw;
  margin-right: auto;
  position: relative;
  z-index: 2;
  text-align: left;
}

.hero-title {
  font-family: 'Press Start 2P', cursive;
  font-size: 38px;
  color: var(--black);
  margin: 0 0 10px 0;
  line-height: 1.3;
}

.hero-subtitle {
  font-family: 'Press Start 2P', cursive;
  font-size: 40px;
  color: var(--red);
  margin: 0 0 40px 0;
  line-height: 1.3;
}

.hero-desc {
  font-size: 26px;
  line-height: 1.6;
  margin-bottom: 25px;
  text-align: justify;
  text-align-last: left;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-top: 50px;
  align-items: center;
}

/* Software icons removed as requested */

/* Right Pane */
.hero-right {
  flex: 30;
  background-color: var(--white);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 50px 80px 50px;
  box-sizing: border-box;
}

/* Removed scatter-container */

/* Scroll indicator has been removed */

/* DIVIDERS */
.pixel-wave-divider {
  width: 100%;
  height: 32px;
  background-image:
    linear-gradient(45deg, var(--bg-dark) 25%, transparent 25%, transparent 75%, var(--bg-dark) 75%, var(--bg-dark)),
    linear-gradient(45deg, var(--bg-dark) 25%, transparent 25%, transparent 75%, var(--bg-dark) 75%, var(--bg-dark));
  background-size: 32px 32px;
  background-position: 0 0, 16px 16px;
  background-color: var(--bg-light);
  z-index: 5;
  position: relative;
}

.pixel-wave-divider.down {
  transform: scaleY(-1);
  background-color: var(--bg-light);
  /* Assuming the next section is light */
}

/* --- SECTION: PROJECTS --- */
.projects-section {
  background-color: var(--bg-light);
  padding: 80px 40px;
  position: relative;
  min-height: 80vh;
  overflow: visible;
}



.project-card {
  width: 380px;
  flex-shrink: 0;
  background-color: var(--white);
  border: 6px solid var(--black);
  border-radius: 40px;
  overflow: hidden;
  color: var(--black);
  display: flex;
  flex-direction: column;
  box-shadow: 10px 10px 0 0 var(--black);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.project-card.wip-card {
  cursor: default;
}

.view-more.wip-status {
  color: var(--yellow);
  font-family: 'Press Start 2P', cursive;
  font-size: 12px;
  opacity: 0.8;
}

.wip-group label {
  color: var(--black);
}

.wip-group input[type="checkbox"]:checked + label {
  color: var(--red);
  font-weight: bold;
}

.project-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 15px 15px 0 0 var(--red);
}

.project-image {
  height: 250px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 8px solid var(--black);
}

.play-btn {
  display: none;
}

.project-info {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.project-name {
  font-family: 'Press Start 2P', cursive;
  font-size: 20px;
  margin: 0 0 15px 0;
  text-align: center;
  line-height: 1.4;
  color: var(--red);
}

.project-meta {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.meta-tag {
  background: var(--bg-light);
  border: 2px solid var(--black);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  color: var(--black);
}

.project-desc {
  font-size: 24px;
  line-height: 1.4;
  margin-bottom: 20px;
  text-align: justify;
}

.project-role {
  font-size: 20px;
  font-style: italic;
  margin-bottom: 30px;
  flex-grow: 1;
  color: var(--grey);
}

.view-more {
  text-align: center;
  font-family: 'Press Start 2P', cursive;
  font-size: 12px;
  color: var(--red);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.view-more:hover {
  opacity: 1;
}

.projects-disclaimer {
  text-align: center;
  max-width: 800px;
  margin: 40px auto 10px auto;
  font-size: 22px;
  line-height: 1.5;
  color: var(--black);
}

.projects-disclaimer a {
  color: var(--red);
  text-decoration: underline;
  font-weight: bold;
}

.projects-disclaimer a:hover {
  color: var(--black);
}


/* --- SECTION: ABOUT --- */
.about-section {
  background-color: var(--white);
  padding: 80px 40px;
  position: relative;
  min-height: 100vh;
  z-index: 10;
}

/* GLOBAL STARDUST BACKGROUND */
.global-particles {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 12vw;
  /* take up some space on right and left */
  z-index: 990;
  /* flow over sections */
  pointer-events: none;
  overflow: hidden;
}

.global-particles.left {
  left: 0;
}

.global-particles.right {
  right: 0;
}

.star-dust {
  position: absolute;
  background-color: var(--black);
  animation: stardust-float linear infinite;
  opacity: 0;
}

@keyframes stardust-float {
  0% {
    transform: translateY(110vh);
    opacity: 0;
  }

  10% {
    opacity: 0.8;
  }

  90% {
    opacity: 0.8;
  }

  100% {
    transform: translateY(-10vh);
    opacity: 0;
  }
}

.about-content {
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
  gap: 60px;
  position: relative;
  z-index: 2;
}

/* Left side photo */
.about-left {
  flex: 30;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-photo-wrapper {
  width: 300px;
  height: auto;
  position: relative;
  margin-bottom: 40px;
}

.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-resumes {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 250px;
}

/* Right side skills matrix */
.about-right {
  flex: 70;
  display: flex;
  gap: 40px;
}

.skill-card {
  background-color: var(--white);
  border: 4px solid var(--black);
  border-radius: 30px;
  padding: 30px;
  box-shadow: 8px 8px 0 0 var(--black);
  position: relative;
}

.compact-card {
  padding: 20px;
}

.main-card {
  flex: 1;
}

.skill-side-cards {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.small-card {
  padding: 30px;
}

.skill-title {
  font-family: 'Press Start 2P', cursive;
  font-size: 22px;
  color: var(--red);
  margin: 0 0 20px 0;
  line-height: 1.4;
}

.skill-sub {
  margin-top: 20px;
  color: var(--black);
}

.skill-subtitle {
  font-family: 'Press Start 2P', cursive;
  font-size: 16px;
  margin: 0 0 15px 0;
  color: var(--black);
}

.skill-icons-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 15px;
}

.skill-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  width: 60px;
}

.skill-icon-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  image-rendering: auto;
}

.skill-card p {
  font-size: 23px;
  line-height: 1.6;
  color: #444;
  text-align: justify;
  text-align-last: left;
}

.skill-icon-name {
  font-size: 14px;
  color: var(--black);
  text-align: center;
}

.favorite-games-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.favorite-game-item {
  font-size: 22px;
  color: var(--black);
  text-align: justify;
  text-align-last: left;
}

.highlight-text {
  color: var(--black);
  font-weight: bold;
}

/* Hobbies */
.hobbies-box {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.hobbies-title {
  font-family: 'Press Start 2P', cursive;
  font-size: 32px;
  color: var(--black);
  margin-bottom: 40px;
  text-align: center;
}

.hobbies-subtitle {
  font-family: 'VT323', monospace;
  font-size: 24px;
  color: var(--grey);
  display: block;
  margin-top: 10px;
}

.hobbies-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.hobbies-list li {
  text-align: center;
  font-size: 24px;
}

.interest-category {
  color: var(--red);
}

/* --- SECTION: CONTACT --- */
.contact-section {
  background-color: var(--bg-light);
  padding: 100px 40px;
  text-align: center;
  position: relative;
  min-height: 60vh;
}

.contact-header {
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.contact-desc {
  font-size: 28px;
  margin-bottom: 60px;
  color: var(--red);
  position: relative;
  z-index: 2;
}

.contact-links-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.contact-big-btn {
  display: flex;
  align-items: center;
  padding: 15px 30px;
  background: var(--white);
  border: 4px solid var(--black);
  border-radius: 20px;
  text-decoration: none;
  color: var(--black);
  font-size: 24px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 6px 6px 0 0 var(--red);
}

.contact-big-btn:hover {
  transform: translateY(-4px);
  box-shadow: 10px 10px 0 0 var(--red);
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
}

.email-bg {
  background-color: var(--red);
}

.linkedin-bg {
  background-color: #0077B5;
}

/* Slight standard brand color or stay Red */
.itch-bg {
  background-color: var(--black);
}

.icon-email-large {
  width: 24px;
  height: 16px;
  background-color: var(--white);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 50%, 0 100%);
}

.icon-linkedin-large {
  width: 20px;
  height: 20px;
  background-color: var(--white);
  clip-path: polygon(20% 0, 80% 0, 80% 100%, 20% 100%);
}

.contact-footer {
  font-family: 'Press Start 2P', cursive;
  font-size: 16px;
  color: var(--red);
  margin-top: 50px;
}

/* Projects Carousel Container */
.carousel-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  overflow: hidden; /* Prevent peeking outside the main boundary */
}

.projects-carousel {
  display: flex;
  gap: 30px;
  overflow-x: hidden; /* Prevent peeking, lock to exact width */
  overflow-y: hidden;
  padding: 20px 20px 40px 10px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  width: 1230px; /* 3*380 + 2*30 + 30px for shadows/padding */
  flex: none;
  flex-wrap: nowrap;
  /* Hide scrollbar IE/Edge */
  -ms-overflow-style: none;
  scrollbar-width: none;
  /* Hide scrollbar Firefox */
}

@media (max-width: 1440px) {
  .projects-carousel {
    width: 820px; /* 2*380 + 30 + 30px for shadows/padding */
  }
}

@media (max-width: 1000px) {
  .projects-carousel {
    width: 410px; /* 380 + 30px for shadows/padding */
  }
}

.project-card {
  scroll-snap-align: start;
}

.projects-carousel::-webkit-scrollbar {
  display: none;
  /* Hide scrollbar Chrome/Safari */
}

.carousel-arrow {
  width: 60px;
  height: 60px;
  background-color: var(--white);
  border: 4px solid var(--black);
  border-radius: 50%;
  box-shadow: 4px 4px 0 0 var(--black);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--black);
  transition: transform 0.2s, box-shadow 0.2s;
  z-index: 10;
  flex-shrink: 0;
}

.carousel-arrow:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 0 var(--red);
  color: var(--red);
}

.carousel-arrow:active {
  transform: translate(2px, 2px);
  box-shadow: 0 0 0 0 var(--black);
}

.carousel-arrow svg {
  width: 32px;
  height: 32px;
}

/* Modal Styling */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(8, 8, 8, 0.9);
  z-index: 10000;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(5px);
}

.modal.active {
  display: flex;
}

.modal-content {
  background-color: var(--white);
  border: 8px solid var(--black);
  border-radius: 40px;
  padding: 40px;
  max-width: 400px;
  width: 90%;
  box-shadow: 15px 15px 0 0 var(--red);
  position: relative;
}

.modal-content.wide {
  max-width: 800px;
}

.modal-title {
  font-family: 'Press Start 2P', cursive;
  font-size: 18px;
  color: var(--red);
  margin-bottom: 30px;
  text-align: center;
}

.modal-input {
  width: 100%;
  padding: 15px;
  border: 4px solid var(--black);
  border-radius: 15px;
  font-family: inherit;
  font-size: 18px;
  margin-bottom: 25px;
  box-sizing: border-box;
}

.modal-form .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.modal-form input,
.modal-form textarea {
  width: 100%;
  padding: 12px;
  border: 3px solid var(--black);
  border-radius: 12px;
  font-family: inherit;
  font-size: 16px;
  box-sizing: border-box;
}

.modal-form textarea {
  height: 100px;
  grid-column: span 2;
  resize: none;
}

.modal-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.btn-pixel {
  padding: 12px 25px;
  font-family: 'Press Start 2P', cursive;
  font-size: 12px;
  background-color: var(--white);
  border: 4px solid var(--black);
  box-shadow: 4px 4px 0 0 var(--black);
  cursor: pointer;
  transition: all 0.2s;
}

.btn-pixel:hover {
  background-color: var(--red);
  color: var(--white);
  box-shadow: 6px 6px 0 0 var(--black);
  transform: translate(-2px, -2px);
}

.btn-pixel:active {
  transform: translate(2px, 2px);
  box-shadow: 0 0 0 0 var(--black);
}

.btn-pixel.small {
  padding: 8px 15px;
  font-size: 10px;
}

/* Rich Text & Alignment */
.text-highlight-red {
  color: var(--red);
  font-weight: bold;
}

.align-left {
  text-align: left;
}

.align-center {
  text-align: center;
}

.align-right {
  text-align: right;
}

.align-justify {
  text-align: justify;
}

.detail-img-wrapper {
  margin: 20px 0;
  text-align: center;
}

.detail-img-wrapper img {
  max-width: 100%;
  border: 4px solid var(--black);
  border-radius: 20px;
  box-shadow: 8px 8px 0 0 var(--red);
}

/* Floating Navigation */
.floating-back-btn {
  position: fixed;
  bottom: 40px;
  left: 40px;
  background-color: var(--white);
  border: 4px solid var(--black);
  padding: 10px 20px;
  border-radius: 50px;
  box-shadow: 4px 4px 0 0 var(--black);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Press Start 2P', cursive;
  font-size: 12px;
  color: var(--black);
  text-decoration: none;
  z-index: 1000;
  transition: all 0.2s;
}

.floating-back-btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 0 var(--red);
  color: var(--red);
}

.floating-back-btn svg {
  width: 20px;
  height: 20px;
}

/* Cleanup */
.admin-active .project-card .play-btn {
  display: none;
}

.card-actions {
  position: absolute;
  top: 15px;
  right: 15px;
  display: flex;
  gap: 10px;
  z-index: 100;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}

.admin-active .card-actions {
  opacity: 1;
  pointer-events: auto;
}

.card-action-btn {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 2px solid var(--black);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background: var(--white);
  color: var(--black);
  transition: transform 0.2s, background-color 0.2s;
  box-shadow: 2px 2px 0 0 var(--black);
}

.card-action-btn:hover {
  transform: scale(1.1);
}

.card-action-btn.delete:hover {
  background-color: #ff4444;
  color: white;
}

.card-action-btn.edit:hover {
  background-color: #44aaff;
  color: white;
}

.card-action-btn.move-left:hover,
.card-action-btn.move-right:hover {
  background-color: #4caf50;
  color: white;
}

.card-action-btn svg {
  width: 18px;
  height: 18px;
}

.admin-active #add-project-wrapper,
.admin-active #export-project-wrapper {
  display: block;
}

#add-project-wrapper,
#export-project-wrapper {
  display: none;
}

.invisible-admin-btn {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 100px;
  opacity: 0;
  z-index: 9999;
  border: none;
  background: transparent;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 1200px) {
  .about-content {
    flex-direction: column;
    align-items: center;
  }

  .about-left,
  .about-right {
    width: 100%;
  }

  .global-particles {
    display: none;
    /* Might want to hide on very small screens for perf */
  }
}

/* MOUSE PARTICLES */
.mouse-particle {
  position: absolute;
  background-color: var(--black);
  pointer-events: none;
  z-index: 9999;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
  }

  .hero-left {
    flex: none;
    width: 100%;
    padding: 120px 40px 60px 40px;
  }

  .hero-left::after {
    display: none;
  }

  .hero-right {
    flex: none;
    width: 100%;
    padding: 80px 40px;
  }

  .hero-text-content {
    margin: 0 auto;
  }

  .navbar {
    padding: 20px;
    background: var(--black);
  }

  .nav-links {
    gap: 15px;
  }

  .nav-links a {
    font-size: 10px;
  }

  .skill-card {
    padding: 20px;
  }

  .contact-links-grid {
    flex-direction: column;
    align-items: center;
  }
}