:root {
  --pink-50: #fdf0f6;
  --pink-100: #f9d0e8;
  --pink-200: #f4adcf;
  --pink-300: #e87db0;
  --pink-400: #d4537e;
  --pink-500: #b83d67;
  --blue-50: #eef4fd;
  --blue-100: #cfe0f8;
  --blue-200: #a5c5f2;
  --blue-300: #6fa3e9;
  --blue-400: #378add;
  --blue-500: #185fa5;
  --lavender: #f0ecff;
  --lavender-mid: #c4b5f4;
  --white: #fff;
  --text-dark: #1a1624;
  --text-mid: #4a4460;
  --text-muted: #8a849e;
  --border: rgba(180,160,210,0.18);
  --radius: 18px;
  --radius-sm: 10px;
  --shadow-soft: 0 4px 32px rgba(180,120,160,0.10), 0 1.5px 6px rgba(100,120,200,0.07);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.65;
  overflow-x: hidden;
}

/* ---- BACKGROUND DECORATION ---- */
body::before {
  content: '';
  position: fixed;
  top: -180px; right: -180px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, #f4adcf55 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
body::after {
  content: '';
  position: fixed;
  bottom: -200px; left: -180px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, #a5c5f255 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* ---- NAV ---- */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 5vw;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.35rem;
  color: var(--pink-400);
  letter-spacing: -0.02em;
  text-decoration: none;
}
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--pink-400); }

.nav-hamburger {
  display: none;
  background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text-mid); border-radius: 2px;
  transition: 0.3s;
}

/* ---- NAV ACTIONS (Dil ve Tema Butonları) ---- */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem; /* İki buton arasına şık bir boşluk */
}

/* Dil Butonu Özel Tasarımı */
.lang-toggle {
  background: none;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-mid);
  cursor: pointer;
  letter-spacing: 0.05em;
  transition: color 0.2s ease, transform 0.2s ease;
}

.lang-toggle:hover {
  color: var(--pink-400); /* Üzerine gelince tatlı bir vurgu rengi */
  transform: translateY(-2px); /* Dönmek yerine asilce hafif yukarı kalksın */
}
.theme-toggle {
  background: none;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  margin-left: 0; /* BURAYI SIFIRLADIK */
  color: var(--text-dark);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ---- HERO ---- */
#hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 7rem 5vw 4rem;
  position: relative; z-index: 1;
  gap: 4rem;
}
.hero-text { flex: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--lavender); color: #6c4fc4;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px; border-radius: 99px;
  margin-bottom: 1.4rem;
}
.hero-badge::before {
  content: ''; display: inline-block;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--lavender-mid);
}
.hero-name {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  line-height: 1.12;
  color: var(--text-dark);
  letter-spacing: -0.03em;
  margin-bottom: 0.6rem;
}
.hero-name em {
  font-style: italic;
  background: linear-gradient(90deg, var(--pink-400), var(--blue-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 1.08rem; color: var(--text-mid);
  font-weight: 300; margin-bottom: 1.8rem; max-width: 460px;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--pink-400), var(--pink-300));
  color: white; font-weight: 600; font-size: 0.9rem;
  padding: 0.75rem 1.75rem; border-radius: 99px;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(212,83,126,0.28);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(212,83,126,0.35); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid var(--blue-300);
  color: var(--blue-500); font-weight: 600; font-size: 0.9rem;
  padding: 0.75rem 1.75rem; border-radius: 99px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--blue-50); }

.hero-visual {
  flex: 0 0 340px;
  display: flex; align-items: center; justify-content: center;
}
.hero-avatar {
  width: 240px; height: 240px; border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-100), var(--blue-100));
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Serif Display', serif;
  font-size: 5rem; color: var(--pink-400);
  position: relative;
  box-shadow: 0 0 0 18px var(--pink-50), 0 0 0 36px var(--blue-50);
}
.hero-avatar::after {
  content: '';
  position: absolute; inset: -4px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-300), var(--blue-300));
  z-index: -1;
  padding: 2px;
}

section {
  position: relative; z-index: 1;
  padding: 5rem 5vw;
}
.section-label {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--pink-400);
  margin-bottom: 0.6rem;
}
.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--text-dark);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.section-desc {
  color: var(--text-muted); font-size: 0.95rem; max-width: 480px;
  margin-bottom: 3rem;
  font-weight: 300;
}

#about { background: linear-gradient(160deg, var(--pink-50) 0%, var(--blue-50) 100%); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
  align-items: start;
}
.about-card {
  background: white; border-radius: var(--radius);
  padding: 2rem; box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
}
.about-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem; color: var(--text-dark); margin-bottom: 0.8rem;
}
.about-card p {
  font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; font-weight: 300;
}


.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.2rem;
}
.skill-group {
  background: white; border-radius: var(--radius);
  padding: 1.5rem; box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
  transition: transform 0.2s;
}
.skill-group:hover { transform: translateY(-4px); }
.skill-group-title {
  font-size: 0.78rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--blue-400); margin-bottom: 1rem;
}
.skill-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  font-size: 0.78rem; font-weight: 500;
  padding: 4px 10px; border-radius: 99px;
  background: var(--pink-50); color: var(--pink-500);
  border: 1px solid var(--pink-100);
}
.tag.blue {
  background: var(--blue-50); color: var(--blue-500);
  border-color: var(--blue-100);
}
.tag.lavender {
  background: var(--lavender); color: #6c4fc4;
  border-color: var(--lavender-mid);
}

#experience { background: var(--white); }
.timeline { position: relative; padding-left: 2rem; }
.timeline::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--pink-300), var(--blue-300));
  border-radius: 2px;
}
.timeline-item {
  position: relative; margin-bottom: 2.5rem;
  background: white; border-radius: var(--radius);
  padding: 1.6rem 1.8rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}
.timeline-item::before {
  content: '';
  position: absolute; left: -2.45rem; top: 1.8rem;
  width: 12px; height: 12px; border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-300), var(--blue-300));
  border: 2.5px solid white;
  box-shadow: 0 0 0 3px var(--pink-100);
}
.timeline-period {
  font-size: 0.78rem; font-weight: 600; color: var(--pink-400);
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.timeline-role {
  font-size: 1.05rem; font-weight: 600; color: var(--text-dark);
  margin-bottom: 0.2rem;
}
.timeline-company {
  font-size: 0.88rem; color: var(--blue-400); font-weight: 500;
  margin-bottom: 1rem;
}
.timeline-item ul {
  list-style: none; padding: 0;
}
.timeline-item ul li {
  font-size: 0.88rem; color: var(--text-mid);
  padding: 0.25rem 0 0.25rem 1.2rem;
  position: relative; font-weight: 300;
}
.timeline-item ul li::before {
  content: '→'; position: absolute; left: 0;
  color: var(--pink-300); font-size: 0.8rem;
}
.tech-pills { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 1rem; }
.tech-pill {
  font-size: 0.72rem; font-weight: 600;
  padding: 3px 10px; border-radius: 99px;
  background: var(--blue-50); color: var(--blue-500);
  border: 1px solid var(--blue-100);
}

#projects { background: linear-gradient(160deg, var(--blue-50) 0%, var(--pink-50) 100%); }
.projects-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.project-card {
  background: white; border-radius: var(--radius);
  padding: 1.8rem; border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex; flex-direction: column;
}
.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(180,120,160,0.18);
}
.project-number {
  font-family: 'DM Serif Display', serif;
  font-size: 2.2rem; line-height: 1;
  background: linear-gradient(90deg, var(--pink-200), var(--blue-200));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.6rem;
}
.project-title {
  font-size: 1.1rem; font-weight: 600; color: var(--text-dark);
  margin-bottom: 0.2rem;
}
.project-subtitle {
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--pink-400); font-weight: 600; margin-bottom: 0.9rem;
}
.project-desc {
  font-size: 0.88rem; color: var(--text-mid);
  line-height: 1.65; font-weight: 300; flex: 1;
  margin-bottom: 1.2rem;
}

#education { background: var(--white); }
.edu-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
}
.edu-card {
  background: white; border-radius: var(--radius);
  padding: 1.8rem; border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}
.edu-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.15rem; color: var(--text-dark); margin-bottom: 0.3rem;
}
.edu-school { font-size: 0.9rem; color: var(--blue-400); font-weight: 500; margin-bottom: 0.4rem; }
.edu-period { font-size: 0.78rem; color: var(--text-muted); }
.certs-list { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }
.certs-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.88rem; color: var(--text-mid); font-weight: 300;
}
.cert-dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; margin-top: 6px;
  background: linear-gradient(135deg, var(--pink-300), var(--blue-300));
}
.cert-year { font-size: 0.72rem; font-weight: 600; color: var(--pink-400); }

/* ---- ARTICLES ---- */
#articles { background: linear-gradient(160deg, var(--white) 0%, var(--pink-50) 100%); }
.articles-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem; margin-top: 2rem;
}
.article-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  text-decoration: none;
  display: flex; flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(180,120,160,0.15);
  border-color: var(--pink-300);
}
.article-meta {
  font-size: 0.75rem; font-weight: 600; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.8rem;
}
.article-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem; color: var(--text-dark); margin-bottom: 0.8rem;
  line-height: 1.3;
}
.article-excerpt {
  font-size: 0.9rem; color: var(--text-mid); font-weight: 300;
  line-height: 1.6; margin-bottom: 1.5rem; flex: 1;
}
.article-read-more {
  font-size: 0.85rem; font-weight: 600; color: var(--pink-400);
  display: flex; align-items: center; gap: 4px;
}
.article-read-more span {
  transition: transform 0.2s;
}
.article-card:hover .article-read-more span {
  transform: translateX(4px);
}

#contact {
  background: linear-gradient(135deg, #1a1624 0%, #1e2a40 100%);
  color: white;
}
#contact .section-label { color: var(--pink-300); }
#contact .section-title { color: white; }
#contact .section-desc { color: #a0a0b8; }
.contact-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}
.contact-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius); padding: 1.5rem;
  text-decoration: none; color: white;
  transition: background 0.2s, transform 0.2s;
  display: block;
}
.contact-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-3px);
}
.contact-card-icon {
  font-size: 1.4rem; margin-bottom: 0.6rem;
}
.contact-card-label {
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--pink-300); font-weight: 600; margin-bottom: 0.25rem;
}
.contact-card-value {
  font-size: 0.88rem; color: #d0d0e8; word-break: break-all;
}

footer {
  background: #12101e; color: #555570;
  text-align: center; padding: 1.5rem; font-size: 0.8rem;
  position: relative; z-index: 1;
}

.fade-in {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

.project-links {
  margin-bottom: 1.2rem;
  display: flex;
  gap: 0.8rem;
}

.project-link {
  display: inline-flex; 
  align-items: center; 
  gap: 6px;
  font-size: 0.8rem; 
  font-weight: 600; 
  color: var(--text-mid);
  text-decoration: none; 
  padding: 6px 14px;
  border: 1px solid var(--border); 
  border-radius: 99px;
  transition: all 0.2s ease; 
  background: var(--white);
}

.project-link:hover {
  color: var(--pink-500); 
  border-color: var(--pink-200);
  background: var(--pink-50); 
  transform: translateY(-2px);
}

.project-link svg {
  width: 14px; 
  height: 14px; 
  fill: currentColor;
}

.nav-links .btn-cv-nav {
  background-color: var(--blue-50); 
  color: var(--blue-500); 
  padding: 8px 18px; 
  border-radius: 99px; 
  border: 1px solid var(--blue-100); 
  font-weight: 600;
  transition: all 0.2s ease;
}

.nav-links .btn-cv-nav:hover {
  background-color: var(--blue-100); 
  color: var(--blue-500);
  transform: translateY(-2px); 
  box-shadow: 0 4px 12px rgba(105, 163, 233, 0.2);
}
/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  nav { padding: 1rem 5vw; }
  .nav-links { display: none; flex-direction: column; gap: 1.2rem;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(255,255,255,0.97);
    padding: 1.5rem 5vw; border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-hamburger { display: flex; }

  #hero { flex-direction: column-reverse; padding-top: 6rem; gap: 2rem; text-align: center; }
  .hero-ctas { justify-content: center; }
  .hero-visual { flex: unset; }
  .hero-avatar { width: 160px; height: 160px; font-size: 3.5rem;
    box-shadow: 0 0 0 12px var(--pink-50), 0 0 0 24px var(--blue-50);
  }

  .about-grid { grid-template-columns: 1fr; }
  .edu-grid { grid-template-columns: 1fr; }
  .timeline { padding-left: 1.4rem; }
  .timeline-item::before { left: -1.85rem; }
}

.theme-toggle {
  background: none;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  margin-left: 1rem;
  color: var(--text-dark);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.theme-toggle:hover {
  transform: rotate(-20deg) scale(1.1);
}

/* ═══════════════════════════════════════════════
   DARK ACADEMIA 
   ═══════════════════════════════════════════════ */

[data-theme="dark"] {
  --white:      #1e1518;   
  --pink-50:    #251b1e;  
  --blue-50:    #251b1e;
  --lavender:   #2c2022;  

  --pink-100:   #2c2022;
  --pink-200:   #3d2025;
  --pink-300:   #6b1622;
  --pink-400:   #9e2535;   
  --pink-500:   #bf2d40;  

  --blue-100:   #2a2122;
  --blue-200:   #3d3032;
  --blue-300:   #5a4548;
  --blue-400:   #8a6f70;
  --blue-500:   #b09898;

  --text-dark:  #f0e6e0;
  --text-mid:   #c9b5b0;
  --text-muted: #8a6f70;

  --border:       rgba(158, 37, 53, 0.22);
  --shadow-soft:  0 4px 20px rgba(0, 0, 0, 0.5), 0 1px 0 rgba(158, 37, 53, 0.1);
}

[data-theme="dark"] body {
  background-color: #1e1518;
  background-image:
    repeating-linear-gradient(
      0deg, transparent, transparent 39px,
      rgba(158, 37, 53, 0.035) 39px, rgba(158, 37, 53, 0.035) 40px
    ),
    repeating-linear-gradient(
      90deg, transparent, transparent 39px,
      rgba(158, 37, 53, 0.035) 39px, rgba(158, 37, 53, 0.035) 40px
    );
}

[data-theme="dark"] body::before {
  background: radial-gradient(ellipse 60% 40% at 15% 5%,
    rgba(158, 37, 53, 0.10) 0%, transparent 70%);
}
[data-theme="dark"] body::after {
  background: radial-gradient(ellipse 50% 35% at 85% 95%,
    rgba(107, 22, 34, 0.08) 0%, transparent 70%);
}

[data-theme="dark"] nav {
  background: rgba(22, 16, 18, 0.94);
  border-bottom: 1px solid rgba(158, 37, 53, 0.28);
  backdrop-filter: blur(8px);
  position: relative;
}
[data-theme="dark"] nav::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0; height: 3px;
  background: repeating-linear-gradient(
    90deg,
    rgba(158, 37, 53, 0.4) 0px, rgba(158, 37, 53, 0.4) 4px,
    transparent 4px, transparent 8px
  );
  pointer-events: none;
}

[data-theme="dark"] .about-card,
[data-theme="dark"] .skill-group,
[data-theme="dark"] .timeline-item,
[data-theme="dark"] .project-card,
[data-theme="dark"] .edu-card {
  background: #2c2022;
  border: 1px solid rgba(158, 37, 53, 0.2);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  position: relative;
  transition: background 0.3s, border-color 0.3s;
}
[data-theme="dark"] .about-card::before,
[data-theme="dark"] .project-card::before,
[data-theme="dark"] .edu-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, #9e2535, transparent);
  opacity: 0; transition: opacity 0.3s; pointer-events: none;
}
[data-theme="dark"] .about-card::after,
[data-theme="dark"] .project-card::after,
[data-theme="dark"] .edu-card::after {
  content: '';
  position: absolute; bottom: 8px; right: 8px;
  width: 18px; height: 18px;
  border-right: 1px solid rgba(158, 37, 53, 0.4);
  border-bottom: 1px solid rgba(158, 37, 53, 0.4);
  pointer-events: none;
}
[data-theme="dark"] .project-card:hover,
[data-theme="dark"] .about-card:hover,
[data-theme="dark"] .edu-card:hover {
  background: #332528;
  border-color: rgba(158, 37, 53, 0.42);
}
[data-theme="dark"] .project-card:hover::before,
[data-theme="dark"] .about-card:hover::before,
[data-theme="dark"] .edu-card:hover::before {
  opacity: 1;
}

[data-theme="dark"] .project-link {
  background: #251b1e;
  border: 1px solid rgba(158, 37, 53, 0.32);
  color: #c9b5b0;
  transition: all 0.25s;
}
[data-theme="dark"] .project-link:hover {
  background: rgba(107, 22, 34, 0.45);
  border-color: #9e2535;
  color: #f0e6e0;
}

[data-theme="dark"] .nav-links .btn-cv-nav {
  background: transparent;
  color: #c9b5b0;
  border: 1px solid rgba(158, 37, 53, 0.42);
}
[data-theme="dark"] .nav-links .btn-cv-nav:hover {
  background: #6b1622;
  border-color: #9e2535;
  color: #f0e6e0;
}
[data-theme="dark"] #articles { background: linear-gradient(160deg, #0a0809 0%, #141011 100%); }
[data-theme="dark"] .article-card { background: #120e0f; }
[data-theme="dark"] .article-card:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,0.8);
  border-color: #9e1b29;
}

[data-theme="dark"] {
  --lavender-mid: #6b1622; 
}

[data-theme="dark"] .hero-badge {
  background: #2c2022;
  color: #c9b5b0;
}

[data-theme="dark"] .tag.lavender {
  background: #2c2022;
  color: #c9b5b0;
  border-color: rgba(158, 37, 53, 0.3);
}

[data-theme="dark"] #contact {
  background: linear-gradient(135deg, #120e0f 0%, #1a1214 100%);
}

[data-theme="dark"] footer {
  background: #0d0a0b;
  color: #6b5055;
}

[data-theme="dark"] .lang-toggle {
  color: var(--text-muted);
}
[data-theme="dark"] .lang-toggle:hover {
  color: var(--text-dark); 
}