/**
 * Theme Toggle Styles
 * Client-side theme switching without URL changes
 */

/* Theme Toggle Button */
.theme-toggle-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: #fff;
    padding: 8px 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-right: 8px;
}

.theme-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.theme-toggle-btn:active {
    transform: translateY(0);
}

.theme-toggle-btn i {
    font-size: 0.875rem;
}

.theme-toggle-label {
    display: none;
}

@media (min-width: 768px) {
    .theme-toggle-label {
        display: inline;
    }
}

/* Theme Variables - Dark (Default) */
:root,
[data-theme="dark"] {
    --theme-bg-primary: #181411;
    --theme-bg-secondary: #2a1f1a;
    --theme-text-primary: #ffffff;
    --theme-text-secondary: #ffcc99;
    --theme-border: rgba(255, 255, 255, 0.1);
}

/* Theme Variables - Light */
[data-theme="light"] {
    --theme-bg-primary: #ffffff;
    --theme-bg-secondary: #f8f9fa;
    --theme-text-primary: #181411;
    --theme-text-secondary: #ff6b35;
    --theme-border: rgba(0, 0, 0, 0.1);
}

/* Apply theme to body and main elements */
body[data-theme="light"] {
    background-color: var(--theme-bg-primary);
    color: var(--theme-text-primary);
}

body[data-theme="light"] .navbar-mpr {
    background: var(--theme-bg-primary);
    border-bottom: 1px solid var(--theme-border);
}

body[data-theme="light"] .nav-link {
    color: var(--theme-text-primary);
}

body[data-theme="light"] .theme-toggle-btn {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
    color: var(--theme-text-primary);
}

body[data-theme="light"] .theme-toggle-btn:hover {
    background: rgba(0, 0, 0, 0.1);
}




