/* Dark Mode Styles */

html[data-theme="light"] {
  --color-accent: #821010;
}

html[data-theme="dark"] {
  --color-accent: #e07070;
}

html[data-theme="dark"] #navi li a {
  color: #ffffff;
}

html[data-theme="dark"] .resume-wrap .position {
  color: #e0dfdf;
}

html[data-theme="dark"] .ftco-about ul.about-info li span:first-child {
  color: #ffffff;
}

html[data-theme="dark"] .ftco-navbar-light .navbar-brand {
  color: #ffffff;
}
html[data-theme="dark"] .ftco-navbar-light .navbar-brand:hover {
  color: #e07070 !important;
}

html[data-theme="dark"] .resume-wrap .icon span {
  color: #181818;
}

html[data-theme="dark"] .iconify {
  color: #181818;
}

html[data-theme="dark"] body {
  background-color: #181818;
  color: #e0e0e0;
}

html[data-theme="dark"] .ftco-section,
html[data-theme="dark"] .bg-light {
  background-color: #181818;
}

html[data-theme="dark"] .ftco_navbar.ftco-navbar-light {
  background-color: #0f0f0f !important;
}

html[data-theme="dark"] .ftco_navbar.ftco-navbar-light .navbar-nav .nav-link {
  color: #c8c8c8 !important;
}

html[data-theme="dark"] .ftco_navbar.ftco-navbar-light .navbar-nav .nav-link:hover,
html[data-theme="dark"] .ftco_navbar.ftco-navbar-light .navbar-nav .nav-link.active {
  color: #ffffff !important;
}

html[data-theme="dark"] .dropdown-menu {
  background-color: #0f0f0f;
  border: 1px solid #333;
}

html[data-theme="dark"] .dropdown-item {
  color: #c8c8c8;
}

html[data-theme="dark"] .dropdown-item:hover {
  background-color: #333;
  color: #ffffff;
}

html[data-theme="light"] .dropdown-menu {
  background-color: #ffffff;
  border: 1px solid #ddd;
}

html[data-theme="light"] .dropdown-item {
  color: #333;
}

html[data-theme="light"] .dropdown-item:hover {
  background-color: #f8f9fa;
  color: #000;
}

html[data-theme="dark"] .ftco-footer {
  background-color: #0f0f0f;
}

html[data-theme="dark"] .ftco-footer a {
  color: #a0a0a0;
}

html[data-theme="dark"] .ftco-footer a:hover {
  color: #ffffff;
}

html[data-theme="dark"] .sidebar-box,
html[data-theme="dark"] .block-21 {
  background-color: #1f1f1f;
  border-color: #2a2a2a;
}

html[data-theme="dark"] h1,
html[data-theme="dark"] h2,
html[data-theme="dark"] h3,
html[data-theme="dark"] h4,
html[data-theme="dark"] h5,
html[data-theme="dark"] h6 {
  color: #ffffff;
}

html[data-theme="dark"] a {
  color: #c8c8c8;
}

html[data-theme="dark"] a:hover {
  color: #ffffff;
}

html[data-theme="dark"] .btn-primary {
  background-color: #3a3a3a !important;
  border-color: #4a4a4a !important;
  color: #ffffff !important;
}

html[data-theme="dark"] .btn-primary:hover,
html[data-theme="dark"] .btn-primary:focus,
html[data-theme="dark"] .btn-primary:active {
  background-color: #555 !important;
  border-color: #666 !important;
}

html[data-theme="dark"] .hero-wrap .overlay {
  background: none;
}

/* Section title underline accent */
html[data-theme="dark"] .heading-section h2:after,
html[data-theme="dark"] .heading-section h1:after {
  background-color: #888;
}

/* Form inputs */
html[data-theme="dark"] input[type="text"],
html[data-theme="dark"] input[type="email"],
html[data-theme="dark"] input[type="password"],
html[data-theme="dark"] input[type="number"],
html[data-theme="dark"] textarea,
html[data-theme="dark"] select {
  background-color: #1f1f1f !important;
  border-color: #3a3a3a !important;
  color: #e0e0e0 !important;
}

html[data-theme="dark"] input[type="text"]::placeholder,
html[data-theme="dark"] input[type="email"]::placeholder,
html[data-theme="dark"] input[type="password"]::placeholder,
html[data-theme="dark"] textarea::placeholder {
  color: #888;
}

/* Theme toggle button icons */
.js-theme-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.3rem 0.3rem;
  border-radius: 0.35rem;
  transition: background-color 0.2s ease, color 0.2s ease;
  min-width: auto;
}

/* Mobile-only toggle: sits between brand and hamburger */
.navbar-toggle-btn {
  margin-left: auto;
  margin-right: 0.5rem;
  padding: 0.4rem 0.6rem;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85) !important;
}

html[data-theme="dark"] .js-theme-toggle {
  color: #ffffff !important;
  background-color: rgba(255, 255, 255, 0.09);
}

html[data-theme="light"] .js-theme-toggle {
  color: #222222 !important;
  background-color: rgba(0, 0, 0, 0.06);
}

.js-lang-toggle.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.js-lang-toggle.dropdown-toggle::after {
  vertical-align: middle;
}

.js-theme-toggle::before {
  display: inline-block;
  font-size: 1.15rem;
  line-height: 1;
  vertical-align: middle;
  font-family: 'Segoe UI Symbol', 'Arial Unicode MS', sans-serif;
  content: "☀";
}

html[data-theme="light"] .js-theme-toggle::before {
  content: "☾";
}

.js-theme-toggle .oi {
  display: none;
}

/* Cards and special containers */
html[data-theme="dark"] .card {
  background-color: #1f1f1f;
  border-color: #2a2a2a;
  color: #e0e0e0;
}

html[data-theme="dark"] .text-muted {
  color: #a0a0a0 !important;
}

html[data-theme="dark"] .border {
  border-color: #2a2a2a !important;
}

html[data-theme="dark"] hr {
  border-color: #2a2a2a;
}

html[data-theme="dark"] .skill-category-title {
  color: #888;
}

html[data-theme="dark"] .badge-lang {
  background-color: rgba(200, 50, 50, 0.15);
  color: #e07070;
  border-color: rgba(200, 50, 50, 0.3);
}

html[data-theme="dark"] .badge-sci {
  background-color: rgba(23, 162, 184, 0.15);
  color: #5bc8d8;
  border-color: rgba(23, 162, 184, 0.3);
}

html[data-theme="dark"] .badge-tool {
  background-color: rgba(180, 180, 180, 0.1);
  color: #b0b0b0;
  border-color: rgba(180, 180, 180, 0.25);
}

/* Project cards */
html[data-theme="dark"] .project-card {
  background: #1f1f1f;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

html[data-theme="dark"] .project-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
}

html[data-theme="dark"] .project-title {
  color: #ffffff;
}

html[data-theme="dark"] .project-card:hover .project-title {
  color: #e07070;
}

html[data-theme="dark"] .project-date {
  color: #e07070;
}

html[data-theme="dark"] .project-desc {
  color: #b0b0b0;
}

html[data-theme="light"] .gallery-content h3 {
  color: #ffffff;
}

html[data-theme="dark"] .block-21 .text .heading a {
  color: #e0e0e0;
}

html[data-theme="dark"] .ftco-navbar-light.scrolled .nav-link {
  color: #e0e0e0 !important;
}
html[data-theme="dark"] .ftco-navbar-light.scrolled .navbar-toggler {
  color: #e0e0e0 !important;
}