/* =========================
   RESET + BASE
========================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #0e0e0e;
  --dark: #1a1a1a;
  --mid: #595959;
  --light: #a0a0a0;
  --border: #ebebeb;
  --bg: #f9f9f8;
  --white: #ffffff;
  --max: 1160px;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--black);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* =========================
   DARK MODE (CLEAN VERSION)
========================= */

body.dark {
  background: #0e0e0e;
  color: #f5f5f5;
}

/* TEXT */
body.dark p,
body.dark li,
body.dark .footer-note,
body.dark .footer-meta,
body.dark .section-subtitle {
  color: #a0a0a0;
}

body.dark h1,
body.dark h2,
body.dark h3,
body.dark .hero-headline,
body.dark .work-title,
body.dark .cs-title {
  color: #ffffff;
}

/* BORDERS */
body.dark hr.rule,
body.dark .work-item,
body.dark .skill-card,
body.dark .cs-section-label,
body.dark .cs-list li,
body.dark .principle,
body.dark .exp-right,
body.dark .exp-item::after {
  border-color: #2a2a2a;
}

/* HEADER */
body.dark header {
  background: rgba(14,14,14,0.9);
}

/* NAV */
body.dark .topbar-nav a {
  color: #888;
}
body.dark .topbar-nav a:hover {
  color: #fff;
}

/* LINKS */
body.dark a {
  color: #f5f5f5;
}

/* HERO */
body.dark .hero-sub {
  color: #b0b0b0;
}

/* WORK */
body.dark .work-desc {
  color: #b0b0b0;
}
body.dark .work-item:hover {
  opacity: 0.85;
}

/* ABOUT */
body.dark .about-content p {
  color: #b0b0b0;
}

/* EXPERIENCE */
body.dark .exp-item p {
  color: #b0b0b0;
}

/* FOOTER */
body.dark .footer {
  background: #0e0e0e;
}

/* IMAGES */
body.dark img {
  opacity: 0.92;
}
  /* ── LAYOUT ── */
  .container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 40px;
  }
  @media (max-width: 768px) { .container { padding: 0 24px; } }

  hr.rule {
    border: none;
    border-top: 1px solid var(--border);
    width: 100%;
  }

  /* ── TOP BAR ── */
  header {
    position: sticky;
    top: 0;
    background: var(--bg);
    z-index: 200;
    /* subtle blur + fade for premium feel */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background: var(--bg);
  }
  .topbar {
    padding: 20px 0 18px;
  }
  .topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 32px;
  }
  .topbar-name {
    font-family: var(--serif);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: var(--black);
    text-decoration: none;
    transition: opacity 0.2s;
    flex-shrink: 0;
  }
  .topbar-name:hover { opacity: 0.45; }

  /* ── NAV LINKS ── */
  .topbar-nav {
    display: flex;
    align-items: baseline;
    gap: 32px;
    list-style: none;
  }
  .topbar-nav a {
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    color: var(--light);
    text-decoration: none;
    position: relative;
    padding-bottom: 1px;
    transition: color 0.22s ease;
  }
  .topbar-nav a::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--black);
    transition: width 0.22s ease;
  }
  .topbar-nav a:hover {
    color: var(--black);
  }
  .topbar-nav a:hover::after {
    width: 100%;
  }
  /* active nav link */
  .topbar-nav a.nav-active {
    color: var(--dark);
  }
  .topbar-nav a.nav-active::after {
    width: 100%;
    background: var(--dark);
    opacity: 0.4;
  }

  /* ── MOBILE NAV ── */
  .topbar-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    flex-direction: column;
    gap: 5px;
    align-self: center;
  }
  .topbar-menu-btn span {
    display: block;
    width: 20px;
    height: 1px;
    background: var(--black);
    transition: transform 0.2s, opacity 0.2s;
  }
  .topbar-menu-btn.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .topbar-menu-btn.open span:nth-child(2) { opacity: 0; }
  .topbar-menu-btn.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  @media (max-width: 640px) {
    .topbar-menu-btn { display: flex; }
    .topbar-nav {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: rgba(249,249,248,0.97);
      border-bottom: 1px solid var(--border);
      flex-direction: column;
      gap: 0;
      padding: 8px 0 16px;
    }
    .topbar-nav.open { display: flex; }
    .topbar-nav li { padding: 0; }
    .topbar-nav a {
      display: block;
      padding: 10px 24px;
      font-size: 0.8rem;
      letter-spacing: 0.1em;
    }
  }

  /* ── HERO ── */
  .hero {
    padding: 104px 0 96px;
    border-bottom: 1px solid var(--border);
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: end;
    row-gap: 40px;
  }
  .hero-eyebrow {
    grid-column: 1 / 3;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--light);
  }
  .hero-headline {
    font-family: var(--serif);
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--black);
    grid-column: 1 / 3;
    max-width: 860px;
  }
  .hero-headline em {
    font-style: italic;
    color: var(--mid);
    letter-spacing: 0;
  }
  .hero-sub {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--mid);
    line-height: 1.8;
    max-width: 400px;
    letter-spacing: 0.01em;
  }
  .hero-cta {
    text-align: right;
    align-self: end;
    display: flex;
    gap: 24px;
  }
  .btn-link {
  
    font-family: var(--sans);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--black);
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    padding-bottom: 3px;
    transition: opacity 0.25s ease;
  }
  .btn-link:hover { opacity: 0.35; }

  @media (max-width: 768px) {
    .hero { padding: 72px 0 64px; }
    .hero-grid { grid-template-columns: 1fr; gap: 28px; }
    .hero-eyebrow { grid-column: 1; }
    .hero-headline { grid-column: 1; font-size: 2.4rem; }
    .hero-cta { text-align: left; }
  }

  /* ── SECTION LABEL — unified system ── */
  .section-label {
    font-size: 0.62rem;
    font-weight: 400;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--mid);
    margin-bottom: 0;
    display: block;
    padding-top: 2px;   /* optical alignment with serif cap-height */
  }
  /* Universal section intro row: label left, rule right */
  .section-header {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 64px;
  }
  .section-header hr {
    border: none;
    border-top: 1px solid var(--border);
  }
  @media (max-width: 768px) {
    .section-header { grid-template-columns: 1fr; gap: 16px; margin-bottom: 48px; }
    .section-header hr { display: none; }
  }

  /* ── SELECTED WORK ── */
  .work {
    padding: 96px 0 0;
    border-bottom: 1px solid var(--border);
  }
  .work-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--border);
  }
  .work-item {
    padding: 52px 0;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    transition: opacity 0.25s ease;
    position: relative;
    text-decoration: none;
    display: block;
    color: inherit;
  }
  .work-item:nth-child(odd)  { padding-right: 64px; border-right: 1px solid var(--border); }
  .work-item:nth-child(even) { padding-left: 64px; }
  .work-item:hover { opacity: 0.65; }
  .work-item:hover .work-title {
    text-decoration: underline;
    text-underline-offset: 6px;
    text-decoration-thickness: 1px;
  }
  .work-num {
    font-family: var(--sans);
    font-size: 0.62rem;
    font-weight: 300;
    letter-spacing: 0.18em;
    color: var(--light);
    margin-bottom: 20px;
    display: block;
  }
  .work-title {
    font-family: var(--serif);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 14px;
    line-height: 1.15;
    letter-spacing: -0.015em;
  }
  .work-desc {
    font-size: 0.875rem;
    font-weight: 300;
    color: var(--mid);
    line-height: 1.8;
    max-width: 340px;
  }
  .work-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 28px;
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--light);
    transition: color 0.25s ease, gap 0.25s ease;
  }
  .work-arrow::after {
    content: '→';
    font-size: 0.75rem;
    transition: transform 0.25s ease;
  }
  .work-item:hover .work-arrow { color: var(--black); gap: 12px; }
  .work-item:hover .work-arrow::after { transform: translateX(3px); }

  @media (max-width: 768px) {
    .work-grid { grid-template-columns: 1fr; }
    .work-item:nth-child(odd)  { padding-right: 0; border-right: none; }
    .work-item:nth-child(even) { padding-left: 0; }
    .work-item { padding: 40px 0; }
  }

  /* ── CASE STUDIES ── */
  .case-studies { padding: 80px 0 0; }
  .case-study {
    padding: 88px 0;
    border-bottom: 1px solid var(--border);
  }
  .case-study:first-of-type { padding-top: 40px; }

  .cs-header {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
    margin-bottom: 64px;
    align-items: start;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border);
  }
  .cs-index {
    font-size: 0.7rem;
    font-weight: 300;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--light);
    padding-top: 8px;
  }
  .cs-title {
    font-family: var(--serif);
    font-size: clamp(2.1rem, 3.5vw, 3.1rem);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--black);
    margin-bottom: 18px;
  }
  .cs-overview {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--mid);
    line-height: 1.8;
    max-width: 560px;
  }

  .cs-body {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
  }
  .cs-toc {
    position: sticky;
    top: 72px;
    align-self: start;
  }
  .cs-toc-item {
    display: block;
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--light);
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    cursor: default;
    transition: color 0.2s;
  }
  .cs-toc-item:last-child { border-bottom: none; }

  .cs-section { margin-bottom: 52px; }
  .cs-section:last-child { margin-bottom: 0; }
  .cs-section-label {
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--light);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
  }
  .cs-section-text {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--dark);
    line-height: 1.85;
    letter-spacing: 0.005em;
  }
  .cs-list {
    list-style: none;
    margin-top: 12px;
  }
  .cs-list li {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--dark);
    padding: 6px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: baseline;
    gap: 12px;
  }
  .cs-list li::before {
    content: "—";
    color: var(--light);
    flex-shrink: 0;
    font-size: 0.8rem;
  }
  .cs-decisions {
    list-style: none;
    margin-top: 12px;
  }
  .cs-decisions li {
    font-size: 0.875rem;
    font-weight: 300;
    color: var(--mid);
    padding: 5px 0;
    padding-left: 16px;
    position: relative;
  }
  .cs-decisions li::before {
    content: "·";
    position: absolute;
    left: 0;
    color: var(--light);
  }

  @media (max-width: 768px) {
    .cs-header, .cs-body { grid-template-columns: 1fr; gap: 32px; }
    .cs-toc { position: static; display: flex; flex-wrap: wrap; gap: 8px; }
    .cs-toc-item { border: 1px solid var(--border); padding: 5px 10px; font-size: 0.65rem; }
  }

  /* ABOUT SECTION */
.about {
  padding: 140px 0;
}

.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  align-items: center;
}

/* IMAGE */
.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
  filter: grayscale(100%);
}

/* subtle offset for premium feel */
.about-image::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--border);
  z-index: -1;
}

/* CONTENT */
.about-content {
  max-width: 520px;
}

.about-heading {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.2;
  margin-bottom: 30px;
}

.about-content p {
  font-size: 16px;
  color: var(--mid);
  margin-bottom: 18px;
  line-height: 1.7;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-image {
    order: -1;
  }
}

  /* ── PROOF ── */


.experience-section {
padding-left: 13em;
padding-top: 100px;
padding-bottom: 100px;
  background: #f9f9f9;
  font-family: var(--serif);
  color: #111;
}

.exp-container {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 10px;
}

/* LEFT SIDE */
.exp-label {
  font-size: 12px;
  letter-spacing: 3px;
  color: #888;
  margin-top: 10px;
}

/* RIGHT SIDE */
.exp-right {
  border-left: 1px solid #e0e0e0;
  padding-left: 40px;
}

/* ITEM */
.exp-item {
  margin-bottom: 40px;
  transition: all 0.3s ease;
}

.exp-item h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  font-weight: 500;
}

.exp-item p {
  font-family: var(--sans);
  color: #666;
  line-height: 1.6;
  max-width: 600px;
}

/* Hover effect */
.exp-item:hover {
  transform: translateX(6px);
}

/* Highlight important items */
.highlight h3 {
  font-weight: 600;
}

/* Subtle divider between items */
.exp-item:not(:last-child)::after {
  content: "";
  display: block;
  margin-top: 25px;
  width: 60px;
  height: 1px;
  background: #ddd;
}

/* Responsive */
@media (max-width: 768px) {
  .exp-container {
    grid-template-columns: 1fr;
  }

  .exp-right {
    border-left: none;
    padding-left: 0;
  }

  .exp-label {
    margin-bottom: 20px;
  }
}

 /* FOOTER */
.footer {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

/* GRID */
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
  gap: 40px;
}

/* LEFT */
.footer-name {
  font-family: var(--serif);
  font-size: 18px;
  margin-bottom: 8px;
}

.footer-note {
  font-size: 14px;
  color: var(--mid);
  max-width: 260px;
  line-height: 1.6;
}

/* CENTER NAV */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  text-decoration: none;
  color: var(--mid);
  font-size: 14px;
  transition: 0.3s ease;
}

.footer-links a:hover {
  color: var(--black);
}

/* RIGHT */
.footer-meta {
  font-size: 14px;
  color: var(--mid);
  margin-bottom: 10px;
}

.footer-copy {
  font-size: 12px;
  color: var(--light);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

  /* ── FADE IN ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .fade-up {
    animation: fadeUp 0.7s ease both;
  }
  .fade-up-2 { animation: fadeUp 0.7s 0.12s ease both; }
  .fade-up-3 { animation: fadeUp 0.7s 0.24s ease both; }

  /* ── VISUAL PLACEHOLDER ── */
  .cs-visual {
    margin: 40px 0 48px;
    border: 1px solid var(--border);
    background: #f4f4f3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 56px 32px;
    text-align: center;
  }
  .cs-visual-icon {
    width: 32px;
    height: 32px;
    opacity: 0.25;
  }
  .cs-visual-label {
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--light);
  }
  .cs-visual-sub {
    font-size: 0.78rem;
    font-weight: 300;
    color: var(--light);
    opacity: 0.8;
  }
  .cs-visual--wide {
    aspect-ratio: 16/7;
  }
  .cs-visual--tall {
    aspect-ratio: 4/3;
  }

  /* ── VISUAL IMAGE ── */
  .cs-visual-img {
    margin: 40px 0 48px;
    width: 100%;
    border: 1px solid var(--border);
    display: block;
  }

 /* SECTION */
.hid {
  padding: 140px 0;
}

/* LAYOUT */
.hid-wrap {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 100px;
}

/* SIDE LABEL */
.hid-side {
  padding-top: 10px;
}

/* STATEMENT */
.hid-title {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 900px;
}

.hid-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--mid);
  margin-top: 20px;
}

/* LIST */
.hid-list {
  margin-top: 100px;
}

/* PRINCIPLES */
.principle {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

/* HOVER = subtle but powerful */
.principle:hover {
  transform: translateX(6px);
}

/* NUMBER */
.p-no {
  font-size: 12px;
  color: var(--light);
  letter-spacing: 1px;
}

/* TEXT */
.p-content h3 {
  font-family: var(--serif);
  font-size: 20px;
  margin-bottom: 6px;
}

.p-content p {
  color: var(--mid);
  font-size: 15px;
  line-height: 1.6;
  max-width: 520px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hid-wrap {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

/* CONTACT PAGE */
.contact-page {
  padding: 140px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}

/* LEFT */
.contact-title {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.1;
  margin-top: 20px;
}

/* RIGHT */
.contact-desc {
  font-size: 16px;
  color: var(--mid);
  margin-bottom: 30px;
  max-width: 400px;
}

.contact-email {
  display: inline-block;
  font-size: 20px;
  font-family: var(--serif);
  text-decoration: none;
  border-bottom: 1px solid var(--black);
  margin-bottom: 30px;
    color: var(--mid);

}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 10px;

}

.contact-links a {
  font-size: 14px;
  color: var(--mid);
  text-decoration: none;
  transition: 0.3s ease;
}
.contact-email :hover{
  color: var(--mid);
}
.contact-links a:hover {
  color: var(--black);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}


/* skills */
.skills-section {
  padding: 100px 8%;
  background: var(--bg);
  color: var(--black);
  font-family: var(--sans);
  
}

.section-title {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 10px;
  font-family: var(--serif);
}

.section-subtitle {
  color: #a0a0a0;
  max-width: 500px;
  margin-bottom: 50px;
  line-height: 1.6;
}

.skills-grid {
display: grid;
grid-template-columns: 1fr 1fr;
border-top: 1px solid var(--border);
border-bottom: 1px solid var(--border);
}


.skill-card {

 padding: 52px 0;
    border-bottom: 1px solid var(--border);

    transition: opacity 0.25s ease;
    position: relative;
    text-decoration: none;
    display: block;
    color: inherit;
}
  .skill-card:nth-child(odd)  { padding-right: 64px; border-right: 1px solid var(--border); }
  .skill-card:nth-child(even) { padding-left: 64px; }

.skill-card h3 {
  font-family: var(--serif);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.skill-card ul {
  list-style: none;
  font-family: var(--sans);
  padding: 0;
}

.skill-card li {
  margin-bottom: 10px;
  color: var(--mid);
  font-size: 0.95rem;
}

/* Hover effect */



/* Responsive */
@media (max-width: 768px) {
  .skills-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   DARK MODE VARIABLES
========================= */

:root {
  --bg: #ffffff;
  --text: #111111;
  --muted: #555555;
  --border: #e5e5e5;
}

body.dark {
  --bg: #0f0f0f;
  --text: #f5f5f5;
  --muted: #aaaaaa;
  --border: #2a2a2a;
}

/* Apply variables */
body {
  background-color: var(--bg);
  color: var(--text);
}

p, span, li {
  color: var(--muted);
}

h1, h2, h3 {
  color: var(--text);
}

.rule {
  border-color: var(--border);
}

/* Cards / sections (safe override) */
.work-item,
.skill-card,
.exp-item {
  background: transparent;
  border-color: var(--border);
}

/* =========================
   DARK MODE FIX - EXPERIENCE
========================= */

body.dark .experience-section {
  background: #0e0e0e;
  color: #f5f5f5;
}

body.dark .exp-label {
  color: #888;
}

body.dark .exp-right {
  border-left: 1px solid #2a2a2a;
}

body.dark .exp-item h3 {
  color: #ffffff;
}

body.dark .exp-item p {
  color: #b0b0b0;
}

body.dark .exp-item::after {
  background: #2a2a2a;
}

.theme-toggle {
  background: none;
  border: 1px solid var(--border);
  padding: 6px;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  color: var(--black);
}

/* Hover */
.theme-toggle:hover {
  border-color: var(--black);
}

/* Dark mode */
body.dark .theme-toggle {
  border-color: #2a2a2a;
  color: #ffffff;
}

body.dark .theme-toggle:hover {
  border-color: #ffffff;
}