/* ============================================
   THEME.CSS - Theme transition overrides
============================================ */

/* Smooth global transition for theme switching */
body,
.navbar,
.card,
.btn,
.badge,
.social-link,
.filter-btn,
.mobile-menu,
.footer,
.page-header,
input,
textarea {
  transition-property: background-color, background, color, border-color, box-shadow;
  transition-duration: 0.35s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Theme toggle icon swap */
.icon-sun { display: none; }
.icon-moon { display: block; }

[data-theme="light"] .icon-sun { display: block; }
[data-theme="light"] .icon-moon { display: none; }

/* Theme transition flash prevention */
.theme-transition * {
  transition: none !important;
}
