: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);
}

/* =========================================================
   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;
}

.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);
}

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

.card-text {
  font-family: var(--plain-font);
  font-size: 14px;

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

.card {
  margin: 20px;
  padding: 10px 20px;
  border-radius: 4px;

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

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

.primary-link {
  display: inline-block;

  padding: 15px 30px;

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

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

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

.primary-link:hover {
  color: var(--accent-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 {
  padding: 50px 20px;
}

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 {
  padding: 50px 100px;
}

/* =========================================================
   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 {
  width: 100%;

  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 {
  display: inline-flex;

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

  gap: 2rem;

  min-width: 160px;

  padding: 0.9rem 1.4rem;

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

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

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

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

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

/* 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);
}

/* =========================================================
   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;
  }
}

/* =========================================================
   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;
  }

  img.she-codes {
    display: none;
  }

  p.plain-text-about {
    padding: 70px 20px;

    font-size: 12px;
    line-height: 1.7;

    text-align: justify;
  }
  div.skills-container-about {
    padding: 0px 20px;
  }
  div.about-container {
    padding: 50px 0px;
  }

  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
  ----------------------------------------- */

  span.about {
    display: none;
  }

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

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

    font-size: 12px;

    text-align: left;
  }

  /* -----------------------------------------
     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;
}
