/* :root {
  --color-bg: #0f0f0f;
  --color-bg-secondary: #141414;
  --color-bg-tertiary: #2b2b31;
  --text-primary: #e2e2e2;
  --text-secondary: #a1a1aa;
  --text-highlighted: #e63838;
  --gradient-end: #d61717;
  --gradient-start: #e711a7;
} */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* =========================
   INLINE HEADING DIVIDER
========================= */

section > h2 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* line to the RIGHT of the heading text */
section > h2::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--color-bg-tertiary);
  opacity: 0.9;
}

/* =========================
   INLINE HEADING DIVIDER
========================= */

/* default sections */
section > h2,
/* contact section heading */
.contactTitle p {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* divider line */
section > h2::after,
.contactTitle p::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--color-bg-tertiary);
  opacity: 0.9;
}



body {
  margin: 0;
  background: var(--color-bg);
  color: var(--text-primary);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

/* =========================
   GLOBAL SCROLLBAR
========================= */

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--color-bg-tertiary) var(--color-bg);
}

/* WebKit (Chrome, Edge, Safari) */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
  background-color: var(--color-bg-tertiary);
  border-radius: 999px;
  border: 2px solid var(--color-bg);
  transition: background-color 0.25s ease;
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--text-highlighted);
}


/* =========================
   NAV SEARCH
========================= */

.nav-search {
  position: relative;
}

.nav-search input {
  background: var(--color-bg-secondary);
  border: 1px solid #1f1f1f;
  color: var(--text-primary);
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  font-size: 0.85rem;
  width: 180px;

  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.nav-search input:focus {
  outline: none;
  border-color: var(--color-bg-tertiary);
}

/* Results dropdown */
#search-results {
  position: absolute;
  top: 110%;
  left: 0;
  right: 0;
  background: var(--color-bg-secondary);
  border: 1px solid #1f1f1f;
  border-radius: 10px;
  max-height: 320px;
  overflow-y: auto;
  display: none;
  z-index: 200;
}

.search-result {
  padding: 0.75rem;
  border-bottom: 1px solid #1f1f1f;
  cursor: pointer;
  transition: background 0.25s ease;
}

.search-result:hover {
  background: var(--color-bg-tertiary);
}

.search-result a {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 0.85rem;
}

.search-result span {
  display: block;
  font-size: 0.7rem;
  color: var(--text-secondary);
}



/* =========================
   HOMEPAGE SECTION HEADINGS
========================= */

main > section > h2 {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 2.5rem;

  background: linear-gradient(
    135deg,
    var(--gradient-start),
    var(--gradient-end)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =========================
   INLINE HEADING DIVIDER
========================= */

section > h2,
.contactTitle p {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* gradient ONLY on the text */
section > h2 > span,
.contactTitle p > span {
  background: linear-gradient(
    135deg,
    var(--gradient-start),
    var(--gradient-end)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* divider line */
section > h2::after,
.contactTitle p::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--color-bg-tertiary);
  opacity: 0.9;
}

/* =========================
   HOMEPAGE SECTION HEADINGS
========================= */

h2.mainPage {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 2.5rem;
}

/* Gradient ONLY on homepage h2 text */
h2.mainPage > span {
  background: linear-gradient(
    135deg,
    var(--gradient-start),
    var(--gradient-end)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Divider line */
h2.mainPage::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--color-bg-tertiary);
  opacity: 0.9;
}

/* Content headings (posts & projects) */
main article h2,
main article h3,
main article h4 {
  background: none;
  -webkit-text-fill-color: unset;
  color: var(--text-primary);
}


/* =========================
   HEADER / NAV
========================= */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 15, 15, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-bg-tertiary);
}

nav {
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo img {
  height: 40px;
  width: auto;
  transition: transform 0.3s ease;
}

.nav-logo:hover img {
  transform: scale(1.05);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
  margin-left: auto;
}

nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--text-primary);
}

/* Hamburger Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  gap: 0.4rem;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background-color: var(--text-secondary);
  transition: all 0.3s ease;
  transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation Menu */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  nav {
    flex-wrap: wrap;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-bg-tertiary);
    flex-direction: column;
    gap: 0;
    margin-left: 0 !important;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav-menu.active {
    max-height: 300px;
  }

  .nav-menu li {
    border-bottom: 1px solid var(--color-bg-tertiary);
  }

  .nav-menu li a {
    display: block;
    padding: 1rem 2rem;
    transition: background-color 0.3s ease;
  }

  .nav-menu li a:hover {
    background-color: rgba(230, 56, 56, 0.1);
    color: var(--text-highlighted);
  }
}

/* =========================
   LAYOUT
========================= */
main {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

section {
  margin-bottom: 6rem;
}

h1,
h2,
h3,
h4 {
  margin-top: 0;
}

/* =========================
   SECTION HEADINGS (GLOBAL)
========================= */

section > h2,
.contactTitle p {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  font-size: 2.4rem;
  font-weight: 600;
}

/* Gradient ONLY on the text */
section > h2 > span,
.contactTitle p > span {
  background: linear-gradient(
    135deg,
    var(--gradient-start),
    var(--gradient-end)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Divider line */
section > h2::after,
.contactTitle p::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--color-bg-tertiary);
  opacity: 0.9;
}


/* =========================
   HERO / PROFILE LAYOUT
========================= */
section:first-of-type {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: left;
}

.hero-content {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

/* =========================
   ABOUT SECTION
========================= */
section:nth-of-type(2) div {
  margin-bottom: 2.5rem;
}

section:nth-of-type(2) div h3 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

section:nth-of-type(2) div p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

section:nth-of-type(2) ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

section:nth-of-type(2) ul li {
  background: var(--color-bg-secondary);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

section:nth-of-type(2) ul li:hover {
  transform: translateY(-2px);
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* Profile image */
.pfp {
  width: 280px;
  border-radius: 50%;
  border: 3px solid var(--text-highlighted);
  flex-shrink: 0;
  object-fit: cover;
}

/* Name + roles (stacked) */
.hero-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-text h1 {
  margin: 0;
  font-size: 2.5rem;
}

.hero-text p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 1.1rem;
}

/* Social icons - stacked vertically with text */

.social-links {
  display: flex;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.social-links a img {
  width: 24px;
  height: 24px;
}

.social-links a {
  display: inline-block;
  transition: transform 0.3s ease-in-out;
}

.social-links a:hover {
  transform: scale(1.2);
}


/* About Me Link */
.about-me-link {
  margin: 0;
  margin-top: 0.5rem;
}

.about-me-link a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.about-me-link a:hover {
  color: var(--text-highlighted);
}

/* Partner Link */
.partner-link {
  margin: 0.5rem 0 0 0;
}

.partner-link a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.partner-logo {
  height: 24px;
  width: auto;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.partner-logo[src$=".svg"] {
  filter: invert(100%) sepia(100%) hue-rotate(0deg) saturate(10000%) brightness(0.95) drop-shadow(0 0 4px rgba(230, 56, 56, 0.5));
}

.partner-logo:not([src$=".svg"]) {
  filter: drop-shadow(0 0 4px rgba(230, 56, 56, 0.3));
}

.partner-link a:hover {
  color: var(--text-highlighted);
}

.partner-link a:hover .partner-logo {
  transform: scale(1.1);
}

.partner-link a:hover .partner-logo[src$=".svg"] {
  filter: invert(100%) sepia(100%) hue-rotate(0deg) saturate(10000%) brightness(0.95) drop-shadow(0 0 8px rgba(230, 56, 56, 0.8));
}

.partner-link a:hover .partner-logo:not([src$=".svg"]) {
  filter: drop-shadow(0 0 8px rgba(230, 56, 56, 0.5));
}

/* =========================
   POSTS & PROJECT CARDS
========================= */
article {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: var(--color-bg-secondary);
  border-radius: 14px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--color-bg-tertiary);
  transition: transform 0.3s ease, box-shadow 0.3s ease,
    border-color 0.3s ease;
}

article:hover {
  transform: translateY(-6px);
  border-color: var(--text-highlighted);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.6);
}

/* Thumbnail (LEFT) */
article img {
  width: 300px;

  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

/* Content stack (RIGHT) */
article > div,
.article-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Title */
article h3 {
  margin: 0;
  font-size: 1.1rem;
}

article h3 a {
  color: var(--text-primary);
  text-decoration: none;
}

article h3 a:hover {
  color: var(--text-highlighted);
}

/* Summary */
article p {
  margin: 0.4rem 0 0.6rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* =========================
   TAGS
========================= */
article ul {
  display: flex;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
  list-style: none;
}

article ul li {
  background: var(--color-bg-tertiary);
  color: var(--text-secondary);
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  font-size: 0.7rem;
  transition: background 0.3s ease, color 0.3s ease;
  list-style: none;
}

article:hover ul li {
  background: var(--text-highlighted);
  color: #fff;
}

/* =========================
   RESUME BUTTON
========================= */
.resume-section {
  display: flex;
  margin-top: 2rem;
}

.resume-button {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  color: var(--text-primary);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.resume-button:hover {
  transform: translateY(-2px);
}

.resume-button:a {
  color: var(--text-primary);
}

/* =========================
   RESUME BUTTON – LOCK TEXT COLOR
========================= */

.resume-button,
.resume-button:visited,
.resume-button:hover,
.resume-button:focus,
.resume-button:active {
  color: var(--text-primary) !important;
}


/* =========================
   SINGLE POST / PROJECT
========================= */
main > img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 1.75rem;
}

/* =========================
   EMPLOYMENT & EDUCATION CARDS
========================= */

.experience-card {
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-bg-tertiary);

  /* 👇 difference starts here */
  border-left: 4px solid var(--text-highlighted);
  border-radius: 0;

  padding: 1.5rem 1.75rem;
  margin-bottom: 1.5rem;

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

.experience-card:hover {
  transform: translateX(4px);
  
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 800px) {
  .hero-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-text {
    align-items: center;
  }

  .social-links {
    margin-left: 0;
    justify-content: center;
  }

  h2 {
    display: block;
    text-align: center;
  }

  article {
    flex-direction: column;
  }

  article img {
    width: 100%;
    height: 180px;
  }

  .experience-card {
    flex-direction: column;
  }

  .experience-date {
    text-align: left;
  }
}



/* =========================
   CONTENT STYLING
========================= */

/* Headings */
h1, h2, h3, h4, h5, h6 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

h1 {
  font-size: 2rem;
  color: var(--text-primary);
}

h3 {
  font-size: 1.25rem;
  color: var(--text-primary);
}

h4, h5, h6 {
  font-size: 1rem;
  color: var(--text-primary);
}

/* Lists and Bullets */
ul, ol {
  margin: 1rem 0;
  padding-left: 2rem;
  line-height: 1.8;
}

ul li, ol li {
  margin: 0.5rem 0;
  color: var(--text-primary);
}

ul li::marker {
  color: var(--text-highlighted);
}

ol li::marker {
  color: var(--text-highlighted);
  font-weight: 600;
}

/* Links */
a {
  color: var(--text-highlighted);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

a:hover {
  color: var(--gradient-end);
}

a:visited {
  color: #c74747;
}

/* Code Blocks */
pre {
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-bg-tertiary);
  border-radius: 8px;
  padding: 1.25rem;
  overflow-x: auto;
  margin: 1.5rem 0;
  line-height: 1.5;
}

pre code {
  color: var(--text-primary);
  font-family: "Courier New", monospace;
  font-size: 0.9rem;
}

/* Inline Code */
code {
  background: var(--color-bg-secondary);
  color: var(--text-highlighted);
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-family: "Courier New", monospace;
  font-size: 0.9em;
}

pre code {
  background: transparent;
  color: var(--text-primary);
  padding: 0;
}

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  border: 1px solid var(--color-bg-tertiary);
  border-radius: 8px;
  overflow: hidden;
}

thead {
  background: var(--color-bg-secondary);
  border-bottom: 2px solid var(--color-bg-tertiary);
}

th {
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 600;
  color: var(--text-highlighted);
}

td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--color-bg-tertiary);
  color: var(--text-primary);
}

tbody tr:hover {
  background: var(--color-bg-secondary);
}

tbody tr:last-child td {
  border-bottom: none;
}

/* Blockquotes */
blockquote {
  border-left: 4px solid var(--text-highlighted);
  margin: 1.5rem 0;
  padding: 1rem 1.5rem;
  background: var(--color-bg-secondary);
  border-radius: 4px;
  color: var(--text-secondary);
  font-style: italic;
}

blockquote p {
  margin: 0.5rem 0;
}

/* Horizontal Rule */
hr {
  border: none;
  border-top: 1px solid var(--color-bg-tertiary);
  margin: 2rem 0;
}

/* Paragraph spacing */
p {
  margin: 1rem 0;
  line-height: 1.8;
}
/* =========================
   ARTICLE LINK
========================= */
.article-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.article-link article {
  cursor: pointer;
}

.article-link h3 {
  transition: opacity 0.3s ease;
}

.article-link:hover h3 {
  opacity: 0.7;
}

/* =========================
   RELATED POSTS / PROJECTS
========================= */
.related-posts {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-bg-tertiary);
}

.related-posts h2 {
  margin-bottom: 1.5rem;
}

.posts-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .posts-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

/* =========================
   BACK LINK
========================= */
.back-link {
  margin-top: 2rem;
  padding-top: 1rem;
}

.back-link a {
  display: inline-block;
  color: var(--text-highlighted);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.back-link a:hover {
  transform: translateX(-4px);
  color: var(--gradient-start);
}

/* =========================
   CONTACT SECTION
========================= */
.contactMeContainer {
  max-width: 800px;
  margin: 0 auto 6rem;
}

.contactTitle p {
  margin: 0;
  font-size: 2rem;
  font-weight: 600;
}

.gradientText {
  background: linear-gradient(
    135deg,
    var(--gradient-start),
    var(--gradient-end)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  margin: 0.5rem 0 2rem;
  color: var(--text-secondary);
  font-size: 1rem;
}

.container-readable {
  background: var(--color-bg-secondary);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  border: var(--border-subtle);
  box-shadow: var(--shadow-soft);
}

/* =========================
   CONTACT FORM
========================= */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  background: var(--color-bg);
  border: var(--border-subtle);
  border-radius: var(--border-radius-sm);
  padding: 0.75rem 1rem;
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: border-color var(--transition-base),
              box-shadow var(--transition-base);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-secondary);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--text-highlighted);
  box-shadow: var(--shadow-glow-sm);
}

/* =========================
   CONTACT
========================= */
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  border: none;
}

.button-primary {
  background: linear-gradient(
    135deg,
    var(--gradient-start),
    var(--gradient-end)
  );
  color: #fff;
  transition: transform var(--transition-base),
              box-shadow var(--transition-base);
}

.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-md);
}

.contact-form input,
.contact-form textarea {
  font-family: inherit;          /* match site font */
  border-radius: 10px;           /* match cards */
  resize: none;                  /* disable resizing */
}

/* =========================
   CONTACT OUTER BOX
========================= */
.contactMeContainer {
  max-width: 800px;
}

.container-readable {
  border-radius: 10px; /* match post & project cards */
  border: 1px solid var(--color-bg-tertiary);
}

/* =========================
   BUTTON – FONT + EASING
========================= */
.button {
  font-family: inherit; /* match site font */
  border-radius: 8px;
}

.button-primary {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

/* =========================
   BREADCRUMBS
========================= */
.breadcrumbs {
  margin-bottom: 2rem;
  margin-left: -2rem;
  padding-left: 2rem;
  font-size: 0.85rem;
}

.breadcrumbs ul {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  list-style: none;
  padding: 0;
  margin: 0;

  /* 👇 this is the important part */
  justify-content: flex-start;
}

.breadcrumbs li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-secondary);
}

.breadcrumb-separator {
  color: var(--text-secondary);
  opacity: 0.7;
}

.breadcrumbs a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.breadcrumbs a:hover {
  color: var(--text-highlighted);
}

.breadcrumbs span[aria-current="page"] {
  color: var(--text-primary);
}

.breadcrumbs a {
  color: var(--text-secondary);
  text-decoration: none;

  transition:
    color 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.breadcrumbs a:hover {
  color: var(--text-highlighted);
  transform: translateY(-1px);
}

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

.site-footer {
  border-top: 1px solid var(--color-bg-tertiary);
  background: var(--color-bg-secondary);
  padding: 0rem 0rem 1rem;
}

.footer-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.site-footer h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(
    135deg,
    var(--gradient-start),
    var(--gradient-end)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Social icons */

.footer-socials {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  padding: 0;
  margin: 0 0 2rem;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.25s ease,
    filter 0.25s ease;
}

.footer-socials img {
  width: 26px;
  height: 26px;
}

/* SVG color styling */
.footer-socials img[src$=".svg"] {
  filter: invert(100%) sepia(0%) saturate(0%) brightness(0.85);
}

.footer-socials a:hover {
  transform: translateY(-3px) scale(1.1);
}

/* Meta text */

.footer-meta {
  font-size: 0.85rem;
  color: var(--text-secondary);
  display: flex;
  flex-direction: column;
  gap: 0rem;
}

.footer-meta p {
  margin: 10px;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.footer-made-with {
  color: var(--text-secondary);
  font-style: italic;
}

/* Mobile spacing */
@media (max-width: 600px) {
  .site-footer {
    padding: 2.5rem 1.5rem 2rem;
  }
}
