/* Theme Toggle Button */
.theme-toggle-wrapper {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 100;
}

.theme-toggle-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #54B689;
  background: white;
  color: #54B689;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.theme-toggle-btn:hover {
  background: #54B689;
  color: white;
  transform: scale(1.1);
}

/* Dark Mode Styles */
.dark {
  background: #1a1a1a;
  color: #e0e0e0;
}

.dark .main-wrapper {
  background: #1a1a1a;
}

.dark .resume-wrapper {
  background: #2d2d2d !important;
  box-shadow: 0 0 20px rgba(0,0,0,0.5) !important;
}

.dark .theme-bg-light {
  background: #2d2d2d !important;
}

.dark .resume-name,
.dark .resume-tagline,
.dark .text-uppercase,
.dark h2, .dark h3, .dark h4,
.dark .resume-section-heading,
.dark .item-title {
  color: #ffffff !important;
}

.dark p,
.dark li,
.dark .text-muted,
.dark .resume-degree,
.dark .resume-degree-org,
.dark .item-meta {
  color: #b0b0b0 !important;
}

.dark .resume-link,
.dark a {
  color: #64d2a0 !important;
}

.dark .resume-link:hover,
.dark a:hover {
  color: #54B689 !important;
}

.dark hr {
  border-color: #444 !important;
}

.dark .theme-toggle-btn {
  background: #2d2d2d;
  color: #64d2a0;
  border-color: #64d2a0;
}

.dark .theme-toggle-btn:hover {
  background: #64d2a0;
  color: #2d2d2d;
}

.dark .footer {
  background: #1a1a1a;
  color: #b0b0b0;
}

.dark .copyright {
  color: #888 !important;
}

/* Smooth transitions */
body,
.main-wrapper,
.resume-wrapper,
.theme-toggle-btn {
  transition: background-color 0.3s ease, color 0.3s ease;
}
