:root,
[data-bs-theme="dark"] {
  color-scheme: dark;
  --bs-body-color: #dee2e6;
  --bs-body-color-rgb: 222, 226, 230;
  --bs-body-bg: #212529;
  --bs-body-bg-rgb: 33, 37, 41;
  --bs-emphasis-color: #fff;
  --bs-emphasis-color-rgb: 255, 255, 255;
  --bs-secondary-color: rgba(222, 226, 230, 0.75);
  --bs-secondary-color-rgb: 222, 226, 230;
  --bs-secondary-bg: #343a40;
  --bs-secondary-bg-rgb: 52, 58, 64;
  --bs-tertiary-color: rgba(222, 226, 230, 0.5);
  --bs-tertiary-color-rgb: 222, 226, 230;
  --bs-tertiary-bg: #c29f81;
  --bs-tertiary-bg-rgb: #0a0a0a;
  --bs-primary-text-emphasis: #6ea8fe;
  --bs-secondary-text-emphasis: #a7acb1;
  --bs-success-text-emphasis: #75b798;
  --bs-info-text-emphasis: #6edff6;
  --bs-warning-text-emphasis: #ffda6a;
  --bs-danger-text-emphasis: #ea868f;
  --bs-light-text-emphasis: #f8f9fa;
  --bs-dark-text-emphasis: #dee2e6;
  --bs-primary-bg-subtle: #031633;
  --bs-secondary-bg-subtle: #161719;
  --bs-success-bg-subtle: #051b11;
  --bs-info-bg-subtle: #032830;
  --bs-warning-bg-subtle: #332701;
  --bs-danger-bg-subtle: #2c0b0e;
  --bs-light-bg-subtle: #343a40;
  --bs-dark-bg-subtle: #1a1d20;
  --bs-primary-border-subtle: #084298;
  --bs-secondary-border-subtle: #41464b;
  --bs-success-border-subtle: #0f5132;
  --bs-info-border-subtle: #087990;
  --bs-warning-border-subtle: #997404;
  --bs-danger-border-subtle: #842029;
  --bs-light-border-subtle: #495057;
  --bs-dark-border-subtle: #343a40;
  --bs-heading-color: inherit;
  --bs-link-color: #6ea8fe;
  --bs-link-hover-color: #8bb9fe;
  --bs-link-color-rgb: 110, 168, 254;
  --bs-link-hover-color-rgb: 139, 185, 254;
  --bs-code-color: #e685b5;
  --bs-highlight-color: #dee2e6;
  --bs-highlight-bg: #664d03;
  --bs-border-color: #495057;
  --bs-border-color-translucent: rgba(255, 255, 255, 0.15);
  --bs-form-valid-color: #75b798;
  --bs-form-valid-border-color: #75b798;
  --bs-form-invalid-color: #ea868f;
  --bs-form-invalid-border-color: #ea868f;
}
/* =========================================================
   GLOBAL VARIABLES
   ========================================================= */

:root {
  --primary-color: #faf7f2;
  --accent-color: #c29f81;
  --background-color: #0a0a0a;
  --secondary-color: #8a8985;

  --main-font: "Cormorant Garamond", serif;
  --plain-font: "Space Grotesk", sans-serif;
}

/* =========================================================
   GLOBAL RESET & BASE
   ========================================================= */

/* Makes width and height calculations more predictable */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Smooth scrolling for anchor links */
html {
  scroll-behavior: smooth;
}

/* Main body
   Bootstrap controls the page/container width,
   so we DON'T limit the body with max-width. */
body {
  margin: 0;
  padding: 0;

  background-color: var(--background-color);
  color: var(--primary-color);

  font-family: var(--plain-font);
}

/* =========================================================
   GLOBAL CONTENT WIDTH
   ========================================================= */

/*
  Prevents the portfolio from becoming too wide
  on large desktop screens.

  Bootstrap containers are allowed to grow quite large
  on very wide screens. Limiting them creates a more
  focused and balanced layout.
*/

/* =========================================================
   INDEX SECTIONS
   ========================================================= */

.index {
  padding: 50px 100px 100px 100px;
  max-width: 1500px;
  display: block;
  margin: 0 auto;
}

/* =========================================================
   GOOGLE FONT HELPER CLASSES
   ========================================================= */

.cormorant-garamond {
  font-family: var(--main-font);
  font-optical-sizing: auto;
  font-style: normal;
}

.space-grotesk {
  font-family: var(--plain-font);
  font-optical-sizing: auto;
  font-style: normal;
}

/* =========================================================
   GENERAL TYPOGRAPHY
   ========================================================= */

h1 {
  font-family: var(--main-font);
  font-size: 120px;
  color: var(--primary-color);
}

h2 {
  font-family: var(--main-font);
  font-size: 32px;
  font-weight: 400;
  font-style: italic;
  color: var(--accent-color);
}

h3 {
  font-family: var(--plain-font);
  font-size: 18px;
  font-weight: 400;
  color: var(--primary-color);
}

h4 {
  padding: 5px;

  font-family: var(--plain-font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;

  color: var(--secondary-color);
}

h5 {
  padding: 35px 0 5px;

  font-family: var(--plain-font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;

  color: var(--secondary-color);
}

h6 {
  padding: 35px 0 5px;

  font-family: var(--plain-font);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;

  color: var(--accent-color);
}

/* =========================================================
   LINKS
   ========================================================= */

a {
  font-family: var(--plain-font);
  text-decoration: none;
}

/* =========================================================
   NAVBAR
   ========================================================= */

.logo {
  width: 60px;
  height: 50px;
}

.navbar {
  background-color: rgba(10, 10, 10, 0.9) !important;

  border-bottom: 1px solid rgba(194, 159, 129, 0.2);
}
/*.dropdown-item:focus {
  background-color: var(--accent-color);
  
}*/
/* =========================================================
   NAVBAR DROPDOWN
   Custom styling to override Bootstrap default blue
========================================================= */

.navbar .dropdown-menu {
  background-color: #212529;
  border: 1px solid rgba(194, 159, 129, 0.2);
  border-radius: 6px;
  overflow: hidden;
}

/* Dropdown links */

.navbar .dropdown-menu .dropdown-item {
  color: var(--primary-color);

  background-color: transparent;

  font-family: var(--plain-font);
  font-size: 15px;

  transition:
    background-color 0.25s ease,
    color 0.25s ease;
}

/* Hover */

.navbar .dropdown-menu .dropdown-item:hover {
  background-color: rgba(194, 159, 129, 0.15);

  color: var(--primary-color);
}

/* Selected page */

.navbar .dropdown-menu .dropdown-item.active {
  background-color: var(--accent-color) !important;

  color: var(--background-color) !important;
}

/* Remove Bootstrap blue when clicking */

.navbar .dropdown-menu .dropdown-item:active {
  background-color: var(--accent-color) !important;

  color: var(--background-color) !important;
}

/* Remove Bootstrap blue focus state */

.navbar .dropdown-menu .dropdown-item:focus {
  background-color: transparent;

  color: var(--primary-color);
}

/* Focus + active */

.navbar .dropdown-menu .dropdown-item.active:focus {
  background-color: var(--accent-color) !important;

  color: var(--background-color) !important;
}

/* =========================================================
   HERO
   ========================================================= */

/* .hero {
  padding: 40px 20px 20px;
} */

.approach-main {
  font-family: var(--main-font);
  font-size: 38px;

  color: var(--primary-color);
}

.approach-text {
  font-family: var(--plain-font);
  font-size: 15px;

  color: var(--secondary-color);
}

.navigation-links {
  display: flex;

  justify-content: flex-start;

  margin-top: 40px;

  font-family: var(--plain-font);
  font-size: 12px;
  font-weight: 700;
}
.back-to-top-link {
  color: var(--accent-color);
}

.index-section {
  color: var(--accent-color);
}
.section {
  margin-top: 30px;
  margin-bottom: 50px;
}

span.fullstack {
  font-family: var(--plain-font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;

  color: var(--secondary-color);
  font-style: normal;
}

/* =========================================================
   GENERAL BUTTON / LINK STYLES
   ========================================================= */

.explore-link,
.email-link,
.buton-download,
.github-link {
  padding: 15px 30px;

  background-color: var(--accent-color);
  color: var(--background-color);

  border-radius: 4px;
}

.email-link {
  border: none;
  cursor: pointer;
  font: inherit;
}

.dev-journey-link,
.shecodes-link {
  padding: 15px 30px;

  background-color: var(--background-color);
  color: var(--primary-color);

  border-radius: 4px;
}

/* =========================================================
   SECTIONS
   ========================================================= */
.highlight-skills-home {
  color: var(--accent-color);
}

/* =========================================================
   FEATURED PROJECTS
========================================================= */

.featured-projects {
  width: 100%;
}

/* =========================================================
   FEATURED PROJECTS INTRO
========================================================= */

.featured-projects-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
}

.featured-projects-intro .approach-main {
  margin-bottom: 0;
}

.featured-projects-intro .approach-text {
  margin-bottom: 0;
}

/* =========================================================
   PROJECT CARDS GRID
========================================================= */

.container-index-card {
  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 2rem;

  width: 100%;
}

/* =========================================================
   PROJECT CARD
========================================================= */

.featured-project-card {
  display: flex;
  flex-direction: column;
  align-items: center;

  min-height: 420px;

  margin: 0;
  padding: 2.5rem 2rem;

  background-color: #202329;

  border: 1px solid rgba(194, 159, 129, 0.12);
  border-radius: 6px;

  box-shadow: 0 0 0 rgba(194, 159, 129, 0);

  text-align: center;

  transition:
    transform 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease,
    background-color 0.4s ease;
}

/* =========================================================
   CARD HOVER
========================================================= */

.featured-project-card:hover {
  transform: translateY(-8px);

  background-color: #24272d;

  border-color: rgba(194, 159, 129, 0.5);

  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.35),
    0 0 18px rgba(194, 159, 129, 0.18);
}

/* =========================================================
   PROJECT ICON
========================================================= */

.featured-project-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 70px;
  height: 70px;

  margin-bottom: 2rem;

  border: 2px solid var(--accent-color);
  border-radius: 50%;

  color: var(--primary-color);

  font-size: 1.8rem;

  transition:
    transform 0.4s ease,
    background-color 0.4s ease,
    color 0.4s ease;
}

.featured-project-card:hover .featured-project-icon {
  transform: translateY(-4px) rotate(5deg);

  background-color: var(--accent-color);

  color: var(--background-color);
}

/* =========================================================
   PROJECT TITLE
========================================================= */

.featured-project-card h6 {
  margin-bottom: 1.2rem;

  color: var(--accent-color);

  font-family: var(--plain-font);
  font-size: 1rem;
  font-weight: 600;

  letter-spacing: 0.03em;
}

/* =========================================================
   PROJECT DESCRIPTION
========================================================= */

.featured-project-card .card-text {
  max-width: 320px;

  margin: 0;

  color: var(--primary-color);

  font-family: var(--plain-font);
  font-size: 14px;

  line-height: 1.8;
}

/* =========================================================
   PROJECT LINK
========================================================= */

.featured-project-link {
  margin-top: auto;
  padding-top: 2rem;
}

.featured-project-card .primary-link {
  display: inline-block;

  padding: 12px 24px;

  border: 1px solid var(--accent-color);
  border-radius: 4px;

  background-color: transparent;

  color: var(--primary-color);

  font-family: var(--plain-font);
  font-size: 11px;
  font-weight: 500;

  letter-spacing: 1px;

  text-decoration: none;

  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.featured-project-card .primary-link:hover {
  transform: translateY(-2px);

  background-color: var(--accent-color);

  color: var(--background-color);
}
/* =========================================================
   APPROACH SECTION
   ========================================================= */

.approach-container {
  margin: 20px;
  padding: 40px;

  border-radius: 900px;

  box-shadow: 0 0 10px 0 var(--accent-color);
}

p.plain-text {
  font-family: var(--plain-font);
  font-size: 16px;
  line-height: 35px;
  letter-spacing: 1px;
}

/* =========================================================
   ABOUT / EXPERIENCE
   ========================================================= */
div.about-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 100px 120px;
}
.about-intro {
  max-width: 750px;
  margin-bottom: 90px;
}
.aboutme-eyebrow {
  margin-bottom: 20px;

  color: var(--accent-color);

  font-family: var(--plain-font);
  font-size: 12px;
  font-weight: 600;

  letter-spacing: 3px;
}
.approach-main-about {
  font-family: var(--main-font);
  font-size: 38px;

  color: var(--primary-color);
}

.approach-text-about {
  font-family: var(--plain-font);
  font-size: 15px;

  color: var(--secondary-color);
}
p.main-years {
  font-family: var(--main-font);
  font-size: 80px;

  color: var(--accent-color);
}

p.experience {
  font-family: var(--plain-font);
  font-size: 14px;

  color: var(--secondary-color);
}
.plain-text-about {
  font-family: var(--plain-font);
  font-size: 16px;

  letter-spacing: 0.3px;
}

/* =========================================================
   ABOUT IMAGE
   ========================================================= */

img.she-codes {
  /*width: 835px;
  height: 455px;*/
  aspect-ratio: 16 / 10;
  width: 50%;
  display: block;
  margin: 0 auto;
}

/* =========================================================
   ABOUT / SECTION SPANS
   ========================================================= */

/* Avoid styling every <span> globally.
   These are the spans that actually need this colour. */

span.about,
span.skills {
  color: var(--primary-color);
}
.hightlight {
  color: var(--accent-color);
}

/* =========================================================
   SOFT SKILLS
   ========================================================= */

/* .skills-title  {
  text-align: left;
} */

ul.soft-skills {
  margin: 0;
  padding-left: 0;

  font-family: var(--plain-font);
  line-height: 1.6;

  color: var(--primary-color);

  list-style: none;
}

/* Individual skill */

.skills-list {
  padding: 5px 30px 20px;

  cursor: pointer;

  transition: color 0.3s ease;
}

.skills-list.active {
  color: var(--accent-color);
}

/* Explanation hidden by default */

.explanation-list {
  display: block;

  max-height: 0;

  margin: 0;

  overflow: hidden;

  opacity: 0;

  transition:
    max-height 0.4s ease,
    opacity 0.3s ease,
    margin 0.4s ease;
}

/* Explanation visible when JavaScript
   adds the .show class */

.explanation-list.show {
  max-height: 150px;

  margin-top: 12px;

  opacity: 1;
}

/* =========================================================
   CODE SKILLS SECTION
   ========================================================= */
.code-skills-p {
  font-family: var(--plain-font);
}
.code-skills-title {
  padding: 50px;
}
.code-titles {
  margin-bottom: 35px;
}
/* =========================================================
   SKILLS ICONS SECTION
   ========================================================= */

.skills-icons-section {
  width: 85%;
  max-width: 1100px;
  margin: 80px auto 60px;
}

/* Section title */
.skills-icons-title {
  text-align: center;
  margin-bottom: 50px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-style: italic;
  font-weight: 400;
}

/* =========================================================
   SKILLS GRID
   ========================================================= */

.skills-icons-grid {
  display: grid;

  /* Desktop: 3 columns */
  grid-template-columns: repeat(3, 1fr);

  column-gap: 70px;
  row-gap: 35px;
}

/* Each skill */
.skill-icon-item {
  display: flex;
  align-items: center;
  gap: 15px;

  min-height: 55px;
}

/* Icons */
.skill-icon {
  width: 45px;
  min-width: 45px;

  font-size: 40px;
  color: #c29f81;

  text-align: center;
}

/* Skill names */
.skill-icon-item span {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.95rem;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {
  .skills-icons-section {
    width: 85%;
    margin-top: 70px;
  }

  .skills-icons-grid {
    /* Tablet: 2 columns */
    grid-template-columns: repeat(2, 1fr);

    column-gap: 50px;
    row-gap: 30px;
  }

  .skills-icons-title {
    margin-bottom: 40px;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 575px) {
  .skills-icons-section {
    width: 88%;
    margin-top: 60px;
    margin-bottom: 50px;
  }

  .skills-icons-title {
    font-size: 1.8rem;
    margin-bottom: 35px;
  }

  .skills-icons-grid {
    /* Mobile: 1 column */
    grid-template-columns: 1fr;

    row-gap: 25px;
  }

  .skill-icon-item {
    justify-content: flex-start;
  }

  .skill-icon {
    width: 45px;
    min-width: 45px;
    font-size: 38px;
  }

  .skill-icon-item span {
    font-size: 0.9rem;
  }
}

/* =========================================================
   JOURNEY SECTION
   ========================================================= */

/*
  The Journey section is intentionally independent from
  Bootstrap's .row system.

  This prevents Bootstrap's negative row margins from
  affecting the alignment of the arrows and text.
*/

.journey-page {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 30px 60px;
}

/* =========================================================
   JOURNEY HEADER
   ========================================================= */

.journey-header {
  margin-bottom: 70px;
}

.journey-header .approach-main {
  margin: 0;
}

/* =========================================================
   JOURNEY CONTAINER
   ========================================================= */

.journey {
  width: 100%;
  max-width: 850px;

  margin: 0 auto;
  padding: 0;

  text-align: center;
}

/* =========================================================
   EACH JOURNEY STEP
   ========================================================= */

/*
  Each step contains:

  1. The clickable title
  2. The hidden explanation

  Keeping these elements together makes the layout
  much easier to control responsively.
*/

.journey-step {
  width: 100%;
  margin: 0 auto;
}

/* =========================================================
   JOURNEY TITLE
   ========================================================= */

/*
  This is a BUTTON rather than a paragraph because
  the user clicks it to reveal content.
*/

.journey-main {
  display: block;

  width: 100%;
  max-width: 700px;

  margin: 0 auto;
  padding: 10px 20px;

  border: 0;
  background: transparent;

  font-family: var(--plain-font);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 2px;
  line-height: 1.5;

  color: var(--primary-color);

  text-align: center;

  cursor: pointer;

  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

/*
  Number of each step.
*/

.journey-main span {
  color: var(--accent-color);
}

/*
  Hover state.
*/

.journey-main:hover {
  color: var(--accent-color);
}

/*
  Active step.

  Your JavaScript can add .active when the
  explanation is open.
*/

.journey-main.active {
  color: var(--accent-color);
}

/* =========================================================
   JOURNEY EXPLANATION
   ========================================================= */

/*
  Hidden by default.

  JavaScript adds .show when the user clicks
  the corresponding journey title.
*/

.journey-plain-text {
  width: 100%;
  max-width: 700px;

  margin: 0 auto;
  padding: 0 20px;

  max-height: 0;

  overflow: hidden;

  opacity: 0;

  font-family: var(--plain-font);
  font-size: 14px;
  line-height: 1.8;

  color: var(--primary-color);

  text-align: center;

  transition:
    max-height 0.5s ease,
    opacity 0.3s ease,
    margin 0.4s ease,
    padding 0.4s ease;
}

/*
  Text inside the explanation.

  This avoids the default browser margins
  creating unexpected spacing.
*/

.journey-plain-text p {
  margin: 10px 0 0;
}

/*
  Highlighted words such as:

  Administration
  Access and SQL
  SheCodes
  etc.
*/

.journey-plain-text .highlight {
  color: var(--accent-color);
}

/* =========================================================
   OPEN JOURNEY EXPLANATION
   ========================================================= */

.journey-plain-text.show {
  max-height: 400px;

  margin: 0 auto 10px;

  padding: 10px 20px 20px;

  opacity: 1;
}

/* =========================================================
   ARROWS
   ========================================================= */

/*
  THIS is the important part for your arrow problem.

  Instead, this container is a simple flexbox.

  justify-content: center
  -----------------------
  Centers horizontally.

  align-items: center
  -------------------
  Centers vertically.
*/

.journey-arrow {
  display: flex;

  width: 100%;

  justify-content: center;
  align-items: center;

  margin: 10px 0;
  padding: 15px 0;

  color: var(--accent-color);

  text-align: center;
}

/*
  The Font Awesome icon itself.

  No Bootstrap padding is necessary here.
*/

.journey-arrow i {
  display: block;

  margin: 0;
  padding: 0;

  font-size: 1.5rem;

  line-height: 1;

  transition:
    transform 0.3s ease,
    color 0.3s ease;
}

/*
  Small visual interaction.
*/

.journey-arrow:hover i {
  color: var(--primary-color);

  transform: translateY(3px);
}

/* =========================================================
   SHECODES LINK
   ========================================================= */

a.shecodes-profile {
  display: inline-block;

  margin-left: 5px;

  color: var(--primary-color);

  text-decoration: none;

  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

a.shecodes-profile:hover {
  color: var(--accent-color);

  transform: translateY(-2px);
}

/* =========================================================
   JOURNEY NAVIGATION
   ========================================================= */

.journey-navigation,
.skills-navigation {
  display: flex;

  justify-content: center;
  align-items: center;

  flex-wrap: wrap;

  gap: 15px;

  margin-top: 70px;
}

/*
  Remove the old generic margin from navigation
  when it is used in this section.
*/

.journey-navigation a {
  margin: 0;
}

/* =========================================================
   TABLET JOURNEY
   ========================================================= */

@media (max-width: 991px) {
  .journey-page {
    padding: 70px 25px 50px;
  }

  .journey-header {
    margin-bottom: 55px;
  }

  .journey {
    max-width: 750px;
  }

  .journey-plain-text {
    max-width: 650px;
  }
}

/* =========================================================
   MOBILE JOURNEY
   ========================================================= */

@media (max-width: 767px) {
  .journey-page {
    width: 100%;

    padding: 50px 15px 40px;
  }

  /* -----------------------------------------
     HEADER
  ----------------------------------------- */

  .journey-header {
    margin-bottom: 45px;
  }

  .journey-header .approach-main {
    font-size: 28px;
    line-height: 1.2;
  }

  /* -----------------------------------------
     JOURNEY
  ----------------------------------------- */

  .journey {
    width: 100%;

    padding: 0;

    text-align: center;
  }

  /* -----------------------------------------
     TITLES
  ----------------------------------------- */

  .journey-main {
    width: 100%;

    padding: 8px 10px;

    font-size: 12px;

    letter-spacing: 1.5px;

    line-height: 1.6;
  }

  /* -----------------------------------------
     EXPLANATIONS
  ----------------------------------------- */

  .journey-plain-text {
    width: 100%;

    padding: 0 10px;

    font-size: 13px;

    line-height: 1.7;

    text-align: center;
  }

  .journey-plain-text.show {
    max-height: 500px;

    padding: 10px 10px 20px;
  }

  /* -----------------------------------------
     ARROWS
  ----------------------------------------- */

  .journey-arrow {
    margin: 5px 0;

    padding: 12px 0;
  }

  .journey-arrow i {
    font-size: 1.3rem;
  }

  /* -----------------------------------------
     NAVIGATION BUTTONS
  ----------------------------------------- */

  .journey-navigation {
    width: 100%;

    flex-direction: column;

    gap: 12px;

    margin-top: 50px;
  }

  .journey-navigation a {
    width: 100%;

    max-width: 280px;

    text-align: center;
  }
}

/* =========================================================
   PROJECTS SECTION
   ========================================================= */

.projects-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 5rem 0;

  background-color: var(--background-color);
  color: var(--primary-color);
}

/* =========================================================
   PROJECT IMAGE AREA
   ========================================================= */

.project-images {
  width: 100%;
  padding: 40px;
}

/* Main project image
    */

.main-project-image {
  display: block;

  width: 100%;
  height: auto;

  border: 1px solid rgba(194, 159, 129, 0.35);
  border-radius: 4px;

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);

  transition:
    opacity 0.4s ease,
    transform 0.5s ease;
}

/* Small hover effect */

.project-images:hover .main-project-image {
  transform: scale(1.01);
}

/* =========================================================
   PROJECT THUMBNAILS
   ========================================================= */

.project-thumbnails {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 1rem;

  margin-top: 1rem;
}

.project-thumbnail {
  display: block;

  width: 100%;

  aspect-ratio: 1 / 1;

  object-fit: cover;

  cursor: pointer;

  border: 1px solid rgba(194, 159, 129, 0.2);
  border-radius: 3px;

  opacity: 0.45;

  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    border-color 0.3s ease;
}

.project-thumbnail:hover {
  opacity: 0.8;

  transform: translateY(-3px);
}

/* Selected thumbnail */

.project-thumbnail.active {
  opacity: 1;

  border-color: var(--accent-color);

  box-shadow: 0 0 0 1px var(--accent-color);
}

/* =========================================================
   PROJECT INFORMATION
   ========================================================= */

.project-info {
  width: 100%;

  padding: 2rem 3rem;
}

/* =========================================================
   PROJECT CONTENT SWITCHING
   ========================================================= */

/* Hidden projects */

.project-content {
  display: none;
}

/* Selected project */

.project-content.active {
  display: block;

  animation: projectFadeIn 0.5s ease forwards;
}

/* Project transition */

@keyframes projectFadeIn {
  from {
    opacity: 0;

    transform: translateY(15px);
  }

  to {
    opacity: 1;

    transform: translateY(0);
  }
}

/* =========================================================
   PROJECT NUMBER
   ========================================================= */

.project-number {
  display: block;

  margin-bottom: 0.8rem;

  font-family: var(--plain-font);
  font-size: 1rem;
  letter-spacing: 0.2em;

  color: var(--accent-color);
}

/* =========================================================
   PROJECT LABEL
   ========================================================= */

.project-label {
  display: block;

  margin-bottom: 1rem;

  font-family: var(--plain-font);
  font-size: 0.75rem;
  font-weight: 500;

  letter-spacing: 0.25em;
  text-transform: uppercase;

  color: var(--accent-color);
}

/* =========================================================
   PROJECT TITLE
   ========================================================= */

.project-title {
  margin: 0 0 0.5rem;

  font-family: var(--main-font);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 400;
  line-height: 0.95;

  color: var(--primary-color);
}

/* =========================================================
   PROJECT SUBTITLE
   ========================================================= */

.project-subtitle {
  margin: 1.2rem 0 1.5rem;

  font-family: var(--plain-font);
  font-size: 1.1rem;
  line-height: 1.5;

  color: var(--accent-color);
}

/* =========================================================
   PROJECT DESCRIPTION
   ========================================================= */

.project-description {
  max-width: 550px;

  margin-bottom: 2.5rem;

  font-family: var(--plain-font);
  font-size: 0.95rem;
  line-height: 1.9;

  color: var(--secondary-color);
}

/* =========================================================
   PROJECT DETAILS
   ========================================================= */

.project-details {
  display: grid;

  grid-template-columns: 1.3fr 1fr;

  gap: 3rem;

  padding-top: 1.8rem;

  border-top: 1px solid rgba(194, 159, 129, 0.25);
  padding-bottom: 10px;
}

.project-details-learned {
  display: block;

  grid-template-columns: 1.3fr 1fr;

  gap: 3rem;

  padding-top: 1.8rem;

  border-top: 1px solid rgba(194, 159, 129, 0.25);
}

/* Detail headings */

.project-detail h3 {
  margin-bottom: 1.2rem;

  font-family: var(--plain-font);
  font-size: 0.75rem;
  font-weight: 500;

  letter-spacing: 0.2em;
  text-transform: uppercase;

  color: var(--accent-color);
}

/* =========================================================
   PROJECT LISTS
   ========================================================= */

.project-features,
.project-technologies {
  margin: 0;
  padding: 0;

  list-style: none;
}

.project-features li,
.project-technologies li {
  margin-bottom: 0.7rem;

  font-family: var(--plain-font);
  font-size: 0.85rem;
  line-height: 1.5;

  color: var(--secondary-color);
}

/* Decorative symbol before each feature */

.project-features li::before {
  content: "⌁";

  display: inline-block;

  margin-right: 0.7rem;

  color: var(--accent-color);

  transform: rotate(-25deg);
}

/* =========================================================
   TECHNOLOGY TAGS
   ========================================================= */

.project-technologies li {
  display: inline-block;

  margin: 0 0.4rem 0.6rem 0;
  padding: 0.35rem 0.75rem;

  border: 1px solid rgba(194, 159, 129, 0.35);
  border-radius: 50px;

  color: var(--primary-color);

  transition:
    background-color 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease;
}

.project-technologies li:hover {
  background-color: var(--accent-color);

  border-color: var(--accent-color);

  color: var(--background-color);
}

/* =========================================================
   PROJECT LINKS / BUTTONS
   ========================================================= */

.project-links {
  display: flex;

  flex-wrap: wrap;

  gap: 1rem;

  margin-top: 3rem;
}

/* =========================================================
   PROJECT LINK
========================================================= */

.project-link {
  display: inline-block;

  margin-top: 25px;
  padding: 12px 22px;

  border: 1px solid var(--accent-color);
  border-radius: 4px;

  background-color: var(--accent-color);

  color: var(--background-color);

  font-family: var(--plain-font);
  font-size: 11px;
  font-weight: 500;

  letter-spacing: 1.5px;
  text-transform: uppercase;

  text-decoration: none;

  opacity: 1;
  visibility: visible;

  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

/* Hover */

.project-link:hover {
  background-color: transparent;

  color: var(--accent-color) !important;

  transform: translateY(-2px);
}
/* Arrow inside buttons */

.project-link span {
  color: inherit;

  font-size: 1.1rem;

  letter-spacing: 0;
}

/* Primary button hover */

.project-link:hover {
  background-color: transparent;

  color: var(--accent-color);

  transform: translateY(-3px);
}

/* GitHub secondary button */

.project-link.secondary {
  background-color: transparent;

  color: var(--accent-color);
}

.project-link.secondary:hover {
  background-color: var(--accent-color);

  color: var(--background-color);
}
/* =========================================================
   MORE PROJECTS PAGE
========================================================= */

.more-projects {
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 100px 120px;
}

/* =========================================================
   PROJECT INTRO
========================================================= */

.projects-intro {
  max-width: 750px;
  margin-bottom: 90px;
}

.projects-eyebrow {
  margin-bottom: 20px;

  color: var(--accent-color);

  font-family: var(--plain-font);
  font-size: 12px;
  font-weight: 600;

  letter-spacing: 3px;
}

.projects-intro h1 {
  margin-bottom: 30px;

  font-size: clamp(70px, 9vw, 120px);
  line-height: 0.9;
}

.projects-intro h1 em {
  color: var(--accent-color);
}

.projects-description {
  max-width: 550px;

  color: var(--secondary-color);

  font-family: var(--plain-font);
  font-size: 15px;
  line-height: 1.8;
}

/* =========================================================
   PROJECT GALLERY
========================================================= */

/*
  Desktop layout:

  ┌──────────────────────┬───────────────┐
  │                      │               │
  │     DICTIONARY       │     WANDER    │
  │                      │               │
  ├──────────────────────┼───────────────┤
  │                      │               │
  │     ROAD-TRIP        │     PYTHON    │
  │                      │               │
  └──────────────────────┴───────────────┘
*/

.projects-gallery {
  display: grid;

  grid-template-columns: 1.35fr 0.65fr;
  grid-template-rows: auto auto;

  column-gap: 40px;
  row-gap: 80px;

  align-items: start;
}

/* =========================================================
   PROJECT CARDS
========================================================= */

.project-card {
  min-width: 0;

  display: flex;
  flex-direction: column;

  align-self: start;
}

/* ---------------------------------------------------------
   PROJECT 01 — DICTIONARY
--------------------------------------------------------- */

.project-card-large {
  grid-column: 1;
  grid-row: 1;
}

/* ---------------------------------------------------------
   PROJECT 02 — WANDER
--------------------------------------------------------- */

.project-card:not(.project-card-large):not(.project-card-python):not(
    .project-card-roadtrip
  ) {
  grid-column: 2;
  grid-row: 1;
}

/* ---------------------------------------------------------
   PROJECT 03 — PYTHON
--------------------------------------------------------- */

.project-card-python {
  grid-column: 2;
  grid-row: 2;

  align-self: start;
}

/* ---------------------------------------------------------
   PROJECT 04 — ROAD-TRIP
--------------------------------------------------------- */

.project-card-roadtrip {
  grid-column: 1;
  grid-row: 2;

  align-self: start;
}

/* =========================================================
   PROJECT IMAGE
========================================================= */

.project-image-button {
  position: relative;

  display: block;

  width: 100%;
  padding: 0;

  border: none;

  background: transparent;

  overflow: hidden;

  cursor: pointer;

  text-align: left;

  line-height: 0;
}

.project-image-button img {
  display: block;

  width: 100%;
  height: auto;

  object-fit: contain;

  filter: grayscale(100%);

  transition:
    transform 0.7s ease,
    filter 0.7s ease;
}

/* =========================================================
   IMAGE HOVER
========================================================= */

.project-image-button:hover img,
.project-image-button:focus-visible img {
  transform: scale(1.04);

  filter: grayscale(0%);
}

/* =========================================================
   IMAGE OVERLAY
========================================================= */

.project-overlay {
  position: absolute;

  top: 50%;
  left: 50%;

  transform: translate(-50%, -45%);

  padding: 12px 22px;

  border: 1px solid rgba(250, 247, 242, 0.7);

  background-color: rgba(10, 10, 10, 0.75);

  color: var(--primary-color);

  font-family: var(--plain-font);
  font-size: 11px;

  letter-spacing: 1.5px;
  text-transform: uppercase;

  opacity: 0;

  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}

.project-image-button:hover .project-overlay,
.project-image-button:focus-visible .project-overlay {
  opacity: 1;

  transform: translate(-50%, -50%);
}

/* =========================================================
   PROJECT INFORMATION
========================================================= */

.projects-gallery .project-info {
  order: -1;

  display: grid;

  grid-template-columns: 45px 1fr;

  width: 100%;

  margin: 0 0 18px;

  padding: 0;
}

.projects-gallery .project-number {
  margin: 5px 0 0;

  color: var(--accent-color);

  font-family: var(--plain-font);
  font-size: 11px;

  letter-spacing: 1px;
}

.projects-gallery .project-info h2 {
  margin: 0 0 5px;

  color: var(--primary-color);

  font-family: var(--main-font);
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
}

.projects-gallery .project-info > p:last-child {
  grid-column: 2;

  margin: 0;

  color: var(--secondary-color);

  font-family: var(--plain-font);
  font-size: 11px;

  letter-spacing: 1px;
}

/* =========================================================
   LIGHTBOX
========================================================= */

.project-lightbox {
  position: fixed;

  inset: 0;

  z-index: 9999;

  display: flex;

  align-items: center;
  justify-content: center;

  padding: 40px;

  background-color: rgba(10, 10, 10, 0.96);

  opacity: 0;
  visibility: hidden;

  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}

.project-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

/* =========================================================
   LIGHTBOX CONTENT
========================================================= */

.lightbox-content {
  display: grid;

  grid-template-columns: minmax(0, 1.5fr) 300px;

  width: min(1100px, 100%);

  max-height: 90vh;

  gap: 50px;

  align-items: center;
}

.lightbox-image-wrapper {
  overflow: hidden;
}

.lightbox-image-wrapper img {
  display: block;

  width: 100%;
  max-height: 80vh;

  object-fit: contain;
}

/* =========================================================
   LIGHTBOX DETAILS
========================================================= */

.lightbox-details {
  padding: 20px 0;
}

.lightbox-number {
  margin-bottom: 15px;

  color: var(--accent-color);

  font-family: var(--plain-font);
  font-size: 11px;

  letter-spacing: 2px;
}

.lightbox-details h2 {
  margin-bottom: 20px;

  color: var(--primary-color);

  font-size: 48px;
  font-style: normal;
}

.lightbox-details p {
  color: var(--secondary-color);

  font-family: var(--plain-font);
  font-size: 14px;

  line-height: 1.8;
}

/* =========================================================
   LIGHTBOX AI TEXT
========================================================= */

.lightbox-code-section {
  margin-top: 25px;
}

.lightbox-code-section h3 {
  margin-bottom: 8px;

  color: var(--accent-color);

  font-family: var(--plain-font);
  font-size: 11px;

  font-weight: 500;

  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.lightbox-code-text {
  margin: 0;

  color: var(--secondary-color);

  font-family: var(--plain-font);
  font-size: 13px;

  line-height: 1.7;

  white-space: normal;
}

/* =========================================================
   LIGHTBOX NAVIGATION
========================================================= */

.lightbox-navigation {
  position: absolute;

  top: 50%;

  transform: translateY(-50%);

  display: none;

  align-items: center;
  justify-content: center;

  width: 50px;
  height: 50px;

  padding: 0;

  border: 1px solid rgba(250, 247, 242, 0.3);

  border-radius: 50%;

  background-color: rgba(10, 10, 10, 0.7);

  color: var(--primary-color);

  font-family: var(--plain-font);

  font-size: 24px;

  cursor: pointer;

  transition:
    background-color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.lightbox-navigation.is-visible {
  display: flex;
}

.lightbox-navigation:hover:not(:disabled) {
  background-color: rgba(194, 159, 129, 0.2);

  border-color: var(--accent-color);
}

.lightbox-navigation:disabled {
  opacity: 0.25;

  cursor: default;
}

.lightbox-prev {
  left: 30px;
}

.lightbox-next {
  right: 30px;
}

/* =========================================================
   PROJECT LINK
========================================================= */

.project-lightbox .more-project-link {
  display: inline-block;

  margin-top: 20px;

  padding: 0;

  border: none;

  background: transparent;

  color: var(--accent-color) !important;

  font-family: var(--plain-font);

  font-size: 12px;

  letter-spacing: 1px;

  text-transform: none;

  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.project-lightbox .more-project-link:hover {
  background: transparent;

  color: var(--primary-color) !important;

  transform: translateX(5px);
}
/* =========================================================
   LIGHTBOX PROJECT LINKS
========================================================= */

.lightbox-project-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-top: 20px;
}
/* =========================================================
   LIGHTBOX CLOSE
========================================================= */

.lightbox-close {
  position: absolute;

  top: 30px;
  right: 40px;

  width: 45px;
  height: 45px;

  border: 1px solid rgba(250, 247, 242, 0.3);

  border-radius: 50%;

  background: transparent;

  color: var(--primary-color);

  font-family: var(--plain-font);

  font-size: 30px;
  font-weight: 300;

  cursor: pointer;

  transition:
    background-color 0.3s ease,
    transform 0.3s ease;
}

.lightbox-close:hover {
  background-color: rgba(194, 159, 129, 0.15);

  transform: rotate(90deg);
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {
  .more-projects {
    padding: 150px 50px 80px;
  }

  /*
    Keep the same four-card structure,
    but make both columns equal.
  */

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

    grid-template-rows: auto auto;

    column-gap: 25px;
    row-gap: 50px;
  }

  .project-card-large {
    grid-column: 1;
    grid-row: 1;
  }

  .project-card-python {
    grid-column: 2;
    grid-row: 2;
  }

  .project-card-roadtrip {
    grid-column: 1;
    grid-row: 2;
  }

  .project-card:not(.project-card-large):not(.project-card-python):not(
      .project-card-roadtrip
    ) {
    grid-column: 2;
    grid-row: 1;
  }

  /* Lightbox */

  .lightbox-content {
    grid-template-columns: 1fr;

    max-height: 90vh;

    overflow-y: auto;
  }

  .lightbox-details {
    padding: 0;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {
  .more-projects {
    padding: 130px 25px 70px;
  }

  .projects-intro {
    margin-bottom: 60px;
  }

  .projects-intro h1 {
    font-size: 65px;
  }

  /*
    One column on mobile.
    DOM order:

    Dictionary
    Wander
    Python
    Road-Trip
  */

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

    grid-template-rows: auto;

    gap: 55px;
  }

  .project-card-large,
  .project-card-python,
  .project-card-roadtrip,
  .project-card:not(.project-card-large):not(.project-card-python):not(
      .project-card-roadtrip
    ) {
    grid-column: 1;
    grid-row: auto;
  }

  .projects-gallery .project-info h2 {
    font-size: 28px;
  }

  /* Lightbox */

  .project-lightbox {
    padding: 25px;
  }

  .lightbox-content {
    gap: 25px;
  }

  .lightbox-details h2 {
    font-size: 38px;
  }

  .lightbox-close {
    top: 15px;
    right: 15px;
  }
}
/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {
  .more-projects {
    padding: 150px 50px 80px;
  }

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

    gap: 50px 25px;
  }

  .project-card-large {
    grid-column: 1 / -1;

    grid-row: auto;
  }

  .lightbox-content {
    grid-template-columns: 1fr;

    max-height: 90vh;

    overflow-y: auto;
  }

  .lightbox-details {
    padding: 0;
  }
}

@media (max-width: 600px) {
  .more-projects {
    padding: 130px 25px 70px;
  }

  .projects-intro {
    margin-bottom: 60px;
  }

  .projects-intro h1 {
    font-size: 65px;
  }

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

    gap: 55px;
  }

  .project-card-large {
    grid-column: auto;
  }

  .project-info h2 {
    font-size: 28px;
  }

  .project-lightbox {
    padding: 25px;
  }

  .lightbox-content {
    gap: 25px;
  }

  .lightbox-details h2 {
    font-size: 38px;
  }

  .lightbox-close {
    top: 15px;
    right: 15px;
  }
}

/* =========================================================
   TABLET
   Bootstrap breakpoint: lg = 992px
   ========================================================= */

@media (max-width: 991px) {
  /*
    Bootstrap will stack your col-lg-6 elements
    automatically below 992px.
  */
  .index {
    padding: 40px 20px 20px;
  }
  .project-info {
    padding: 2rem 1rem;
  }

  .project-title {
    font-size: clamp(3rem, 8vw, 4.5rem);
  }

  .project-details {
    gap: 2rem;
  }
}
/* =========================================================
   FEATURED PROJECTS-INDEX — TABLET
========================================================= */

@media (max-width: 900px) {
  .container-index-card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .featured-projects-intro {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* =========================================================
   FEATURED PROJECTS-INDEX — MOBILE
========================================================= */

@media (max-width: 600px) {
  .container-index-card {
    grid-template-columns: 1fr;

    gap: 1.5rem;
  }

  .featured-project-card {
    min-height: auto;

    padding: 2.5rem 1.5rem;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {
  /*
    IMPORTANT:
    We don't apply text-align: center to the whole body.
    That would affect every section of the portfolio.
  */

  h1 {
    font-size: 80px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 16px;
  }

  /* -----------------------------------------
     GENERAL MOBILE
  ----------------------------------------- */

  p.approach-main {
    font-size: 22px;
  }

  a.navigation-links {
    margin: auto;
    padding: 1px;

    font-size: 10px;
  }
  .navigation-links {
    display: flex;

    justify-content: center;
    align-items: center;

    flex-wrap: wrap;

    gap: 15px;

    margin-top: 70px;
  }

  h3.skills-home-phone {
    text-align: justify;
  }

  /* -----------------------------------------
     INDEX / FEATURED PROJECTS
  ----------------------------------------- */
  .index {
    padding: 40px 20px 20px;
  }
  /* div.featured-projects {
    padding: 20px 0 5px;
  } */

  /* -----------------------------------------
     ABOUT --CAMBIAR 
  ----------------------------------------- */

  

  /* -----------------------------------------
     SOFT SKILLS
  ----------------------------------------- */

  /* -----------------------------------------
     PROJECTS
  ----------------------------------------- */

  .projects-container {
    padding: 3rem 1rem;
  }

  .project-images {
    padding: 10px;
  }

  .project-info {
    padding: 2.5rem 0.25rem 1rem;
  }

  .project-title {
    font-size: clamp(2.8rem, 14vw, 4rem);
  }

  .project-subtitle {
    font-size: 1rem;
  }

  .project-description {
    font-size: 0.9rem;
    line-height: 1.8;
  }

  /* Stack project details vertically */

  .project-details {
    grid-template-columns: 1fr;

    gap: 2rem;
  }

  /* Smaller gap between thumbnails */

  .project-thumbnails {
    gap: 0.5rem;
  }

  /* Stack buttons */

  .project-links {
    flex-direction: column;
  }

  .project-link {
    width: 100%;
  }
}

/* =========================================================
   VERY SMALL MOBILE SCREENS
   ========================================================= */

@media (max-width: 400px) {
  h1 {
    font-size: 65px;
  }

  .project-title {
    font-size: 2.7rem;
  }

  .project-info {
    padding-left: 0;
    padding-right: 0;
  }

  .project-thumbnail {
    border-radius: 2px;
  }
}
.footer-link {
  color: var(--accent-color);
}
.icons-links-contact {
  color: var(--primary-color);
}
.icons-links-contact:hover {
  cursor: pointer;
}

/* =========================================================
   ABOUT PAGE — RESPONSIVE
   Overrides for mobile / tablet
========================================================= */

@media (max-width: 900px) {
  /* =======================================================
     MAIN ABOUT CONTAINER
  ======================================================= */

  div.about-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 140px 50px 70px;
    box-sizing: border-box;
  }

  /* =======================================================
     ABOUT INTRO
  ======================================================= */

  .about-intro {
    width: 100%;
    max-width: 100%;
    margin-bottom: 80px;
  }

  .aboutme-eyebrow {
    margin-bottom: 22px;
    font-size: 11px;
    letter-spacing: 2.5px;
  }

  .about-intro h1 {
    width: 100%;
    max-width: 100%;
    margin: 0;
    font-size: 68px;
    line-height: 0.92;
    letter-spacing: -0.5px;
  }

  /*
    Prevent "to technology." from breaking apart.
  */

  .about-intro h1 .hightlight {
    white-space: nowrap;
  }

  /* =======================================================
     INTRODUCTION
  ======================================================= */

  .approach-text-about {
    margin-top: 0;
    margin-bottom: 6px;
    font-size: 13px;
  }

  .approach-main-about {
    margin-bottom: 0;
    font-size: 34px;
    line-height: 1.1;
  }

  /* =======================================================
     ABOUT TEXT
  ======================================================= */

  .about-container-text {
    width: 100%;
    max-width: 700px;
    margin: 32px auto 0;
  }

  .plain-text-about {
    width: 100%;
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    letter-spacing: 0.2px;

    /* Better readability on small screens */
    text-align: left !important;
  }

  /* =======================================================
     SOFT SKILLS CONTAINER
  ======================================================= */

  .skills-container-about {
    width: 100%;
    max-width: 700px;
    margin: 75px auto 0;
  }

  .skills-container-about > .container {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }

  /* =======================================================
     RESET BOOTSTRAP ROWS / COLUMNS
  ======================================================= */

  .skills-container-about .row {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .skills-container-about .col-md-2,
  .skills-container-about .col-md-6,
  .skills-container-about .col-md-9 {
    width: 100%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  /* =======================================================
     SOFT SKILLS TITLE
  ======================================================= */

  .skills-title {
    margin: 0 0 40px;
    font-size: 38px;
    line-height: 1;
    text-align: center;
  }

  /* =======================================================
     EXPERIENCE
  ======================================================= */

  p.main-years {
    margin: 0;
    font-size: 70px;
    line-height: 0.9;
    text-align: center;
  }

  p.experience {
    margin: 10px 0 40px;
    font-size: 10px;
    letter-spacing: 1.8px;
    text-align: center;
  }

  /* =======================================================
     SKILLS LIST
  ======================================================= */

  ul.soft-skills {
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;

    font-size: 14px;
    line-height: 1.5;
  }

  .skills-list {
    width: 100%;
    height: auto !important;
    min-height: 0 !important;

    margin: 0 0 18px !important;
    padding: 5px 0 8px !important;

    box-sizing: border-box;
  }

  span.skills {
    display: block;
    width: 100%;
    margin: 0;

    font-size: 14px;
    line-height: 1.4;
  }

  /* =======================================================
     SKILL EXPLANATIONS
  ======================================================= */

  .explanation-list {
    width: 100%;
    max-width: 100%;

    /*
      Keep the existing closed/open behaviour.
    */

    max-height: 0;
    margin: 0 !important;
    padding: 0 !important;

    overflow: hidden;
    opacity: 0;

    font-size: 13px;
    line-height: 1.65;

    transition:
      max-height 0.4s ease,
      opacity 0.3s ease,
      margin 0.4s ease;
  }

  .explanation-list.show {
    max-height: 180px;
    margin-top: 8px !important;
    padding: 0 0 0 20px !important;
    opacity: 1;
  }

  /* =======================================================
     SHE CODES IMAGE
  ======================================================= */

  img.she-codes {
    display: block;

    width: 75%;
    max-width: 500px;
    height: auto;

    aspect-ratio: 16 / 10;

    margin: 35px auto 0 !important;
  }

  /* =======================================================
     BOTTOM NAVIGATION
  ======================================================= */

  #navigation-links {
    display: flex;
    flex-direction: column;
    align-items: center;

    width: 100%;
    gap: 12px;

    margin-top: 45px;
    padding: 0 40px;

    box-sizing: border-box;
  }

  #navigation-links .email-link,
  #navigation-links .dev-journey-link,
  #navigation-links .buton-download {
    width: 100%;
    max-width: 330px;
    box-sizing: border-box;
    text-align: center;
  }

  /* =======================================================
     FOOTER
  ======================================================= */

  .footer {
    padding: 0 35px;
  }

  .footer h4 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;

    font-size: 13px;
    line-height: 1.7;
  }
}

/* =========================================================
   SMALL MOBILE — 600px
========================================================= */

@media (max-width: 600px) {
  /* =======================================================
     MAIN CONTAINER
  ======================================================= */

  div.about-container {
    padding: 125px 25px 55px;
  }

  /* =======================================================
     ABOUT INTRO
  ======================================================= */

  .about-intro {
    margin-bottom: 72px;
  }

  .aboutme-eyebrow {
    margin-bottom: 20px;
    font-size: 10px;
    letter-spacing: 2px;
  }

  .about-intro h1 {
    font-size: 55px;
    line-height: 0.92;
    letter-spacing: -0.4px;
  }

  .about-intro h1 .hightlight {
    white-space: nowrap;
  }

  /* =======================================================
     INTRODUCTION
  ======================================================= */

  .approach-text {
    margin-bottom: 7px;
    font-size: 12px;
  }

  .approach-main {
    font-size: 29px;
    line-height: 1.1;
  }

  /* =======================================================
     ABOUT TEXT
  ======================================================= */

  .about-container-text {
    margin-top: 30px;
  }

  .plain-text-about {
    font-size: 13px;
    line-height: 1.7;
  }

  /* =======================================================
     SOFT SKILLS
  ======================================================= */

  .skills-container-about {
    margin-top: 65px;
  }

  .skills-title {
    margin-bottom: 38px;
    font-size: 34px;
  }

  /* =======================================================
     EXPERIENCE
  ======================================================= */

  p.main-years {
    font-size: 64px;
  }

  p.experience {
    margin-top: 9px;
    margin-bottom: 38px;

    font-size: 9px;
    letter-spacing: 1.5px;
  }

  /* =======================================================
     SKILL ITEMS
  ======================================================= */

  ul.soft-skills {
    font-size: 13px;
  }

  .skills-list {
    margin-bottom: 15px !important;
    padding: 4px 0 7px !important;
  }

  span.skills {
    font-size: 13px;
    line-height: 1.4;
  }

  /* =======================================================
     SKILL EXPLANATIONS
  ======================================================= */

  .explanation-list {
    font-size: 12px;
    line-height: 1.65;
  }

  .explanation-list.show {
    margin-top: 7px !important;
    padding-left: 18px !important;
  }

  /* =======================================================
     SHE CODES IMAGE
  ======================================================= */

  img.she-codes {
    width: 88%;
    margin-top: 35px !important;
  }

  /* =======================================================
     NAVIGATION BUTTONS
  ======================================================= */

  #navigation-links {
    gap: 10px;
    margin-top: 40px;
    padding: 0 25px;
  }

  #navigation-links .email-link,
  #navigation-links .dev-journey-link,
  #navigation-links .buton-download {
    width: 100%;
    max-width: 100%;
  }

  /* =======================================================
     FOOTER
  ======================================================= */

  .footer {
    padding: 0 25px;
  }

  .footer h4 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;

    font-size: 12px;
    line-height: 1.8;
  }
}
