/* Varient CMS - Custom Styles */

/* Dark Mode */
[data-theme="dark"] {
    --bg: #1a1a1a;
    --text: #e0e0e0;
    --card: #2d2d2d;
    --border: #444;
}

[data-theme="dark"] body {background: var(--bg); color: var(--text);}
[data-theme="dark"] .card {background: var(--card); border-color: var(--border);}
[data-theme="dark"] .navbar-dark {background: #000!important;}

/* Theme Toggle Button */
.theme-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #667eea;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: all .3s;
}

.theme-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Social Share Buttons */
.share-buttons {
    display: flex;
    gap: 10px;
    margin: 20px 0;
}

.share-btn {
    padding: 8px 16px;
    border-radius: 5px;
    text-decoration: none;
    color: white;
    font-size: 14px;
    transition: .2s;
}

.share-btn:hover {transform: translateY(-2px);}
.share-fb {background: #1877f2;}
.share-tw {background: #1da1f2;}
.share-wa {background: #25d366;}
.share-li {background: #0077b5;}

/* Newsletter Widget */
.newsletter-widget {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.newsletter-widget input {
    border: none;
    padding: 10px;
    border-radius: 5px;
    width: 100%;
    margin-top: 10px;
}

.newsletter-widget button {
    background: white;
    color: #667eea;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    width: 100%;
    margin-top: 10px;
    cursor: pointer;
}
