/*-----------------------------------*\
  #style.css
\*-----------------------------------*/
/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/
:root {
  /* colors */
  /* gradient */

  --bg-gradient-onyx: linear-gradient(
    to bottom right, 
    hsl(240, 1%, 25%) 3%, 
    hsl(0, 0%, 19%) 97%
  );
  --bg-gradient-jet: linear-gradient(
    to bottom right, 
    hsla(240, 1%, 18%, 0.251) 0%, 
    hsla(240, 2%, 11%, 0) 100%
  ), hsl(240, 2%, 13%);
  --bg-gradient-yellow-1: linear-gradient(
    to bottom right, 
    hsl(45, 100%, 71%) 0%, 
    hsla(36, 100%, 69%, 0) 50%
  );
  --bg-gradient-yellow-2: linear-gradient(
    135deg, 
    hsla(45, 100%, 71%, 0.251) 0%, 
    hsla(35, 100%, 68%, 0) 59.86%
  ), hsl(240, 2%, 13%);
  --border-gradient-onyx: linear-gradient(
    to bottom right, 
    hsl(0, 0%, 25%) 0%, 
    hsla(0, 0%, 25%, 0) 50%
  );
  --text-gradient-yellow: linear-gradient(
    to right, 
    hsl(45, 100%, 72%), 
    hsl(35, 100%, 68%)
  );

  /* solid */

  --jet: hsl(0, 0%, 22%);
  --onyx: hsl(240, 1%, 17%);
  --eerie-black-1: hsl(240, 2%, 13%);
  --eerie-black-2: hsl(240, 2%, 12%);
  --smoky-black: hsl(0, 0%, 7%);
  --white-1: hsl(0, 0%, 100%);
  --white-2: hsl(0, 0%, 98%);
  --orange-yellow-crayola: hsl(45, 100%, 72%);
  --vegas-gold: hsl(45, 54%, 58%);
  --light-gray: hsl(0, 0%, 84%);
  --light-gray-70: hsla(0, 0%, 84%, 0.7);
  --bittersweet-shimmer: hsl(0, 43%, 51%);

  /*typography */

  /* font-family */
  --ff-poppins: 'Poppins', sans-serif;

  /* font-size */
  --fs-1: 24px;
  --fs-2: 18px;
  --fs-3: 17px;
  --fs-4: 16px;
  --fs-5: 15px;
  --fs-6: 14px;
  --fs-7: 13px;
  --fs-8: 11px;

  /* font-weight */
  --fw-300: 300;
  --fw-400: 400;
  --fw-500: 500;
  --fw-600: 600;

  /* shadow */
  
  --shadow-1: -4px 8px 24px hsla(0, 0%, 0%, 0.25);
  --shadow-2: 0 16px 30px hsla(0, 0%, 0%, 0.25);
  --shadow-3: 0 16px 40px hsla(0, 0%, 0%, 0.25);
  --shadow-4: 0 25px 50px hsla(0, 0%, 0%, 0.15);
  --shadow-5: 0 24px 80px hsla(0, 0%, 0%, 0.25);

  /* transition */

  --transition-1: 0.25s ease;
  --transition-2: 0.5s ease-in-out;
}
/*-----------------------------------*\
  #RESET
\*-----------------------------------*/
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a { text-decoration: none; }

li { list-style: none; }

img, ion-icon, a, button, time, span { display: block; }

button {
  font: inherit;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
}

input, textarea {
  display: block;
  width: 100%;
  background: none;
  font: inherit;
}

::selection {
  background: var(--orange-yellow-crayola);
  color: var(--smoky-black);
}

:focus { outline-color: var(--orange-yellow-crayola); }

html { font-family: var(--ff-poppins); }

body { background: var(--smoky-black); }

/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/

.sidebar,
article {
  background: var(--eerie-black-2);
  border: 1px solid var(--jet);
  border-radius: 20px;
  padding: 15px;
  box-shadow: var(--shadow-1);
  z-index: 1;
}

.separator {
  width: 100%;
  height: 1px;
  background: var(--jet);
  margin: 16px 0;
}

.icon-box {
  position: relative;
  background: var(--border-gradient-onyx);
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  color: var(--orange-yellow-crayola);
  box-shadow: var(--shadow-1);
  z-index: 1;
}

.icon-box::before {
  content: "";
  position: absolute;
  inset: 1px;
  background: var(--eerie-black-1);
  border-radius: inherit;
  z-index: -1;
}

.icon-box ion-icon { --ionicon-stroke-width: 35px; }

article { display: none; }

article.active {
  display: block;
  animation: fade 0.5s ease backwards;
}

@keyframes fade {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

.h2,
.h3,
.h4,
.h5 {
  color: var(--white-2);
  text-transform: capitalize;
}

.h2 { font-size: var(--fs-1); }

.h3 { font-size: var(--fs-2); }

.h4 { font-size: var(--fs-4); }

.h5 {
  font-size: var(--fs-7);
  font-weight: var(--fw-500);
}

.article-title {
  position: relative;
  padding-bottom: 7px;
}

.article-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 3px;
  background: var(--text-gradient-yellow);
  border-radius: 3px;
}

.has-scrollbar::-webkit-scrollbar {
  width: 5px; /* for vertical scrollbar */
  height: 5px; /* for horizontal scrollbar */
}

.has-scrollbar::-webkit-scrollbar-track {
  background: var(--onyx);
  border-radius: 5px;
}

.has-scrollbar::-webkit-scrollbar-thumb {
  background: var(--orange-yellow-crayola);
  border-radius: 5px;
}

.has-scrollbar::-webkit-scrollbar-button { width: 20px; }

.content-card {
  position: relative;
  background: var(--border-gradient-onyx);
  padding: 15px;
  padding-top: 45px;
  border-radius: 14px;
  box-shadow: var(--shadow-2);
  cursor: pointer;
  z-index: 1;
}

.content-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  background: var(--bg-gradient-jet);
  border-radius: inherit;
  z-index: -1;
}

/*-----------------------------------*\
  #MAIN
\*-----------------------------------*/

main {
  margin: 15px 12px;
  margin-bottom: 75px;
  min-width: 259px;
}

/*-----------------------------------*\
  #SIDEBAR
\*-----------------------------------*/

.sidebar {
  margin-bottom: 15px;
  max-height: 112px;
  overflow: hidden;
  transition: var(--transition-2);
}

.sidebar.active { max-height: 405px; }

.sidebar-info {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
}

.avatar-box {
  border-radius: 20px;
}

.info-content .name {
  color: var(--white-2);
  font-size: var(--fs-3);
  font-weight: var(--fw-500);
  letter-spacing: -0.25px;
  margin-bottom: 10px;
}

.info-content .title {
  color: var(--white-1);
  background: var(--onyx);
  font-size: var(--fs-9);
  font-weight: var(--fw-300);
  width: max-content;
  padding: 5px 12px;
  border-radius: 8px;
}

.info_more-btn {
  position: absolute;
  top: -15px;
  right: -15px;
  border-radius: 0 15px;
  font-size: 13px;
  color: var(--orange-yellow-crayola);
  background: var(--border-gradient-onyx);
  padding: 10px;
  box-shadow: var(--shadow-2);
  transition: var(--transition-1);
  z-index: 1;
}

.info_more-btn::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: var(--bg-gradient-jet);
  transition: var(--transition-1);
  z-index: -1;
}

.info_more-btn:hover,
.info_more-btn:focus { background: var(--bg-gradient-yellow-1); }

.info_more-btn:hover::before,
.info_more-btn:focus::before { background: var(--bg-gradient-yellow-2); }

.info_more-btn span { display: none; }

.sidebar-info_more {
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-2);
}

.sidebar.active .sidebar-info_more {
  opacity: 1;
  visibility: visible;
}

.contacts-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.contact-item {
  min-width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-info {
  max-width: calc(100% - 46px);
  width: calc(100% - 46px);
}

.contact-title {
  color: var(--light-gray-70);
  font-size: var(--fs-8);
  text-transform: uppercase;
  margin-bottom: 2px;
}

.contact-info :is(.contact-link, time, address) {
  color: var(--white-2);
  font-size: var(--fs-7);
}

.contact-info address { font-style: normal; }

.social-list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
  padding-bottom: 4px;
  padding-left: 7px;
}

.social-item .social-link {
  color: var(--light-gray-70);
  font-size: 18px;
}

.social-item .social-link:hover { color: var(--light-gray); }

/*-----------------------------------*\
  #NAVBAR
\*-----------------------------------*/

.navbar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: hsla(240, 1%, 17%, 0.75);
  backdrop-filter: blur(10px);
  border: 1px solid var(--jet);
  border-radius: 12px 12px 0 0;
  box-shadow: var(--shadow-2);
  z-index: 5;
}

.navbar-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 0 10px;
}

.navbar-link {
  color: var(--light-gray);
  font-size: var(--fs-8);
  padding: 20px 7px;
  transition: color var(--transition-1);
}

.navbar-link:hover,
.navbar-link:focus { color: var(--light-gray-70); }
.navbar-link.active { color: var(--orange-yellow-crayola); }

/*-----------------------------------*\
  #ABOUT
\*-----------------------------------*/

.about .article-title { margin-bottom: 15px; }

.about-text {
  color: var(--light-gray);
  font-size: var(--fs-6);
  font-weight: var(--fw-300);
  line-height: 1.6;
}

.about-text p { margin-bottom: 15px; }

/**
 * #service 
 */

.service { margin-bottom: 35px; }

.service-title { margin-bottom: 20px; }

.service-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.service-item {
  position: relative;
  background: var(--border-gradient-onyx);
  padding: 20px;
  border-radius: 14px;
  box-shadow: var(--shadow-2);
  z-index: 1;
}

.service-item::before {
  content: "";
  position: absolute;
  inset: 1px;
  background: var(--bg-gradient-jet);
  border-radius: inherit;
  z-index: -1;
}

.service-icon-box { margin-bottom: 10px; }

.service-icon-box img { margin: auto; }

.service-content-box { text-align: center; }

.service-item-title { margin-bottom: 7px; }

.service-item-text {
  color: var(--light-gray);
  font-size: var(--fs-6);
  font-weight: var(--fw-3);
  line-height: 1.6;
}

/*-----------------------------------*\
  #RESUME
\*-----------------------------------*/

.article-title {
  margin-bottom: 30px;
}

/* ===== Education & Experience timeline ===== */

.timeline {
  margin-bottom: 30px;
}

.timeline .title-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

/* keep icon + "Education"/"Experience" in one row and white */
.timeline .title-wrapper .h3 {
  color: var(--white-2);
}

.timeline-list {
  font-size: var(--fs-6);
  margin-left: 65px;
}

.timeline-item {
  position: relative;
}

.timeline-item:not(:last-child) {
  margin-bottom: 20px;
}

/* “University / Job title” */
.timeline-item-title {
  font-size: var(--fs-6);
  line-height: 1.3;
  margin-bottom: 7px;
}

/* Date line */
.timeline-list span {
  color: var(--vegas-gold);
  font-weight: var(--fw-400);
  line-height: 1.6;
  font-style: italic;
}

/* vertical line */
.timeline-item:not(:last-child)::before {
  content: "";
  position: absolute;
  top: -25px;
  left: -40px;
  width: 1px;
  height: calc(100% + 50px);
  background: var(--jet);
}

/* round gold dot */
.timeline-item::after {
  content: "";
  position: absolute;
  top: 5px;
  left: -43px;
  height: 8px;
  width: 8px;
  background: var(--text-gradient-yellow);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--jet);
}

.timeline-text {
  color: var(--light-gray);
  font-weight: var(--fw-300);
  line-height: 1.6;
}

/* ===== Skills (“My Skills”) ===== */

.skills-title {
  margin-bottom: 20px;
}

.skills-list {
  padding: 20px;
}

/* spacing between skill rows */
.skills-item:not(:last-child) {
  margin-bottom: 15px;
}

.skill .title-wrapper {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 8px;
}

.skill .title-wrapper data {
  color: var(--light-gray);
  font-size: var(--fs-7);
  font-weight: var(--fw-300);
  font-style: italic;
}

.skill-progress-bg {
  background: var(--jet);
  width: 100%;
  height: 8px;
  border-radius: 10px;
}

.skill-progress-fill {
  background: var(--text-gradient-yellow);
  height: 100%;
  border-radius: inherit;
}

/* give the Resume skills card that nice padded look */
.resume .content-card {
  padding: 30px;
  padding-top: 25px;
}

/*-----------------------------------*\
  #PORTFOLIO
\*-----------------------------------*/

.portfolio .article-title {
  margin-bottom: 20px;
}

/* Mobile: 1 column */
.project-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-top: 20px;
}

/* Tablet: 2 columns at 768px */
@media (min-width: 768px) {
  .project-list {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
}

/* Desktop: keep 2 columns at 1024px */
@media (min-width: 1024px) {
  .project-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 25px;
  }
}

/* ===== PORTFOLIO CARD (single definition) ===== */

.project-item {
  display: none;
}

.project-item.active {
  display: block;
  animation: scaleUp 0.25s ease forwards;
}

@keyframes scaleUp {
  0% { transform: scale(0.5); }
  100% { transform: scale(1); }
}

/* Card shell */
.project-item > a {
  position: relative;
  display: block;
  width: 100%;
  padding: 18px 16px 20px;
  border-radius: 14px;
  background: var(--border-gradient-onyx);
  box-shadow: var(--shadow-2);
  overflow: hidden;
  z-index: 1;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.project-item > a::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: var(--bg-gradient-jet);
  z-index: -1;
}

.project-item > a:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-3);
}

/* Image container */
.project-img {
  position: relative;
  width: 100%;
  height: 210px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 14px;
}

.project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-1);
  display: block;
}

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

/*-----------------------------------*\
  #BLOG
\*-----------------------------------*/

.blog-posts { margin-bottom: 10px; }

.blog-posts-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-top: 20px;
}

@media (min-width: 768px) {
  .blog-posts-list {
    gap: 30px;
  }
}

.blog-post-item {
  display: block;
}

.blog-post-item > a {
  position: relative;
  display: block;
  width: 100%;
  border-radius: 16px;
  background: var(--border-gradient-onyx);
  box-shadow: var(--shadow-2);
  overflow: hidden;
  z-index: 1;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-post-item > a::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: var(--bg-gradient-jet);
  z-index: -1;
}

.blog-post-item > a:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-3);
}

.blog-banner-box {
  position: relative;
  width: 100%;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 0;
}

.blog-banner-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-1);
  display: block;
}

.blog-post-item > a:hover .blog-banner-box img {
  transform: scale(1.05);
}

.blog-content {
  padding: 20px;
}

.blog-meta {
  color: var(--vegas-gold);
  font-size: var(--fs-7);
  margin-bottom: 8px;
}

.blog-item-title {
  color: var(--white-2);
  font-size: var(--fs-4);
  font-weight: var(--fw-600);
  margin-bottom: 8px;
}

.blog-text {
  color: var(--light-gray);
  font-size: var(--fs-6);
  line-height: 1.6;
  margin-bottom: 0;
}

/*-----------------------------------*\
  #CONTACT
\*-----------------------------------*/

.mapbox {
  position: relative;
  height: 250px;
  width: 100%;
  border-radius: 16px;
  margin-bottom: 30px;
  border: 1px solid var(--jet);
  overflow: hidden;
}

.mapbox figure { height: 100%; }

.mapbox iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(1) invert(1);
}

.contact-form { margin-bottom: 10px; }

.form-title { margin-bottom: 20px; }

.input-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-bottom: 25px;
}

.form-input {
  color: var(--white-2);
  font-size: var(--fs-6);
  font-weight: var(--fw-400);
  padding: 13px 20px;
  border: 1px solid var(--jet);
  border-radius: 14px;
  outline: none;
}

.form-input::placeholder { font-weight: var(--fw-500); }

.form-input:focus { border-color: var(--orange-yellow-crayola); }

textarea.form-input {
  min-height: 100px;
  height: 120px;
  max-height: 200px;
  resize: vertical;
  margin-bottom: 25px;
}

textarea.form-input::-webkit-resizer { display: none; }

.form-input:focus:invalid { border-color: var(--bittersweet-shimmer); }

.form-btn {
  position: relative;
  width: 100%;
  background: var(--border-gradient-onyx);
  color: var(--orange-yellow-crayola);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: 14px;
  font-size: var(--fs-6);
  text-transform: capitalize;
  box-shadow: var(--shadow-3);
  z-index: 1;
  transition: var(--transition-1);
}

.form-btn::before {
  content: "";
  position: absolute;
  inset: 1px;
  background: var(--bg-gradient-jet);
  border-radius: inherit;
  z-index: -1;
  transition: var(--transition-1);
}

.form-btn ion-icon { font-size: 16px; }

.form-btn:hover { background: var(--bg-gradient-yellow-1); }

.form-btn:hover::before { background: var(--bg-gradient-yellow-2); }

.form-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.form-btn:disabled:hover { background: var(--border-gradient-onyx); }

.form-btn:disabled:hover::before { background: var(--bg-gradient-jet); }



/* ===== CONSOLIDATED PORTFOLIO GRID (SINGLE SOURCE) ===== */

.portfolio .article-title {
  margin-bottom: 20px;
}

/* Mobile: 1 column */
.project-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-top: 20px;
}

/* Tablet: 2 columns at 768px */
@media (min-width: 768px) {
  .project-list {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
}

/* Desktop: keep 2 columns at 1024px */
@media (min-width: 1024px) {
  .project-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 25px;
  }
}

/* ===== PORTFOLIO CARD (single definition) ===== */

.project-item {
  display: none;
}

.project-item.active {
  display: block;
  animation: scaleUp 0.25s ease forwards;
}

@keyframes scaleUp {
  0% { transform: scale(0.5); }
  100% { transform: scale(1); }
}

/* Card shell */
.project-item > a {
  position: relative;
  display: block;
  width: 100%;
  padding: 18px 16px 20px;
  border-radius: 14px;
  background: var(--border-gradient-onyx);
  box-shadow: var(--shadow-2);
  overflow: hidden;
  z-index: 1;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.project-item > a::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: var(--bg-gradient-jet);
  z-index: -1;
}

.project-item > a:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-3);
}

/* Image container */
.project-img {
  position: relative;
  width: 100%;
  height: 210px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 14px;
}

.project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-1);
  display: block;
}

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

/* ===== BLOG SECTION (keep separate) ===== */

.blog-posts-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-top: 20px;
}

@media (min-width: 768px) {
  .blog-posts-list {
    gap: 30px;
  }
}

.blog-post-item {
  display: block;
}

.blog-post-item > a {
  position: relative;
  display: block;
  width: 100%;
  border-radius: 16px;
  background: var(--border-gradient-onyx);
  box-shadow: var(--shadow-2);
  overflow: hidden;
  z-index: 1;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-post-item > a::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: var(--bg-gradient-jet);
  z-index: -1;
}

.blog-post-item > a:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-3);
}

.blog-banner-box {
  position: relative;
  width: 100%;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 0;
}

.blog-banner-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-1);
  display: block;
}

.blog-post-item > a:hover .blog-banner-box img {
  transform: scale(1.05);
}

.blog-content {
  padding: 20px;
}

.blog-meta {
  color: var(--vegas-gold);
  font-size: var(--fs-7);
  margin-bottom: 8px;
}

.blog-item-title {
  color: var(--white-2);
  font-size: var(--fs-4);
  font-weight: var(--fw-600);
  margin-bottom: 8px;
}

.blog-text {
  color: var(--light-gray);
  font-size: var(--fs-6);
  line-height: 1.6;
  margin-bottom: 0;
}

/*-----------------------------------*\
  #CONTACT
\*-----------------------------------*/

.mapbox {
  position: relative;
  height: 250px;
  width: 100%;
  border-radius: 16px;
  margin-bottom: 30px;
  border: 1px solid var(--jet);
  overflow: hidden;
}

.mapbox figure { height: 100%; }

.mapbox iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(1) invert(1);
}

.contact-form { margin-bottom: 10px; }

.form-title { margin-bottom: 20px; }

.input-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-bottom: 25px;
}

.form-input {
  color: var(--white-2);
  font-size: var(--fs-6);
  font-weight: var(--fw-400);
  padding: 13px 20px;
  border: 1px solid var(--jet);
  border-radius: 14px;
  outline: none;
}

.form-input::placeholder { font-weight: var(--fw-500); }

.form-input:focus { border-color: var(--orange-yellow-crayola); }

textarea.form-input {
  min-height: 100px;
  height: 120px;
  max-height: 200px;
  resize: vertical;
  margin-bottom: 25px;
}

textarea.form-input::-webkit-resizer { display: none; }

.form-input:focus:invalid { border-color: var(--bittersweet-shimmer); }

.form-btn {
  position: relative;
  width: 100%;
  background: var(--border-gradient-onyx);
  color: var(--orange-yellow-crayola);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: 14px;
  font-size: var(--fs-6);
  text-transform: capitalize;
  box-shadow: var(--shadow-3);
  z-index: 1;
  transition: var(--transition-1);
}

.form-btn::before {
  content: "";
  position: absolute;
  inset: 1px;
  background: var(--bg-gradient-jet);
  border-radius: inherit;
  z-index: -1;
  transition: var(--transition-1);
}

.form-btn ion-icon { font-size: 16px; }

.form-btn:hover { background: var(--bg-gradient-yellow-1); }

.form-btn:hover::before { background: var(--bg-gradient-yellow-2); }

.form-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.form-btn:disabled:hover { background: var(--border-gradient-onyx); }

.form-btn:disabled:hover::before { background: var(--bg-gradient-jet); }



/* ===========================================================
   PROJECT DETAIL PAGE LAYOUT
   =========================================================== */

.project-page-body {
  margin: 0;
  min-height: 100vh;
  background: var(--eerie-black-1, #050505);
  color: var(--light-gray, #d0d0d0);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Top header */
.project-page-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: linear-gradient(
    180deg,
    rgba(5, 5, 5, 0.95),
    rgba(5, 5, 5, 0.80),
    rgba(5, 5, 5, 0.00)
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.project-page-header__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.project-page-back {
  font-size: 0.9rem;
  color: var(--vegas-gold, #ffc857);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.5);
}

.project-page-back:hover {
  background: var(--orange-yellow-crayola, #ffc857);
  color: #000;
}

.project-page-logo__text {
  font-size: 0.85rem;
  opacity: 0.6;
}

/* Main layout */
.project-page {
  max-width: 1160px;
  margin: 0 auto;
  padding: 24px 18px 40px;
}

.project-page__layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.1fr);
  gap: 24px;
}

/* LEFT: gallery column */
.project-page__media {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

/* Media card */
.project-media-card {
  border-radius: 20px;
  padding: 14px;
  background: #101010;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
  overflow: hidden;
}

.project-media-card--hero {
  border-color: var(--orange-yellow-crayola, #ffc857);
}

/* Images inside card: softer corners, no cropping */
.project-media-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  background: #000;
}

/* Images fill width but keep proportion */
.project-media-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Responsive 16:9 video */
.project-media-video__inner {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #000;
}

.project-media-video__inner iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* RIGHT: info column */
.project-page__info {
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: var(--light-gray, #d0d0d0);
}

.project-info-header {
  margin-bottom: 4px;
}

.project-info-title {
  margin: 0 0 4px;
  font-size: 1.6rem;
  color: var(--white-2, #f8f8f8);
}

.project-info-meta {
  margin: 0;
  font-size: 0.9rem;
  color: var(--vegas-gold, #ffc857);
}

.project-info-section {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 10px;
}

.project-info-subtitle {
  margin: 0 0 4px;
  font-size: 0.85rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  opacity: 0.75;
}

.project-info-text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Tags & nav */
.project-info-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.project-info-tags span {
  font-size: 0.78rem;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #141414;
}

.project-nav {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.project-nav__btn {
  flex: 1 1 140px;
  text-align: center;
  font-size: 0.9rem;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, #181818, #101010);
  color: #f5f5f5;
  text-decoration: none;
}

.project-nav__btn:hover {
  background: var(--orange-yellow-crayola, #ffc857);
  color: #000;
}

/* Responsive */
@media (max-width: 900px) {
  .project-page__layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .project-page__info {
    order: -1;
  }
}

@media (max-width: 600px) {
  .project-page-header__inner {
    padding-inline: 12px;
  }

  .project-page {
    padding-inline: 12px;
  }

  .project-page-back {
    font-size: 0.8rem;
  }
}




/* ==== PROJECT DETAIL PAGE – force gallery cards to show ==== */

/* Make sure the gallery column itself can grow */
.project-page__media {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Each media card must be a block with some minimum height */
.project-media-card {
  display: block;
  min-height: 220px;              /* <- forces something visible even before image paints */
  border-radius: 18px;
  overflow: hidden;
  background: #151515;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

/* First card highlight (keeps your hero outline) */
.project-media-card--hero {
  border-width: 2px;
  border-color: var(--orange-yellow-crayola, #ffc857);
}

/* Images: full width and let the browser compute height from aspect ratio */
.project-media-card img {
  display: block;
  width: 100%;
  height: auto;          /* critical: don’t lock to 0 or fixed px */
  object-fit: contain;
}

/* Video wrapper & 3D viewer also get explicit sizes */
.project-media-video__inner {
  position: relative;
  width: 100%;
  padding-top: 56.25%;   /* 16:9 */
  background: #000;
}

.project-media-video__inner iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.project-media-card model-viewer {
  display: block;
  width: 100%;
  height: 420px;         /* tune this to taste for your 3D viewer */
  background: #000;
}






/**
 * responsive larger than 450px screen
 */

@media (min-width: 450px) {


  /**
   * #PORTFOLIO, BLOG 
   */

  .project-img,
  .blog-banner-box { height: auto; }

}



/**
 * responsive larger than 580px screen
 */

@media (min-width: 580px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {
    --fs-1: 32px;
    --fs-2: 24px;
    --fs-3: 26px;
    --fs-4: 18px;
    --fs-6: 15px;
    --fs-7: 15px;
    --fs-8: 12px;
  }

  /**
   * #REUSED STYLE
   */

  .sidebar, article {
    width: 520px;
    margin-inline: auto;
    padding: 30px;
  }

  .article-title {
    font-weight: var(--fw-600);
    padding-bottom: 15px;
  }

  .article-title::after {
    width: 40px;
    height: 5px;
  }

  .icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    font-size: 18px;
  }

  /**
   * #MAIN
   */

  main {
    margin-top: 60px;
    margin-bottom: 100px;
  }

  /**
   * #SIDEBAR
   */

  .sidebar {
    max-height: 180px;
    margin-bottom: 30px;
  }

  .sidebar.active { max-height: 584px; }

  .sidebar-info { gap: 25px; }

  .avatar-box { border-radius: 30px; }

  .avatar-box img { width: 120px; }

  .info-content .name { margin-bottom: 15px; }

  .info-content .title { padding: 5px 18px; }

  .info_more-btn {
    top: -30px;
    right: -30px;
    padding: 10px 15px;
  }

  .info_more-btn span {
    display: block;
    font-size: var(--fs-8);
  }

  .info_more-btn ion-icon { display: none; }

  .separator { margin: 32px 0; }

  .contacts-list { gap: 20px; }

  .contact-info {
    max-width: calc(100% - 64px);
    width: calc(100% - 64px);
  }

  /**
   * #NAVBAR
   */

  .navbar { border-radius: 20px 20px 0 0; }

  .navbar-list { gap: 20px; }

  .navbar-link { --fs-8: 14px; }

  /**
   * #ABOUT
   */

  .about .article-title { margin-bottom: 20px; }

  .about-text { margin-bottom: 40px; }

  /* service */

  .service-item {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 18px;
    padding: 30px;
  }

  .service-icon-box {
    margin-bottom: 0;
    margin-top: 5px;
  }

  .service-content-box { text-align: left; }

  /**
   * #PORTFOLIO, BLOG
   */

  .project-img, .blog-banner-box { border-radius: 16px; }

  .blog-posts-list { gap: 30px; }

  .blog-content { padding: 25px; }


  /**
   * #CONTACT
   */

  .mapbox {
    height: 380px;
    border-radius: 18px;
  }

  .input-wrapper {
    gap: 30px;
    margin-bottom: 30px;
  }

  .form-input { padding: 15px 20px; }

  textarea.form-input { margin-bottom: 30px; }

  .form-btn {
    --fs-6: 16px;
    padding: 16px 20px;
  }

  .form-btn ion-icon { font-size: 18px; }

}





/**
 * responsive larger than 768px screen
 */

@media (min-width: 768px) {

  /**
   * REUSED STYLE
   */

  .sidebar, article { width: 700px; }

  .has-scrollbar::-webkit-scrollbar-button { width: 100px; }



  /**
   * SIDEBAR
   */

  .contacts-list {
    grid-template-columns: 1fr 1fr;
    gap: 30px 15px;
  }



  /**
   * NAVBAR
   */

  .navbar-link { --fs-8: 15px; }


  /**
   * PORTFOLIO
   */

  .article-title { padding-bottom: 20px; }

  .filter-select-box { display: none; }

  .filter-list {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 25px;
    padding-left: 5px;
    margin-bottom: 30px;
  }

  /* Improved portfolio filter pills */
  .filter-item button {
    position: relative;
    padding: 8px 18px;
    border-radius: 999px;
    font-size: var(--fs-5);
    font-weight: var(--fw-400);
    color: var(--light-gray);
    background: transparent;
    transition: 0.25s ease;
  }

  .filter-item button:hover {
    color: var(--white-2);
    transform: translateY(-2px);
  }

  /* Active filter — same style language as cards */
  .filter-item button.active {
    color: var(--orange-yellow-crayola);
    background: var(--border-gradient-onyx);
    box-shadow: var(--shadow-2);
  }

  .filter-item button.active::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background: var(--bg-gradient-jet);
    z-index: -1;
  }

  /* portfolio and blog grid */

 /* Balanced desktop layout */
  .project-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }



  /* Final portfolio layout tweaks (override old grid styles) */
  article.portfolio {
    text-align: left;      /* same as other articles */
    margin-top: 0;         /* remove extra gap under navbar */
  }

  /* Ensure the projects block behaves like the template */
  .portfolio .projects {
    margin-top: 20px;
  }

  .portfolio .article-title {
    text-transform: capitalize; /* "Portfolio" instead of "portfolio" feel */
  }

    /**
    * CONTACT
    */

    .input-wrapper { grid-template-columns: 1fr 1fr; }

    .form-btn {
      width: max-content;
      margin-left: auto;
    }
    
  }





/**
 * responsive larger than 1024px screen
 */

@media (min-width: 1024px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
    * shadow
    */

    --shadow-1: -4px 8px 24px hsla(0, 0%, 0%, 0.125);
    --shadow-2: 0 16px 30px hsla(0, 0%, 0%, 0.125);
    --shadow-3: 0 16px 40px hsla(0, 0%, 0%, 0.125);

  }



  /**
   * REUSED STYLE
   */

  .sidebar, article {
    width: 950px;
    box-shadow: var(--shadow-5);
  }



  /**
   * MAIN 
   */

  main { margin-bottom: 60px; }

  .main-content {
    position: relative;
    width: max-content;
    margin: auto;
  }



  /**
   * NAVBAR
   */

  .navbar {
    position: absolute;
    bottom: auto;
    top: 0;
    left: auto;
    right: 0;
    width: max-content;
    border-radius: 0 20px;
    padding: 0 20px;
    box-shadow: none;
  }

  .navbar-list {
    gap: 30px;
    padding: 0 20px;
  }

  .navbar-link { font-weight: var(--fw-500); }



  /**
   * ABOUT
   */

  /* service */

  .service-list {
    grid-template-columns: 1fr 1fr;
    gap: 20px 25px;
  }


  /**
   * PORTFOLIO
   */

   .project-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }




  /**
   * BLOG
   */

  .blog-banner-box { height: 230px; }

}





/**
 * responsive larger than 1250px screen
 */

@media (min-width: 1250px) {

  /**
   * RESET
   */

  body::-webkit-scrollbar { width: 20px; }

  body::-webkit-scrollbar-track { background: var(--smoky-black); }

  body::-webkit-scrollbar-thumb {
    border: 5px solid var(--smoky-black);
    background: hsla(0, 0%, 100%, 0.1);
    border-radius: 20px;
    box-shadow: inset 1px 1px 0 hsla(0, 0%, 100%, 0.11),
                inset -1px -1px 0 hsla(0, 0%, 100%, 0.11);
  }

  body::-webkit-scrollbar-thumb:hover { background: hsla(0, 0%, 100%, 0.15); }

  body::-webkit-scrollbar-button { height: 60px; }



  /**
   * REUSED STYLE
   */

  .sidebar, article { width: auto; }

  article { min-height: 100%; }



  /**
   * MAIN
   */

  main {
    max-width: 1200px;
    margin-inline: auto;
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 25px;
  }

  .main-content {
    min-width: 75%;
    width: 75%;
    margin: 0;
  }



  /**
   * SIDEBAR
   */

  .sidebar {
    position: sticky;
    top: 60px;
    max-height: max-content;
    height: 100%;
    margin-bottom: 0;
    padding-top: 60px;
    z-index: 1;
  }

  .sidebar-info { flex-direction: column; }

  .avatar-box img { width: 150px; }

  .info-content .name {
    white-space: nowrap;
    text-align: center;
  }

  .info-content .title { margin: auto; }

  .info_more-btn { display: none; }

  .sidebar-info_more {
    opacity: 1;
    visibility: visible;
  }

  .contacts-list { grid-template-columns: 1fr; }

  .contact-info :is(.contact-link) {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .contact-info :is(.contact-link, time, address) {
    --fs-7: 14px;
    font-weight: var(--fw-300);
  }

  .separator:last-of-type {
    margin: 15px 0;
    opacity: 0;
  }

  .social-list { justify-content: center; }

  /**
	 * RESUME
	 */

  .timeline-text { max-width: 700px; }

}

/* ===========================================================
   PORTFOLIO CARDS — BLOG-STYLE LAYOUT
   =========================================================== */

/* Always one big card per row (like the Blog list) */
.portfolio .project-list {
  grid-template-columns: 1fr;
}

/* Card shell – same language as .blog-post-item > a */
.portfolio .project-item > a {
  position: relative;
  display: block;
  width: 100%;
  border-radius: 16px;
  background: var(--border-gradient-onyx);
  box-shadow: var(--shadow-4);
  overflow: hidden;
  z-index: 1;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  padding: 0; /* blog cards have no extra padding around the thumbnail */
}

.portfolio .project-item > a::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: var(--eerie-black-1);
  z-index: -1;
}

.portfolio .project-item > a:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-3);
}

/* Thumbnail (top image) – tall, full width */
.portfolio .project-item .blog-banner-box {
  position: relative;
  width: 100%;
  height: 220px;
  border-radius: 12px;
  overflow: hidden;
}

.portfolio .project-item .blog-banner-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-1);
}

.portfolio .project-item > a:hover .blog-banner-box img {
  transform: scale(1.05);
}

/* Reuse same spacing as blog cards, just a bit more roomy */
.portfolio .project-item .blog-content {
  padding: 18px 20px 20px;
}

/* Header row: meta on the left, tags on the right */
.project-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

/* Remove default bottom margin from blog-meta when inside header */
.project-card-header .blog-meta {
  margin-bottom: 0;
}

/* Tag chips */
.project-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.project-tag {
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--jet);
  color: var(--light-gray-70);
  font-size: var(--fs-7);
  font-weight: var(--fw-400);
}

/* Title & text tweaks so it feels like the Blog list */
.portfolio .project-item .blog-item-title {
  margin-bottom: 8px;
}

.portfolio .project-item .blog-text {
  margin-bottom: 0;
}

/* Make sure the hover icon still centers over the thumbnail */
.portfolio .project-item .project-item-icon-box {
  --scale: 0.8;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(var(--scale));
  background: var(--jet);
  color: var(--orange-yellow-crayola);
  font-size: 20px;
  padding: 16px;
  border-radius: 12px;
  opacity: 0;
  transition: var(--transition-1);
}

.portfolio .project-item > a:hover .project-item-icon-box {
  --scale: 1;
  opacity: 1;
}


/* ======================
   PROJECT DETAIL — MEDIA
====================== */

.project-page__media {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-right: 1rem;
}

.project-media-card {
  width: 100%;
  background: #1e1e1e;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 28px rgba(0,0,0,0.35);
  backdrop-filter: blur(8px);
}

.project-media-card img,
.project-media-card iframe,
.project-media-card model-viewer {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Hero item bigger */
.project-media-card--hero {
  border: 2px solid var(--yellow);
  border-radius: 16px;
}

.project-media-card--hero img {
  border-radius: 10px;
}

/* ===========================================================
   PROJECT DETAIL PAGE (project.html)
   =========================================================== */

/* Body on project.html */
.project-page-body {
  margin: 0;
  min-height: 100vh;
  background: var(--eerie-black-1, #050505);
  color: var(--light-gray, #d0d0d0);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Sticky top header */
.project-page-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: linear-gradient(
    180deg,
    rgba(5, 5, 5, 0.95),
    rgba(5, 5, 5, 0.80),
    rgba(5, 5, 5, 0.00)
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.project-page-header__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.project-page-back {
  font-size: 0.9rem;
  color: var(--vegas-gold, #ffc857);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.5);
}

.project-page-back:hover {
  background: var(--orange-yellow-crayola, #ffc857);
  color: #000;
}

.project-page-logo__text {
  font-size: 0.85rem;
  opacity: 0.6;
}

/* Main container */
.project-page {
  max-width: 1160px;
  margin: 0 auto;
  padding: 24px 18px 40px;
}

/* Two-column layout: gallery left, info right */
.project-page__layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.1fr);
  gap: 24px;
}

/* -----------------------------------------------------------
   LEFT COLUMN – MEDIA GALLERY
   ----------------------------------------------------------- */

.project-page__media {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Individual media cards */
.project-media-card {
  border-radius: 18px;
  overflow: hidden;
  background: #151515;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

/* First media item (hero) accent */
.project-media-card--hero {
  border-width: 2px;
  border-color: var(--orange-yellow-crayola, #ffc857);
}

/* Images – full width, natural height, no cropping */
.project-media-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Responsive 16:9 wrapper for YouTube embeds */
.project-media-video__inner {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  background: #000;
}

.project-media-video__inner iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Optional future 3D viewer height */
.project-media-card model-viewer {
  display: block;
  width: 100%;
  height: 420px;
  background: #000;
}

/* -----------------------------------------------------------
   RIGHT COLUMN – INFO PANEL
   ----------------------------------------------------------- */

.project-page__info {
  display: flex;
  flex-direction: column;
  gap: 18px;

  /* sticky behaviour */
  position: sticky;
  top: 90px;                 /* adjust if your header height changes */
  align-self: start;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}

.project-info-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  padding-bottom: 12px;
  margin-bottom: 4px;
}

.project-info-title {
  font-size: 1.7rem;
  line-height: 1.2;
  margin: 0 0 6px 0;
  color: var(--white-2, #f5f5f5);
}

/* Meta + status row */
.project-info-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.project-info-meta {
  font-size: 0.85rem;
  color: var(--vegas-gold, #ffc857);
}

/* STATUS CHIP (WIP / Finished) */
.project-info-status {
  display: inline-block;
  margin-top: 2px;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 20px;
  letter-spacing: 0.4px;
}

.status-finished {
  background: #16c46f21;
  color: #16c46f;
  border: 1px solid #16c46f;
}

.status-wip {
  background: #ffc54221;
  color: #ffc542;
  border: 1px solid #ffc542;
}

/* Sections (Overview, Role, Software, Tags) */
.project-info-section {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 12px;
}

.project-info-subtitle {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin: 0 0 8px 0;
  color: rgba(255, 255, 255, 0.75);
}

.project-info-text {
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
  color: var(--light-gray, #d0d0d0);
}

/* Software + Tag chips */
.project-info-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tool-badge,
.project-info-tags span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #151515;
  color: #f5f5f5;
  font-size: 0.8rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.tool-badge img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  border-radius: 4px;
}

/* Bottom navigation */
.project-nav {
  margin-top: 8px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.project-nav__btn {
  flex: 1 1 auto;
  text-align: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #111;
  color: #f5f5f5;
  font-size: 0.85rem;
  text-decoration: none;
}

.project-nav__btn:hover {
  background: var(--orange-yellow-crayola, #ffc857);
  color: #000;
}

/* -----------------------------------------------------------
   RESPONSIVE – collapse to single column on small screens
   ----------------------------------------------------------- */

@media (max-width: 880px) {
  .project-page__layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .project-page__media {
    order: 1;
  }

  .project-page__info {
    order: 2;
    position: static;
    max-height: none;
    overflow: visible;
  }
}
/* ===== Project Detail – media category tabs ===== */

.project-page__media-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Tabs row */
.project-media-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* Individual tab button */
.project-media-tab {
  padding: 4px 12px;
  font-size: 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(8, 8, 8, 0.95);
  color: #f5f5f5;
  cursor: pointer;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease,
    transform 0.18s ease;
}

.project-media-tab:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 200, 87, 0.7);
}

/* Active tab */
.project-media-tab--active {
  background: var(--orange-yellow-crayola, #ffc857);
  color: #000;
  border-color: transparent;
}

/* ===========================================================
   PROJECT MEDIA LIGHTBOX (Fullscreen viewer)
   =========================================================== */

.project-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
}

.project-lightbox.is-open {
  display: flex;
}

.project-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(6px);
}

.project-lightbox__content {
  position: relative;
  z-index: 1;
  width: min(1200px, 95vw);
  height: min(80vh, 95vh);
  background: #050505;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 52px;
}

/* Media inside fullscreen */
.project-lightbox__media {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-lightbox__media img,
.project-lightbox__media iframe,
.project-lightbox__media model-viewer {
  max-width: 100%;
  max-height: 100%;
  border-radius: 12px;
  object-fit: contain;
}

/* Close button */
.project-lightbox__close {
  position: absolute;
  top: 10px;
  right: 16px;
  border: none;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 22px;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  cursor: pointer;
}

/* Prev / next arrows */
.project-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 26px;
  width: 34px;
  height: 60px;
  border-radius: 999px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-lightbox__nav--prev {
  left: 12px;
}

.project-lightbox__nav--next {
  right: 12px;
}

@media (max-width: 768px) {
  .project-lightbox__content {
    padding: 10px 40px;
  }

  .project-lightbox__nav {
    width: 30px;
    height: 52px;
  }
}

.project-media-card + .project-media-card {
  margin-top: -1px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* === FINAL PROJECT MEDIA GALLERY FIX === */

/* Stack perfectly with no visual gaps */
.project-page__media {
  display: flex;
  flex-direction: column;
  gap: 0; /* remove spacing */
}

/* Media card = seamless container */
.project-media-card {
  width: 100%;
  background: #000;
  border: none;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
}

/* Images display naturally — NO cropping */
.project-media-card img {
  width: 100%;
  height: auto;
  object-fit: contain !important;
  display: block;
  background: #000;
  border-radius: 0;
}

/* First (Hero) card — subtle highlight only */
.project-media-card--hero {
  border-bottom: 2px solid var(--orange-yellow-crayola);
}
