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




/* --- Ultra Light --- */
@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/helvetica-neue-5/HelveticaNeueUltraLight.otf') format('opentype');
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/helvetica-neue-5/HelveticaNeueUltraLightItalic.otf') format('opentype');
  font-weight: 100;
  font-style: italic;
}

/* --- Thin --- */
@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/helvetica-neue-5/HelveticaNeueThin.otf') format('opentype');
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/helvetica-neue-5/HelveticaNeueThinItalic.otf') format('opentype');
  font-weight: 200;
  font-style: italic;
}

/* --- Light --- */
@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/helvetica-neue-5/HelveticaNeueLight.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/helvetica-neue-5/HelveticaNeueLightItalic.otf') format('opentype');
  font-weight: 300;
  font-style: italic;
}

/* --- Roman (Regular) --- */
@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/helvetica-neue-5/HelveticaNeueRoman.otf') format('opentype');
  font-weight: 400; /* or 'normal' */
  font-style: normal;
}

/* --- Medium --- */
@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/helvetica-neue-5/HelveticaNeueMedium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/helvetica-neue-5/HelveticaNeueMediumItalic.otf') format('opentype');
  font-weight: 500;
  font-style: italic;
}

/* --- Bold --- */
@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/helvetica-neue-5/HelveticaNeueBold.otf') format('opentype');
  font-weight: 700; /* or 'bold' */
  font-style: normal;
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/helvetica-neue-5/HelveticaNeueBoldItalic.otf') format('opentype');
  font-weight: 700; /* or 'bold' */
  font-style: italic;
}

/* --- Heavy --- */
@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/helvetica-neue-5/HelveticaNeueHeavy.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/helvetica-neue-5/HelveticaNeueHeavyItalic.otf') format('opentype');
  font-weight: 800;
  font-style: italic;
}

/* --- Black --- */
@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/helvetica-neue-5/HelveticaNeueBlack.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/helvetica-neue-5/HelveticaNeueBlackItalic.otf') format('opentype');
  font-weight: 900;
  font-style: italic;
}

















body {
  font-family: "Poppins", sans-serif;
  background-color: #232323; /* match navbar background */
  color: #333;
  line-height: 1.6;
}

header {
  background: #232323;
  color: white;
  padding: 0; /* remove extra band around navbar */
  position: sticky;
  top: 0;
  z-index: 100;
  transition: transform 0.25s ease;
}

.navbar {
  width: 100%;
  background-color: #232323;
  padding: 0rem 8vw; 
  box-sizing: border-box;
}

/* 🔹 Listă de navigare */
.navbar ul {
  list-style: none;
  display: flex;
  justify-content: space-between; /* distanță egală între elemente */
  align-items: center;
  margin: 0;
  padding: 0;
}

.navbar a {
  font-family: 'Helvetica Neue', sans-serif;
  color: white;
  text-decoration: none;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  display: inline-block; 
  padding: 0.25rem 0; 
}

.navbar a:hover {
  transform: scale(1.15); 
}


.navbar a.active {
  font-size: 13px;
  font-weight: 400;
  color: white;
  transform: none;
  cursor: default;
}
.hero {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  text-align: center;
  padding-top: 100px; 
  height:100vh;
  position: relative; /* Add relative positioning for trail container */
}

.main-title {
  font-family: 'Helvetica Neue', sans-serif;
  font-weight: 800; /* Heavy */
  font-size: 5rem;
  color: #ff008c;
  letter-spacing: 3px;
  text-align: center;
  margin-top: 5rem;
  letter-spacing: -2px;
  position: relative;
  z-index: 2; /* Ensure title is above trail container */
  cursor: pointer; /* Add cursor to indicate interactivity */
}

.profile-pic {
  width: 200px;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.cv-section, .contact {
  width: 90%;
  max-width: 800px;
  margin: 2rem auto;
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  color: #000;
  font-family: "Segoe UI", Calibri, sans-serif;
}

.cv-section > h1 {
  text-align: center;
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 2rem;
  letter-spacing: 1px;
  border-bottom: 3px solid #000;
  display: inline-block;
  padding-bottom: 0.5rem;
}

.cv-section .cv-block h2 {
  margin-top: 1.8rem;
  font-size: 1.3rem;
  color: #111;
  position: relative;
}

.cv-section .cv-block h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: #000;
  margin-top: 5px;
  border-radius: 2px;
}

.cv-block {
  margin-bottom: 1.8rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid #e5e5e5;
}

.cv-section p {
  line-height: 1.7;
  text-align: justify;
  margin-top: 0.5rem;
}

.cv-section ul {
  margin-left: 1.5rem;
  line-height: 1.7;
}

.cv-section ul li {
  margin-bottom: 0.4rem;
}

.cv-section a {
  color: #0056b3;
  text-decoration: none;
}

.cv-section a:hover {
  text-decoration: underline;
}

.cv-label {
  font-weight: 600;
  display: inline-block;
}



.download-btn,
.download-btn:link,
.download-btn:visited,
.download-btn:hover,
.download-btn:active,
.download-btn:focus,button {
  display: block;
  width: fit-content;
  margin: 2rem auto 0;
  padding: 10px 25px;
  background-color: #000;
  color: #fff !important;           /* forțează text alb */
  border: none;
  border-radius: 8px;
  text-decoration: none !important; /* forțează eliminarea sublinierii */
  transition: background-color 0.3s, transform 0.2s;
  font-weight: 500;
  cursor: pointer;
}

.download-btn:hover,
.download-btn:active,
.download-btn:focus,button:hover {
  background-color: #ff008c;        /* roz la hover */
  transform: scale(1.05);
  color: #fff !important;
  text-decoration: none !important; /* sigur că nu apare sublinierea */
}



.references {
  text-align: center;
  font-style: italic;
  margin-top: 2rem;
  color: #444;
}
footer {
  
  text-align: center;
  padding: 1rem;
  background: #222;
  color: white;
  margin-top: 22rem;
}
.bottom-text {
  position: absolute;
  bottom: 40px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 50px;
}


.bottom-text p {
  font-family: 'Helvetica Neue', sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  max-width: 600px;
  line-height: 1.4;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 300;
  letter-spacing: 1px;
  text-align: justify; 
  text-justify: inter-word;
}


.year {
  font-size: 0.9rem;
  font-weight: 400;
  color: #ffffff;
  transform: rotate(-90deg);
  transform-origin: bottom right;
  position: absolute;
  right: 40px;
  bottom: 30px;
  opacity: 0.8;
}

.main-body {
  background-color: #232323;
  min-height: 100vh;
  padding-bottom: 4rem;
}

.container_body {
  display: grid;
  color: #ffffff;
  font-family: 'Helvetica Neue', sans-serif;
  height: calc(100vh - 8rem);
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: 1.5fr 0.5fr 0.5fr;
  gap: 3rem 4rem;
  grid-auto-flow: row;
  grid-template-areas:
    "image-left header"
    "about      ai-photo"
    "about      image-right";
  margin: 12rem 8rem 0; 
  align-items: start; 
  max-width: 1800px;
  margin-left: auto;
  margin-right: auto;
}



.image-tall {
  grid-area: image-left;
  justify-self: start; 
  align-self: start; 
  min-height: 300px;
}

.about-section {
  grid-area: about;
  justify-self: start; 
  max-width: 70ch; 
  align-self: start;
  padding-left: 5rem;
  padding-right: 5rem;
}

.about-section h2 {
  font-family: 'Helvetica Neue', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: #ff008c;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.about-section p {
  font-family: 'Helvetica Neue', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.8;
  color: #e0e0e0;
  text-align: justify;
}

.image-wide {
  width: 100%;
  min-height: 200px;
  margin-top: 1rem;
}




.header-content {
  grid-area: header;
  display: flex;
  flex-direction: column;
  justify-content: center;
  justify-self: center; 
  align-items: center; 
  align-self: start; 
}

.header-content h1 {
  font-family: 'Helvetica Neue', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.image-square {
  grid-area: image-right;
  justify-self: end; 
  align-self: start; 
  min-height: 200px;
}

.ai-photo-container {
  grid-area: ai-photo;
  justify-self: center;
  align-self: center;
  position: relative;
}

.ai-photo {
  width: 400px;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.ai-photo:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}


/* ========================================
   HOMEPAGE RESPONSIVE BREAKPOINTS
   ======================================== */

/* Very Large Screens (above 1920px) */
@media (min-width: 1921px) {
  .container_body {
    margin: 12rem auto 0;
    max-width: 1600px;
    gap: 4rem 5rem;
  }
  
  .main-title {
    font-size: 5.5rem;
  }
}

/* Large Tablets and Small Laptops (1024px - 1365px) */
@media (max-width: 1365px) and (min-width: 1024px) {
  .container_body {
    margin: 10rem 6rem 0;
    gap: 2rem 3rem;
  }
  
  .about-section {
    padding-left: 4rem;
    padding-right: 4rem;
    max-width: 65ch;
  }
  
  .ai-photo {
    width: 350px;
    height: 350px;
  }
  
  .main-title {
    font-size: 4.5rem;
  }
  
  .bottom-text {
    padding: 0 40px;
  }
  
  .bottom-text p {
    font-size: 0.85rem;
  }
  
  .my-work-section {
    margin-top: 12rem;
  }
}

/* Tablets (768px - 1023px) */
@media (max-width: 1023px) and (min-width: 768px) {
  .navbar {
    padding: 0rem 4vw;
  }
  
  .navbar a {
    font-size: 11px;
    letter-spacing: 0.5px;
  }
  
  .hero {
    padding: 1.5rem;
    padding-top: 80px;
    min-height: 90vh;
  }
  
  .main-title {
    font-size: 4rem;
    margin-top: 3rem;
  }
  
  .bottom-text {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 0 2rem;
    bottom: 30px;
  }
  
  .bottom-text p {
    font-size: 0.8rem;
    text-align: center;
    max-width: 100%;
  }
  
  .year {
    position: relative;
    transform: none;
    right: auto;
    bottom: auto;
    opacity: 1;
  }
  
  .container_body {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas:
      "header"
      "image-left"
      "about"
      "ai-photo"
      "image-right";
    gap: 2rem;
    margin: 6rem 4rem 4rem;
    height: auto;
    min-height: auto;
    max-width: 100%;
  }
  
  .main-body {
    padding-bottom: 2rem;
  }
  
  .header-content {
    justify-self: center;
    align-items: center;
  }
  
  .header-content h1 {
    font-size: 2rem;
  }
  
  .image-tall,
  .image-square,
  .image-wide {
    min-height: 200px;
    width: 100%;
  }
  
  .ai-photo-container {
    justify-self: center;
    align-self: center;
  }
  
  .ai-photo {
    width: 300px;
    height: 300px;
  }
  
  .about-section {
    max-width: 100%;
    padding-left: 3rem;
    padding-right: 3rem;
  }
  
  .about-section h2 {
    font-size: 1.5rem;
  }
  
  .my-work-section {
    margin-top: 8rem;
    padding: 3rem 4rem;
  }
  
  .work-title {
    font-size: 2.5rem;
  }
  
  .carousel-item {
    flex: 0 0 200px;
    height: 150px;
  }
  
  footer {
    margin-top: 8rem;
  }
}

/* Mobile Devices (below 768px) */
@media (max-width: 767px) {
  .navbar {
    padding: 0.5rem 2vw;
  }
  
  .navbar ul {
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
  }
  
  .navbar a {
    font-size: 10px;
    padding: 0.5rem 0.3rem;
    letter-spacing: 0.3px;
  }
  
  .hero {
    padding: 1rem;
    padding-top: 70px;
    min-height: 85vh;
    height: auto;
  }
  
  .main-title {
    font-size: 3rem;
    margin-top: 2rem;
    letter-spacing: -1px;
  }
  
  .bottom-text {
    position: relative;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem 1rem 1rem;
    bottom: auto;
    width: 100%;
  }
  
  .bottom-text p {
    font-size: 0.7rem;
    text-align: center;
    line-height: 1.5;
    max-width: 100%;
    padding: 0 1rem;
  }
  
  .year {
    position: relative;
    transform: none;
    right: auto;
    bottom: auto;
    opacity: 1;
    font-size: 0.8rem;
  }
  
  .container_body {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 4rem 1.5rem 4rem;
    height: auto;
    max-width: 100%;
  }
  
  .main-body {
    padding-bottom: 2rem;
  }
  
  .header-content {
    order: 1;
  }
  
  .header-content h1 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  
  .image-tall {
    order: 2;
    width: 100%;
    min-height: 250px;
  }
  
  .about-section {
    order: 3;
    max-width: 100%;
    padding-left: 2rem;
    padding-right: 2rem;
  }
  
  .about-section h2 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }
  
  .about-section p {
    font-size: 0.9rem;
    line-height: 1.6;
  }
  
  .ai-photo-container {
    order: 4;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .ai-photo {
    width: 100%;
    max-width: 300px;
    height: auto;
    aspect-ratio: 1;
  }
  
  .image-square {
    order: 5;
    width: 100%;
    min-height: 200px;
  }
  
  .image-wide {
    width: 100%;
    min-height: 150px;
    margin-top: 1rem;
  }
  
  .my-work-section {
    margin-top: 6rem;
    padding: 2rem 1.5rem;
  }
  
  .work-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  .carousel-container {
    border-radius: 10px;
  }
  
  .carousel-item {
    flex: 0 0 150px;
    height: 120px;
  }
  
  footer {
    margin-top: 4rem;
    padding: 1rem;
    font-size: 0.9rem;
  }
}

/* Small Mobile Devices (below 480px) */
@media (max-width: 479px) {
  .navbar a {
    font-size: 9px;
    padding: 0.4rem 0.2rem;
  }
  
  .main-title {
    font-size: 2.5rem;
  }
  
  .bottom-text p {
    font-size: 0.65rem;
    padding: 0;
  }
  
  .container_body {
    margin: 3rem 1rem 3rem;
    gap: 1.5rem;
  }
  
  .header-content h1 {
    font-size: 1.5rem;
  }
  
  .about-section {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  
  .about-section h2 {
    font-size: 1.2rem;
  }
  
  .about-section p {
    font-size: 0.85rem;
  }
  
  .ai-photo {
    max-width: 250px;
  }
  
  .work-title {
    font-size: 1.8rem;
  }
  
  .carousel-item {
    flex: 0 0 120px;
    height: 100px;
  }
  
  .my-work-section {
    margin-top: 5rem;
    padding: 1.5rem 1rem;
  }
}


.trail-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; 
  overflow: hidden;
  z-index: 1; 
}

.trail {
  position: absolute;
  width: 80px;
  height: 80px;
  opacity: 0.9;
  transform: translate(-50%, -50%) scale(1);
  transition: opacity 0.6s ease, transform 0.6s ease;
  border-radius: 8px; 
}

.trail.fade {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.7);
}

.trail-fallback {
  position: absolute;
  transform: translate(-50%, -50%) scale(1);
  transition: opacity 0.6s ease, transform 0.6s ease;
}


.my-work-section {
  margin-top: 15rem;
  padding: 4rem 8rem;
  background-color: #1a1a1a;
  color: white;
}

.work-container {

  max-width: 1200px;
  margin: 0 auto;
}

.work-title {
  font-family: 'Helvetica Neue', sans-serif;
  font-weight: 800;
  font-size: 3rem;
  color: #ff008c;
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: -1px;
}

.carousel-container {
  
  overflow: hidden;
  position: relative;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.carousel-track {
  display: flex;
  animation: scroll 20s linear infinite;
  gap: 1rem;
}

.carousel-track:hover {
  animation-play-state: paused;
}

.carousel-item {
  flex: 0 0 250px;
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.carousel-item:hover {
  transform: scale(1.05);
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* About Page Styles */
.about-page-section {
  min-height: calc(100vh - 200px);
  padding: 4rem 8rem;
  background-color: #232323;
  color: #ffffff;
}

.about-page-container {
  max-width: 1000px;
  margin: 0 auto;
}

.about-page-title {
  font-family: 'Helvetica Neue', sans-serif;
  font-weight: 800;
  font-size: 3.5rem;
  color: #ff008c;
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: -1px;
}

.about-content-block {
  margin-bottom: 3rem;
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border-left: 4px solid #ff008c;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-content-block:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(255, 0, 140, 0.2);
}

.about-content-block h2 {
  font-family: 'Helvetica Neue', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: #ff008c;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.about-content-block p {
  font-family: 'Helvetica Neue', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.8;
  color: #e0e0e0;
  margin-bottom: 1rem;
  text-align: justify;
}

.about-content-block p:last-child {
  margin-bottom: 0;
}

/* Portfolio Page Styles */
.portfolio-page-section {
  min-height: calc(100vh - 200px);
  padding: 4rem 8rem;
  background-color: #232323;
  color: #ffffff;
}

.portfolio-page-container {
  max-width: 1200px;
  margin: 0 auto;
}

.portfolio-page-title {
  font-family: 'Helvetica Neue', sans-serif;
  font-weight: 800;
  font-size: 3.5rem;
  color: #ff008c;
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: -1px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.portfolio-item {
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 0, 140, 0.2);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  min-height: 300px;
}

.portfolio-item:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 30px rgba(255, 0, 140, 0.3);
  border-color: #ff008c;
  z-index: 10;
}

.portfolio-hover-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  width: calc(100% - 2rem);
  height: calc(100% - 2rem);
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  border-radius: 8px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: rgba(35, 35, 35, 0.98);
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 0, 140, 0.3);
}

.portfolio-item:hover .portfolio-hover-image {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1.05);
  border-color: rgba(255, 0, 140, 0.6);
}

/* Hide content when hovering over items with images */
.portfolio-item[data-project]:hover h2,
.portfolio-item[data-project]:hover .portfolio-description,
.portfolio-item[data-project]:hover .portfolio-tags,
.portfolio-item[data-project]:hover .portfolio-achievement {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-item[data-project] h2,
.portfolio-item[data-project] .portfolio-description,
.portfolio-item[data-project] .portfolio-tags,
.portfolio-item[data-project] .portfolio-achievement {
  position: relative;
  z-index: 1;
  transition: opacity 0.3s ease;
}

.portfolio-item h2 {
  font-family: 'Helvetica Neue', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #ff008c;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.portfolio-description {
  font-family: 'Helvetica Neue', sans-serif;
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #e0e0e0;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  text-align: justify;
}

.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.tag {
  padding: 0.4rem 0.8rem;
  background-color: rgba(255, 0, 140, 0.2);
  color: #ff008c;
  border-radius: 20px;
  font-family: 'Helvetica Neue', sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 0, 140, 0.4);
}

.portfolio-achievement {
  font-family: 'Helvetica Neue', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  color: #ffd700;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design for About and Portfolio Pages */
@media (max-width: 1024px) {
  .about-page-section,
  .portfolio-page-section {
    padding: 3rem 4rem;
  }
  
  .portfolio-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  
  .portfolio-item {
    min-height: 280px;
  }
  
  .portfolio-hover-image {
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  .about-page-section,
  .portfolio-page-section {
    padding: 2rem 2rem;
  }
  
  .about-page-title,
  .portfolio-page-title {
    font-size: 2.5rem;
  }
  
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  
  .about-content-block {
    padding: 1.5rem;
  }
  
  .portfolio-item {
    padding: 1.5rem;
    min-height: 250px;
  }
  
  .portfolio-hover-image {
    padding: 1rem;
    transform: translate(-50%, -50%) scale(0.9);
  }
  
  .portfolio-item:hover .portfolio-hover-image {
    transform: translate(-50%, -50%) scale(1);
  }
}