/* Theme Switcher Styles */
.theme-switcher {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #fff;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    padding: 10px;
    display: flex;
    gap: 10px;
    transform: scale(0);
    animation: popIn 0.5s ease forwards;
    animation-delay: 1s;
}

.theme-option {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.3s ease;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.theme-option:hover {
    transform: scale(1.2);
}

.theme-option.active {
    border-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.theme-option::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: white;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition: all 0.5s ease;
}

.theme-option:hover::after {
    transform: translate(-50%, -50%) scale(3);
    opacity: 0.3;
}

.theme-option.active::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

/* Default Theme (Black and White) */
.theme-default {
    background: linear-gradient(135deg, #000000, #333333);
}

/* Theme 1: Glowing Bluish */
.theme-bluish {
    background: linear-gradient(135deg, #0062ff, #00c6ff);
}

/* Theme 2: Beautiful Orange */
.theme-orange {
    background: linear-gradient(135deg, #ff7700, #ff9500);
}

/* Theme 3: Greenish */
.theme-green {
    background: linear-gradient(135deg, #00a86b, #7ed957);
}



/* Theme Color Variables */

/* Theme 1: Glowing Bluish */
.theme-bluish-colors {
    --primary-color: #0062ff;
    --secondary-color: #00c6ff;
    --dark-color: #004e9a;
    --light-color: #ffffff;
    --gray-color: #f0f8ff;
    --accent-color: #2979FF;
    --success-color: #00c853;
    --warning-color: #ffab00;
    --error-color: #ff1744;
}

/* Theme 2: Beautiful Orange */
.theme-orange-colors {
    --primary-color: #ff7700;
    --secondary-color: #ff9500;
    --dark-color: #cc5500;
    --light-color: #ffffff;
    --gray-color: #fff9f0;
    --accent-color: #ff5722;
    --success-color: #00c853;
    --warning-color: #ffab00;
    --error-color: #ff1744;
}

/* Theme 3: Greenish */
.theme-green-colors {
    --primary-color: #00a86b;
    --secondary-color: #7ed957;
    --dark-color: #006e45;
    --light-color: #ffffff;
    --gray-color: #f0fff5;
    --accent-color: #43a047;
    --success-color: #00c853;
    --warning-color: #ffab00;
    --error-color: #ff1744;
}



/* Theme-Specific Styles */

/* Bluish Theme Specifics */
.theme-bluish-colors .hero, 
.theme-bluish-colors .menu-banner, 
.theme-bluish-colors .contact-banner {
    background: linear-gradient(135deg, rgba(0, 98, 255, 0.95), rgba(0, 198, 255, 0.95));
}

.theme-bluish-colors .btn:hover,
.theme-bluish-colors .category-tab.active {
    box-shadow: 0 0 15px rgba(0, 98, 255, 0.5);
}

.theme-bluish-colors .feature-card:hover,
.theme-bluish-colors .menu-item:hover,
.theme-bluish-colors .qr-step:hover {
    box-shadow: 0 10px 20px rgba(0, 98, 255, 0.2);
}

/* Orange Theme Specifics */
.theme-orange-colors .hero, 
.theme-orange-colors .menu-banner, 
.theme-orange-colors .contact-banner {
    background: linear-gradient(135deg, rgba(255, 119, 0, 0.95), rgba(255, 149, 0, 0.95));
}

.theme-orange-colors .btn:hover,
.theme-orange-colors .category-tab.active {
    box-shadow: 0 0 15px rgba(255, 119, 0, 0.5);
}

.theme-orange-colors .feature-card:hover,
.theme-orange-colors .menu-item:hover,
.theme-orange-colors .qr-step:hover {
    box-shadow: 0 10px 20px rgba(255, 119, 0, 0.2);
}

/* Green Theme Specifics */
.theme-green-colors .hero, 
.theme-green-colors .menu-banner, 
.theme-green-colors .contact-banner {
    background: linear-gradient(135deg, rgba(0, 168, 107, 0.95), rgba(126, 217, 87, 0.95));
}

.theme-green-colors .btn:hover,
.theme-green-colors .category-tab.active {
    box-shadow: 0 0 15px rgba(0, 168, 107, 0.5);
}

.theme-green-colors .feature-card:hover,
.theme-green-colors .menu-item:hover,
.theme-green-colors .qr-step:hover {
    box-shadow: 0 10px 20px rgba(0, 168, 107, 0.2);
}



/* Additional Glowing Effects for Bluish Theme */
.theme-bluish-colors .btn,
.theme-bluish-colors .feature-card i,
.theme-bluish-colors .category-badge,
.theme-bluish-colors .step-number {
    box-shadow: 0 0 10px rgba(0, 98, 255, 0.5);
}

.theme-bluish-colors .hero h1,
.theme-bluish-colors .menu-banner h1,
.theme-bluish-colors .contact-banner h1 {
    text-shadow: 0 0 15px rgba(0, 198, 255, 0.8);
}

/* Media Queries for Theme Switcher */
@media (max-width: 768px) {
    .theme-switcher {
        bottom: 10px;
        right: 10px;
    }
}

/* Theme Transition Effects */
body {
    transition: background-color 0.5s ease, color 0.5s ease;
}

.btn, .feature-card, .menu-item, .qr-step, .contact-form, .admin-table, .admin-dashboard, .category-tab, .form-control {
    transition: all 0.5s ease;
}

/* Enhanced Bluish Theme Effects */
.theme-bluish-colors .feature-card i,
.theme-bluish-colors .footer-content i,
.theme-bluish-colors .contact-item i,
.theme-bluish-colors .input-with-icon i {
    color: var(--secondary-color);
    text-shadow: 0 0 10px rgba(0, 198, 255, 0.5);
}

.theme-bluish-colors .btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.theme-bluish-colors .logo h1,
.theme-bluish-colors .footer-logo h2 {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

/* Enhanced Orange Theme Effects */
.theme-orange-colors .feature-card i,
.theme-orange-colors .footer-content i,
.theme-orange-colors .contact-item i,
.theme-orange-colors .input-with-icon i {
    color: var(--secondary-color);
    text-shadow: 0 0 10px rgba(255, 149, 0, 0.5);
}

.theme-orange-colors .btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.theme-orange-colors .logo h1,
.theme-orange-colors .footer-logo h2 {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

/* Enhanced Green Theme Effects */
.theme-green-colors .feature-card i,
.theme-green-colors .footer-content i,
.theme-green-colors .contact-item i,
.theme-green-colors .input-with-icon i {
    color: var(--secondary-color);
    text-shadow: 0 0 10px rgba(126, 217, 87, 0.5);
}

.theme-green-colors .btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.theme-green-colors .logo h1,
.theme-green-colors .footer-logo h2 {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}



/* Enhanced Theme Switcher Animation */
@keyframes popIn {
    0% {
        transform: scale(0);
    }
    70% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Admin Theme Styles */
/* Default Theme */
.stat-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.stat-card i {
    color: rgba(255, 255, 255, 0.9);
}

.stat-info h3 {
    color: rgba(255, 255, 255, 0.9);
}

.stat-count {
    color: white;
    font-size: 1.5rem;
}

.view-all {
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 4px 12px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.view-all:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

.action-card {
    background: white;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.action-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.action-header {
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.action-header h4 {
    color: var(--primary-color);
}

.action-header i {
    color: var(--primary-color);
}

.dashboard-actions h3 {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

/* Theme-specific admin styles */
.theme-bluish-colors .stat-card {
    background: linear-gradient(135deg, #0062ff 0%, #00c6ff 100%);
}

.theme-orange-colors .stat-card {
    background: linear-gradient(135deg, #ff7700 0%, #ff9500 100%);
}

.theme-green-colors .stat-card {
    background: linear-gradient(135deg, #00a86b 0%, #7ed957 100%);
}

 