/*=============== GOOGLE FONTS ===============*/
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap');

/*=============== VARIABLES CSS ===============*/
:root {
  /*========== Colors ==========*/
  --first-hue: 260;
  --second-hue: 216;
  --first-color: hsl(var(--first-hue), 91%, 64%);
  --first-color-dark: hsl(var(--first-hue), 62%, 20%);
  --title-color: hsl(var(--second-hue), 8%, 85%);
  --text-color: hsl(var(--second-hue), 8%, 75%);
  --body-color: hsl(var(--second-hue), 28%, 12%);
  --container-color: hsl(var(--second-hue), 28%, 15%);
  --white-color: hsl(var(--second-hue), 8%, 100%);

  --first-gradient: linear-gradient(150deg,
      var(--first-color) 0%,
      var(--white-color) 100%);
  --second-gradient: linear-gradient(260deg,
      var(--first-color-dark) 0%,
      var(--first-color) 100%);

  /*========== Font family ==========*/
  --body-font: 'Space Grotesk', sans-serif;

  /*========== Font sizes ==========*/
  --big-font-size: 8rem;
  --h1-font-size: 3.75rem;
  --h2-font-size: 3rem;
  --h3-font-size: 1.5rem;
  --larger-font-size: 1.25rem;
  --large-font-size: 1.125rem;
  --normal-font-size: 1rem;
  --small-font-size: 0.875rem;

  /*========== Font weight ==========*/
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: 700;
}

/* Responsive typography */
@media screen and (max-width: 1208px) {
  :root {
    --big-font-size: 6.25rem;
    --h1-font-size: 2.75rem;
    --h2-font-size: 2rem;
    --h3-font-size: 1.25rem;
    --larger-font-size: 1.125rem;
    --large-font-size: 1rem;
    --normal-font-size: 0.938rem;
    --small-font-size: 0.815rem;
  }
}

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

html {
  scroll-behavior: smooth;
}

body,
button,
input,
textarea {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}

body {
  background-color: var(--body-color);
  color: var(--text-color);
}

h1,
h2,
h3 {
  color: var(--title-color);
  font-weight: var(--font-bold);
  line-height: 1.2;
}

p {
  line-height: 1.75;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

button,
input,
textarea {
  border: none;
  outline: none;
  background-color: transparent;
}

img {
  display: block;
  max-width: 100%;
}

/*=============== Variables Dark theme ===============*/
.light-theme {
  --title-color: hsl(var(--second-hue), 8%, 16%);
  --text-color: hsl(var(--second-hue), 8%, 28%);
  --body-color: hsl(var(--second-hue), 8%, 99%);
  --container-color: hsl(var(--second-hue), 8%, 95%);

  --first-gradient: linear-gradient(150deg,
      var(--first-color-dark) 0%,
      var(--first-color) 100%);
}

/*========== 
    Color changes in some parts of 
    the website, in light theme
==========*/
.light-theme .scroll-header {
  background-color: var(--body-color);
  box-shadow: 0 4px 4px hsla(var(--first-hue), 0%, 4%, 0.1);
}

.light-theme .nav-menu {
  background-color: hsla(var(--first-color), 0%, 4%, 0.4);
}

.light-theme .text-gradient {
  -webkit-text-fill-color: hsl(var(--second-hue), 92%, 15%, 0.2);
  background: var(--first-gradient);
  background-clip: text;
  background-size: 0% 100%;
  background-repeat: no-repeat;
}

/*=============== REUSABLE CSS CLASSES ===============*/

.section {
  padding-block: 6rem 4rem;
}

.button {
  display: inline-block;
  background: var(--second-gradient);
  color: var(--white-color);
  padding: 1.25rem 2rem;
  border-radius: 0.5rem;
  font-weight: var(--font-semi-bold);
  transition: background 0.3s;
}

.button:hover {
  background: linear-gradient(260deg,
      var(--first-color) 0%,
      var(--first-color-dark) 100%);
}



/*=============== LAYOUT ===============*/
.container {
  max-width: 1320px;
  margin-inline: auto;
  padding: 1.25rem;
}

.grid {
  display: grid;
}

/*=============== HEADER & NAV ===============*/

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
}

.nav,
.nav-list,
.nav-btns {
  display: flex;
}

.nav {
  align-items: center;
  justify-content: space-between;
  column-gap: 3rem;
  height: 4.5rem;
}

.nav-logo,
.nav-link,
.change-theme {
  color: var(--title-color);
}

.nav-logo {
  font-size: var(--h3-font-size);
  font-weight: var(--font-bold);
}

.nav-menu {
  margin-left: auto;
}

.nav-list {
  column-gap: 2.75rem;
}

.nav-link {
  font-weight: var(--font-medium);
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--first-color);
}

.change-theme {
  font-size: 1.25rem;
  cursor: pointer;
}

.nav-btns {
  align-items: center;
  column-gap: 1rem;
}

.nav-close,
.nav-toggle {
  display: none;
}

/* Active link */
.active-link {
  color: var(--first-color);
}

/* Change background header */
.scroll-header {
  background-color: var(--body-color);
  box-shadow: 0 4px 4px hsla(var(--first-hue), 0%, 4%, 0.2);
}

/*=============== MAIN ===============*/
.main {
  overflow: hidden;
}

/*=============== HOME ===============*/
.home-container {
  grid-template-columns: 1fr repeat(2, max-content);
  align-items: center;
  column-gap: 1.6rem;
  padding-top: 6rem;
}

.home-img-wrapper {
  width: clamp(14rem, 5.3402rem + 39.5876vw, 38rem);
  background: var(--second-gradient);
  overflow: hidden;
  border-radius: 59% 41% 47% 53% / 42% 36% 64% 58%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.home-title {
  font-size: 6.4rem;
  line-height: 1;
  margin-bottom: 2rem;
}

.home-job {
  font-size: var(--h2-font-size);
  font-weight: var(--font-semi-bold);
}

.home-description {
  font-size: var(--larger-font-size);
  margin-block: 1.5rem 2rem;
}

.home-social-grid {
  display: flex;
  flex-direction: column;
  /* Makes items stack vertically */
  gap: 1rem;
  /* Space between the icons */
  align-items: center;
  /* Optional: center icons horizontally */
}

.home-social-link {
  color: var(--title-color);
  font-size: 1.5rem;
  transition: color 0.3s;
}

.home-social-link:hover {
  color: var(--first-color);
}

/*=============== ABOUT ===============*/
.about-container {
  grid-template-columns: 3fr 6fr;
  align-items: center;
  column-gap: 4rem;
}

.about-experience {
  width: 280px;
  height: 420px;
  background: var(--second-gradient);
  border-radius: 1rem;
  display: grid;
  place-content: center;
}

.about-no,
.about-title {
  color: var(--white-color);
}

.about-no {
  font-size: 7.5rem;
  font-weight: var(--font-bold);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.about-title {
  font-size: var(--large-font-size);
  text-align: center;
}

.about-description {
  font-size: 2.5rem;
  margin-bottom: 2rem;

}

.text-gradient {
  -webkit-text-fill-color: hsl(var(--second-hue), 8%, 85%, 0.2);
  background: var(--first-gradient);
  background-clip: text;
  background-size: 0% 100%;
  background-repeat: no-repeat;
}

.about-data {
  row-gap: 2rem;
}

/*=============== SERVICES ===============*/
.section-title {
  text-align: center;
  font-size: var(--h1-font-size);
  margin-bottom: 4.25rem;
}

/*=============== SKILLS ===============*/
.skills-container {
  grid-template-columns: repeat(2, max-content);
  justify-content: center;
  gap: 10rem;
}

.skills-title {
  text-align: center;
  font-size: var(--h3-font-size);
  margin-bottom: 3rem;
}

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

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

.skills-blob {
  width: 90px;
  height: 110px;
  background-color: var(--container-color);
  border-radius: 3rem;
  display: grid;
  place-items: center;
  margin-inline: auto;
}

.skills-img {
  width: 40px;

}

.skills-name {
  font-size: var(--large-font-size);
  margin-block: 1rem 0.25rem;
}

.skills-level {
  font-size: var(--small-font-size);
}

/*=============== Education ===============*/
.education-container {
  grid-template-columns: 0.7fr;
  justify-content: center;
  row-gap: 3rem;
}


.education-item {
  grid-template-columns: repeat(2, 1fr);
  column-gap: 4rem;
}


/* Left & right blocks */
.education-right {
  order: 2;
}

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

/* Styling */
.education-icon {
  color: var(--title-color);
  font-size: 2.75rem;
}

.education-title {
  font-size: var(--large-font-size);
  margin-block: 0.75rem;
}

.education-duration {
  font-size: var(--small-font-size);
}

.education-container,
.education-item {
  position: relative;
}

.education-container::after,
.education-item::after {
  content: '';
  position: absolute;
  top: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--title-color);
}

.education-container::after {
  width: 2px;
  height: 100%;
}

.education-item::after {
  width: 16px;
  height: 4px;
}


/*=============== PORTFOLIO ===============*/
.work-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 0.75rem 2.5rem;
  margin-bottom: 3.5rem;
}

.work-item {
  position: relative;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  display: inline-block;
  /* keeps box as wide as text */
  padding: 0 0 0.5rem 0;
  /* only bottom padding */
  color: var(--title-color);
  transition: color 0.3s ease;
}

/* underline effect only for active */
.work-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  /* hidden by default */
  height: 2px;
  background-color: var(--first-color);
  transition: width 0.3s ease-in-out;
}

/* text color on hover */
.work-item:hover {
  color: var(--first-color);
}

/* active state underline + color */
.work-item.active-work {
  color: var(--first-color);
}

.work-item.active-work::before {
  width: 70%;
  /* underline appears only when active */
}

.work-container {
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.work-card {
  background-color: var(--container-color);
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.work-card:hover {
  transform: translateY(-8px);
}

/*=============== WORK SLIDER ===============*/
.work-slider {
  position: relative;
  width: 100%;
  height: 200px;
  border-radius: 0.75rem;
  overflow: hidden;
  margin-bottom: 1.5rem;
  background-color: var(--body-color);
}

.work-slider-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.work-slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.75rem;
  opacity: 0;
  transition: opacity 0.7s ease-in-out;
  pointer-events: none;
}

.work-slide-img.active {
  opacity: 1;
  pointer-events: auto;
}

/* Dot indicators */
.work-slider-dots {
  position: absolute;
  bottom: 0.6rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.4rem;
  z-index: 2;
}

.work-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
  border: none;
  padding: 0;
}

.work-dot.active {
  background-color: var(--first-color);
  transform: scale(1.3);
}

/* Pause on hover */
.work-slider:hover .work-slide-img {
  /* pausing handled via JS */
}


.work-category {
  color: var(--first-color);
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
}

.work-title {
  font-size: var(--h3-font-size);
  margin-block: 0.75rem 1.75rem;
}

.work-description {
  min-height: 125px;
}

.work-link {
  display: inline-flex;
  align-items: center;
  column-gap: 0.75rem;
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
}

.work-icon {
  color: var(--first-color);
  font-size: 1.25rem;
  transition: transform 0.3s;
}

.work-link:hover .work-icon {
  transform: translateX(0.25rem);
}

/* Work Filters */
.work-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  list-style: none;
  padding: 0;
}


/*=============== CONTACT ===============*/
.contact {
  padding-bottom: 8rem;
}

.contact-container {
  grid-template-columns: 5.5fr 6.5fr;
  column-gap: 2rem;
}

.contact-section-title {
  text-align: left;
}

.contact-data {
  row-gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  /* centers text with the icon */
  gap: 1.5rem;
  /* space between icon and text */
  margin-bottom: 1.5rem;
  /* spacing between items */
}

.contact-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  /* perfect circle */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  /* ❌ stops shrinking */
  background-color: var(--first-color);
  /* your bg color */
  color: #fff;
  /* icon/text color */
  font-size: 1.25rem;
}



.contact-title {
  font-size: var(--large-font-size);
  margin: 0;
  /* remove bottom gap */
  line-height: 1.2;
  /* keep text compact */
}


.contact-form {
  row-gap: 3rem;
  margin-top: 1rem;
  position: relative;
}

.contact-input {
  color: var(--title-color);
  border-bottom: 3px solid var(--title-color);
  padding-inline: 0.25rem;
  height: 50px;
}

.contact-form-div {
  display: grid;
  row-gap: 0.75rem;
}

.contact-label {
  color: var(--title-color);
  font-size: var(--large-font-size);
  font-weight: var(--font-semi-bold);
}

.contact-area {
  resize: none;
  height: 200px;
}

.contact-button {
  justify-self: start;
  margin-top: 1rem;
}

.contact-message {
  position: absolute;
  bottom: 5.5rem;
  left: 0;
  color: var(--title-color);
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
}

/*=============== FOOTER ===============*/
.footer {
  background-color: var(--container-color);
  padding-block: 2rem;
}

.footer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-social {
  display: flex;
  column-gap: 1rem;
}

.footer-link {
  color: var(--title-color);
  font-size: var(--large-font-size);
  transition: color 0.3s;
}

.footer-link:hover {
  color: var(--first-color);
}

.footer-copyright {
  font-weight: var(--font-semi-bold);
}

.footer-copyright span {
  color: var(--first-color);
}

.footer-copyright #footer-year {
  color: inherit;
}

.section-title {
  font-size: 3.2rem;
  font-weight: bold;
  text-align: center;
  opacity: 0;
  /* hidden initially */
  transform: translateY(20px);
  /* shifted down */
  transition: all 0.8s ease-in-out;
}

/* When visible (we'll toggle this with JS) */
.section-title.show {
  opacity: 1;
  transform: translateY(0);
}

.contact-section-title {
  background: linear-gradient(to right, var(--title-color), var(--first-color));
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 800;
  line-height: 1.3;
  text-align: left;
}

/*=============== BREAKPOINTS ===============*/
/* For large devices */
@media screen and (max-width: 1208px) {
  .home-social-link {
    font-size: var(--large-font-size);
  }

  .about-container {
    column-gap: 3rem;
  }

  .about-experience {
    width: 260px;
    height: 400px;
  }

  .skills-container {
    column-gap: 6rem;
  }

  .skills-items {
    gap: 2.75rem 3rem;
  }

  .education-container {
    grid-template-columns: .8fr;
  }

  .work-container {
    gap: 1.5rem;
  }

  .contact-icon {
    width: 46px;
    height: 46px;
    font-size: 1.25rem;
  }
}

@media screen and (max-width: 1024px) {

  .nav {
    height: 3.75rem;
  }

  .nav-toggle,
  .nav-close {
    display: inline-flex;
    color: var(--title-color);
    font-size: 1.25rem;
    cursor: pointer;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    /* hide by default */
    background-color: hsla(var(--first-hue), 0%, 4%, 0.4);
    width: 55%;
    height: 100%;
    padding: 5rem 0 0 3rem;
    backdrop-filter: blur(24px);
    transition: right 0.3s;
  }

  .show-menu {
    right: 0;
    /* slide in */
  }

  .nav-list {
    flex-direction: column;
    row-gap: 3rem;
  }

  .nav-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
  }

  .section {
    padding-block: 5rem 2rem;
  }

  .home-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
    padding-top: 2rem;
  }

  .home-img-wrapper {
    order: 1;
  }

  .home-social-grid {
    order: 2;
    display: flex;
    flex-direction: row;
    /* horizontal icons */
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1rem;
  }

  .home-data {
    order: 3;
    max-width: 600px;
  }

  .home-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
  }

  .home-job {
    font-size: 1.75rem;
  }

  .home-description {
    font-size: var(--large-font-size);
  }

  .about-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* centers experience block */
    text-align: center;
    /* centers text */
    gap: 2rem;
  }

  /* Make the experience block centered and not too wide */
  .about-experience {
    margin: 0 auto;
  }

  /* Align description text under it */
  .about-description {
    max-width: 700px;
    text-align: center;
    line-height: 1.6;
  }

  .education-container {
    grid-template-columns: 1fr;
    row-gap: 2rem;
  }

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

  .skills-container {
    grid-template-columns: initial;
    row-gap: 3.5rem;
  }

  .skills-items {
    row-gap: 2.5rem;
  }

  .education-item {
    column-gap: 3rem;
  }

  .contact {
    padding-bottom: 5rem;
  }

  .contact-container {
    grid-template-columns: 1fr;
    row-gap: 2rem;
  }

  .contact-section-title {
    text-align: center;
  }

  .contact-form {
    margin-top: 0;

  }

  .footer-container {
    flex-direction: column;
    row-gap: 0.75rem;
  }
}

@media screen and (max-width: 768px) {
  .home-container {
    column-gap: 3rem;
  }

  .section-title {
    margin-bottom: 3.5rem;
  }

  .work-container {
    grid-template-columns: 405px;
    justify-content: center;
  }

  .skills-blob {
    width: 80px;
    height: 100px;
  }

}

@media screen and (max-width: 576px) {
  .home-container {
    column-gap: 1.75rem;
  }
}

@media screen and (max-width: 460px) {
  .container {
    padding-inline: 1rem;
  }

  .work-container {
    grid-template-columns: 1fr;
  }

  .work-card {
    padding: 1.75rem;
  }

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

/* Fix work-item spacing */
.work-list {
  gap: 1rem 2rem;
  /* horizontal & vertical spacing */
}

.work-item {
  display: inline-block;
  white-space: nowrap;
  /* prevent "Frontend" breaking in half */
}

/* Fix word breaking for long emails / stack text */
.contact-info p,
.contact-info span,
.about-description {
  word-wrap: break-word;
  overflow-wrap: anywhere;
  white-space: normal;
}

/* Improve mobile spacing */
@media screen and (max-width: 460px) {

  .about-description,
  .work-card {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .home-title {
    font-size: 2.5rem;
    /* shrink big text */
  }

  .about-description {
    font-size: 1.25rem;
    /* make it readable */
    line-height: 1.6;
  }

}

@media screen and (max-width: 430px) {
  .contact-container {
    grid-template-columns: 1fr !important;
    /* force single column */
    padding-inline: 1rem;
    row-gap: 1.5rem;
  }

  .contact-icon {
    width: 44px;
    /* fixed width */
    height: 44px;
    /* fixed height */
    border-radius: 50%;
    /* perfect circle */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    /* prevent squishing */
  }


  .contact-form {
    width: 100%;
  }

  .contact-form input,
  .contact-form textarea {
    width: 100%;
    font-size: 0.9rem;
  }

  .contact-form button {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
  }
}

/*=============== ULTIMATE ELITE EXPERIENCE ===============*/
.elite-layout {
  display: flex;
  align-items: flex-start;
  gap: 5rem;
  padding-top: 2rem;
}

.elite-left {
  flex: 0 0 35%;
  position: sticky;
  top: 120px;
  /* Sticks as user scrolls past */
}

.elite-title {
  font-size: 4.5rem;
  line-height: 1.1;
  background: linear-gradient(to right, var(--title-color), var(--first-color));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 1.5rem;
  letter-spacing: -2px;
  font-weight: 800;
}

.elite-subtitle {
  font-size: var(--large-font-size);
  color: var(--text-color);
  max-width: 90%;
  line-height: 1.6;
}

.elite-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4.5rem;
  padding-left: 4rem;
  position: relative;
}

.elite-right::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    hsla(var(--second-hue), 8%, 50%, 0.4) 15%,
    hsla(var(--second-hue), 8%, 50%, 0.4) 85%,
    transparent
  );
}

.elite-item {
  position: relative;
  /* ScrollReveal handles the entry animation now */
}

.elite-item-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 10px var(--first-color), 0 0 0px rgba(var(--first-hue), 91%, 64%, 0.4);
  }

  50% {
    box-shadow: 0 0 20px var(--first-color), 0 0 15px rgba(var(--first-hue), 91%, 64%, 0.2);
  }

  100% {
    box-shadow: 0 0 10px var(--first-color), 0 0 0px rgba(var(--first-hue), 91%, 64%, 0.4);
  }
}

.elite-item-bullet {
  position: absolute;
  left: -4.35rem;
  /* Aligns exactly on the border line */
  width: 12px;
  height: 12px;
  background-color: var(--first-color);
  border-radius: 50%;
  animation: pulse-glow 3s infinite;
}

.elite-item-date {
  font-family: monospace;
  font-size: var(--normal-font-size);
  color: var(--text-color);
  letter-spacing: 1px;
  text-transform: uppercase;
  background: hsla(var(--second-hue), 8%, 50%, 0.1);
  padding: 0.3rem 1rem;
  border-radius: 2rem;
  border: 1px solid hsla(var(--second-hue), 8%, 50%, 0.2);
}

.elite-item-role {
  font-size: 2.25rem;
  color: var(--title-color);
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.elite-item-company {
  font-size: var(--normal-font-size);
  color: var(--first-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.elite-item-desc {
  font-size: var(--normal-font-size);
  color: var(--text-color);
  line-height: 1.8;
}

/* Responsiveness */
@media screen and (max-width: 968px) {
  .elite-layout {
    flex-direction: column;
    gap: 3.5rem;
  }

  .elite-left {
    position: relative;
    top: 0;
  }

  .elite-title {
    font-size: 3.5rem;
  }

  .elite-right {
    padding-left: 0;
    gap: 3.5rem;
  }

  .elite-right::before {
    display: none;
  }

  .elite-item-bullet {
    display: none;
  }
}

@media screen and (max-width: 576px) {
  .elite-left {
    display: none; /* Removed for mobile */
  }

  .elite-right {
    gap: 3rem;
  }

  .elite-item {
    padding-left: 1.5rem;
    border-left: 2px solid hsla(var(--second-hue), 8%, 50%, 0.3);
  }

  .elite-item-bullet {
    display: block; /* Bring back the glowing bullet */
    left: -6px; /* Perfect alignment with the 2px border */
    top: 5px;
    width: 10px;
    height: 10px;
  }

  .elite-item-header {
    margin-bottom: 0.75rem;
  }

  .elite-item-role {
    font-size: 1.75rem;
  }

  .elite-item-company {
    font-size: var(--small-font-size);
    margin-bottom: 1rem;
  }

  .elite-item-date {
    font-size: 0.8rem;
    padding: 0.25rem 0.75rem;
  }
}
