/* ========================================
   LIGHT.CSS - Light Color Theme
   Contains ONLY color CSS variables
   ======================================== */

:root.theme-light {
    /* Primary Colors */
    --primary-color: #007bff;
    --primary-color-rgb: 0, 123, 255;
    --secondary-color: #6c757d;
    --accent-color: #dc3545;
    --success-color: #28a745;
    
    /* Background Colors */
    --light-color: #ffffff;
    --dark-color: rgba(51, 51, 51, 0.9);
    --body-bg: #f8f9fa;
    --card-bg: #ffffff;
    
    /* Text Colors */
    --text-color: #333333;
    --text-muted: #6c757d;
    --placeholder-color: #adb5bd;
    --link-color: #007bff;
    --link-hover-color: #0056b3;
    
    /* Form Colors */
    --input-bg: #ffffff;
    --input-border-color: #ced4da;
    --focus-ring-bg: #ffffff;
    --input-focus-bg: #ffffff;
    --switch-btn-hover-bg: rgba(255, 255, 255, 0.3);
    --switch-btn-active-color: #ffffff;
    
    /* Border & Shadow */
    --border-color: #dee2e6;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --box-shadow-color: rgba(0, 0, 0, 0.05);
    
    /* Social Button Colors */
    --btn-google-bg: #ea4335;
    --btn-facebook-bg: #1877f2;
    --btn-twitter-bg: #1da1f2;
    
    /* Navbar Colors */
    --navbar-bg: #ffffff;
    --navbar-border-color: #dee2e6;
    --navbar-text-color: #333333;
    --navbar-hover-color: #007bff;
    
    /* Card Colors */
    --card-header-bg: #f8f9fa;
    --card-header-text: #333333;
    --card-body-bg: #ffffff;
    --card-border-color: #dee2e6;
    
    /* Section Backgrounds */
    --section-alt-bg: #f8f9fa;
    
    /* List Group */
    --list-group-bg: #ffffff;
    --list-group-border: #dee2e6;
    --list-group-hover-bg: #f8f9fa;
    
    /* Badge Colors */
    --badge-primary-bg: #007bff;
    --badge-secondary-bg: #6c757d;
    --badge-success-bg: #28a745;
    --badge-warning-bg: #ffc107;
    --badge-danger-bg: #dc3545;
    --badge-info-bg: #17a2b8;
    
    /* Theme-specific */
    --transition-speed: 0.3s;
}

/* Auth Container Background */
.theme-light .auth-container {
    background: linear-gradient(135deg, #007bff 0%, #6c757d 100%);
    background-size: 400% 400%;
    animation: gradientAnimation 15s ease infinite;
}

/* Auth Card */
.theme-light .auth-card {
    background: var(--card-bg);
    box-shadow: 0 20px 50px var(--shadow-color);
}

.theme-light .auth-card:hover {
    box-shadow: 0 25px 60px var(--shadow-color);
}

/* Form Control Focus */
.theme-light .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(var(--primary-color-rgb), 0.25);
}

/* Form Check Input Focus */
.theme-light .form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(var(--primary-color-rgb), 0.25);
}

/* Buttons */
.theme-light .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 5px 15px rgba(var(--primary-color-rgb), 0.4);
}

.theme-light .btn-primary:hover {
    box-shadow: 0 8px 20px rgba(var(--primary-color-rgb), 0.6);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.theme-light .btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.theme-light .btn-outline-primary:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 5px 15px rgba(var(--primary-color-rgb), 0.4);
}

/* Social Buttons */
.theme-light .btn-google {
    background: var(--btn-google-bg);
    color: white;
}

.theme-light .btn-facebook {
    background: var(--btn-facebook-bg);
    color: white;
}

.theme-light .btn-twitter {
    background: var(--btn-twitter-bg);
    color: white;
}

.theme-light .social-btn {
    box-shadow: 0 4px 10px var(--shadow-color);
}

.theme-light .social-btn:hover {
    box-shadow: 0 6px 15px var(--shadow-color);
}

/* Form Switcher */
.theme-light .switch-btn {
    background: rgba(255, 255, 255, 0.2);
    color: var(--dark-color);
}

.theme-light .switch-btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 5px 15px rgba(var(--primary-color-rgb), 0.4);
}

/* Form Footer */
.theme-light .form-footer {
    color: var(--placeholder-color);
}

.theme-light .form-footer a {
    color: var(--primary-color);
}

.theme-light .form-footer a:hover {
    color: var(--secondary-color);
}

/* Password Toggle */
.theme-light .password-toggle {
    color: var(--placeholder-color);
}

/* Auth Card Header */
.theme-light .auth-card-header h2 {
    color: var(--dark-color);
}

.theme-light .auth-card-header p {
    color: var(--placeholder-color);
}

/* ===== Navbar Styling ===== */
.theme-light .navbar {
    background-color: var(--navbar-bg) !important;
    border-bottom-color: var(--navbar-border-color);
}

.theme-light .navbar-light .navbar-nav .nav-link {
    color: var(--navbar-text-color);
}

.theme-light .navbar-light .navbar-nav .nav-link:hover {
    color: var(--navbar-hover-color);
}

/* ===== Card Styling ===== */
.theme-light .card {
    background-color: var(--card-body-bg);
    border-color: var(--card-border-color);
}

.theme-light .card-header {
    background-color: var(--card-header-bg);
    color: var(--card-header-text);
    border-bottom-color: var(--card-border-color);
}

.theme-light .card-body {
    background-color: var(--card-body-bg);
}

.theme-light .card.bg-light {
    background-color: var(--section-alt-bg) !important;
}

/* ===== Section Backgrounds ===== */
.theme-light section.bg-light {
    background-color: var(--section-alt-bg) !important;
}

/* ===== List Group ===== */
.theme-light .list-group-item {
    background-color: var(--list-group-bg);
    border-color: var(--list-group-border);
}

.theme-light .list-group-item:hover {
    background-color: var(--list-group-hover-bg);
}

/* ===== Badges ===== */
.theme-light .badge {
    background-color: var(--badge-primary-bg);
}

.theme-light .badge.bg-secondary {
    background-color: var(--badge-secondary-bg) !important;
}

.theme-light .badge.bg-success {
    background-color: var(--badge-success-bg) !important;
}

.theme-light .badge.bg-warning {
    background-color: var(--badge-warning-bg) !important;
}

.theme-light .badge.bg-danger {
    background-color: var(--badge-danger-bg) !important;
}

.theme-light .badge.bg-info {
    background-color: var(--badge-info-bg) !important;
}

/* ===== Buttons ===== */
.theme-light .btn-secondary {
    background: linear-gradient(135deg, var(--badge-secondary-bg), var(--secondary-color));
    border-color: var(--secondary-color);
    color: white;
    box-shadow: 0 5px 15px rgba(108, 117, 125, 0.4);
    transition: all 0.3s ease;
}

.theme-light .btn-secondary:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--badge-secondary-bg));
    box-shadow: 0 8px 20px rgba(108, 117, 125, 0.6);
    color: white;
}

.theme-light .btn-success {
    background: linear-gradient(135deg, var(--badge-success-bg), #218838);
    border-color: #218838;
    color: white;
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
    transition: all 0.3s ease;
}

.theme-light .btn-success:hover {
    background: linear-gradient(135deg, #218838, var(--badge-success-bg));
    box-shadow: 0 8px 20px rgba(40, 167, 69, 0.6);
    color: white;
}

.theme-light .btn-info {
    background: linear-gradient(135deg, var(--badge-info-bg), #117a8b);
    border-color: #117a8b;
    color: white;
    box-shadow: 0 5px 15px rgba(23, 162, 184, 0.4);
    transition: all 0.3s ease;
}

.theme-light .btn-info:hover {
    background: linear-gradient(135deg, #117a8b, var(--badge-info-bg));
    box-shadow: 0 8px 20px rgba(23, 162, 184, 0.6);
    color: white;
}

.theme-light .btn-outline-secondary:hover {
    background-color: var(--secondary-color);
}

.theme-light .btn-outline-success:hover {
    background-color: var(--success-color);
}

.theme-light .btn-outline-info:hover {
    background-color: var(--badge-info-bg);
}

/* ===== Footer ===== */
.theme-light .footer {
    background-color: var(--navbar-bg);
    border-top-color: var(--navbar-border-color);
}

.theme-light .footer.text-muted {
    color: var(--text-muted) !important;
}

/* ===== Page Header ===== */
.theme-light h1, .theme-light h2, .theme-light h3, .theme-light h4, .theme-light h5, .theme-light h6 {
    color: var(--dark-color);
}

.theme-light .lead {
    color: var(--text-muted);
}

/* ===== Pricing Cards ===== */
.theme-light .card-header.bg-secondary {
    background-color: var(--badge-secondary-bg) !important;
}

.theme-light .card-header.bg-primary {
    background-color: var(--badge-primary-bg) !important;
}

.theme-light .card-header.bg-success {
    background-color: var(--badge-success-bg) !important;
}

.theme-light .card-header.bg-info {
    background-color: var(--badge-info-bg) !important;
}

/* ===== Form Placeholders ===== */
.theme-light .form-control::placeholder {
    color: var(--placeholder-color) !important;
}

.theme-light .form-control::-webkit-input-placeholder {
    color: var(--placeholder-color) !important;
}

.theme-light .form-control::-moz-placeholder {
    color: var(--placeholder-color) !important;
}

.theme-light .form-control:-ms-input-placeholder {
    color: var(--placeholder-color) !important;
}

/* ===== Pricing Plan Buttons ===== */
.theme-light .pricing-btn-secondary {
    background: linear-gradient(135deg, var(--badge-secondary-bg), #343a40);
    color: white;
    border: none;
    box-shadow: 0 5px 15px rgba(108, 117, 125, 0.4);
    transition: all 0.3s ease;
}

.theme-light .pricing-btn-secondary:hover {
    background: linear-gradient(135deg, #343a40, var(--badge-secondary-bg));
    color: white;
    box-shadow: 0 8px 20px rgba(108, 117, 125, 0.6);
    transform: translateY(-2px);
}

.theme-light .pricing-btn-success {
    background: linear-gradient(135deg, var(--badge-success-bg), #218838);
    color: white;
    border: none;
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
    transition: all 0.3s ease;
}

.theme-light .pricing-btn-success:hover {
    background: linear-gradient(135deg, #218838, var(--badge-success-bg));
    color: white;
    box-shadow: 0 8px 20px rgba(40, 167, 69, 0.6);
    transform: translateY(-2px);
}

.theme-light .pricing-btn-info {
    background: linear-gradient(135deg, var(--badge-info-bg), #117a8b);
    color: white;
    border: none;
    box-shadow: 0 5px 15px rgba(23, 162, 184, 0.4);
    transition: all 0.3s ease;
}

.theme-light .pricing-btn-info:hover {
    background: linear-gradient(135deg, #117a8b, var(--badge-info-bg));
    color: white;
    box-shadow: 0 8px 20px rgba(23, 162, 184, 0.6);
    transform: translateY(-2px);
}

.theme-light .pricing-btn-info-dark {
    background: linear-gradient(135deg, var(--badge-info-bg), #0c5460);
    color: white;
    border: none;
    box-shadow: 0 5px 15px rgba(23, 162, 184, 0.4);
    transition: all 0.3s ease;
}

.theme-light .pricing-btn-info-dark:hover {
    background: linear-gradient(135deg, #0c5460, var(--badge-info-bg));
    color: white;
    box-shadow: 0 8px 20px rgba(23, 162, 184, 0.6);
    transform: translateY(-2px);
}