/* ===========================
   Global Theme - NovexPortfolio
   =========================== */

/* Default Theme */
body {
    background: #0d0d0d;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

a {
    color: #ffd700;
    text-decoration: none;
}

a:hover {
    color: #e6c200;
    text-decoration: underline;
}

.error {
    color: red;
}

/* ===========================
   Text Colors
   =========================== */
.text-white {
    color: #fff !important;
}

.text-muted {
    color: #aaa !important;
}

.text-gold {
    color: #ffd700 !important;
}

.text-danger {
    color: #ff4d4d !important;
}

.text-success {
    color: #28a745 !important;
}

.text-info {
    color: #17a2b8 !important;
}

/* ===========================
   Cards
   =========================== */
.card {
    background: #1a1a1a;
    border: none;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.08);
    color: #fff;
}

.card-title {
    color: #ffd700;
    font-weight: 600;
}

/* Card Hover Effect */
.card:hover {
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.2);
    transform: translateY(-3px);
    transition: 0.3s ease;
}

/* ===========================
   Buttons
   =========================== */
.btn-gold {
    background: #ffd700;
    color: #000;
    font-weight: 600;
    border-radius: 10px;
    border: none;
}

.btn-gold:hover {
    background: #e6c200;
    color: #000;
}

.btn-outline-light {
    border: 1px solid #fff;
    color: #fff;
    font-weight: 500;
    border-radius: 10px;
}

.btn-outline-light:hover {
    background: #fff;
    color: #000;
}

/* ===========================
   Tables
   =========================== */
.table {
    color: #fff;
    background: transparent;
}

.table thead th {
    color: #fff;
    font-weight: 600;
    border-bottom: 1px solid #333;
}

.table tbody tr {
    border-bottom: 1px solid #222;
}

.table tbody tr:hover {
    background: #111;
}

/* ===========================
   Badges
   =========================== */
.badge {
    font-size: 0.8rem;
    border-radius: 8px;
    padding: 6px 10px;
}

.bg-success {
    background: #28a745 !important;
    color: #fff !important;
}

.bg-danger {
    background: #ff4d4d !important;
    color: #fff !important;
}

.bg-warning {
    background: #ffd700 !important;
    color: #000 !important;
}

.bg-info {
    background: #17a2b8 !important;
    color: #000 !important;
}

/* ===========================
   Forms
   =========================== */
.form-control,
.form-select,
textarea {
    background: #111;
    border: 1px solid #333;
    color: #fff;
    border-radius: 10px;
}

.form-control:focus,
.form-select:focus,
textarea:focus {
    border-color: #ffd700;
    box-shadow: 0 0 5px #ffd700;
    outline: none;
}

/* ===========================
   Profile Image
   =========================== */
.img-profile {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ffd700;
}

/* ===========================
   Navbar / Topbar
   =========================== */
.topbar {
    background: #1a1a1a;
    border-radius: 10px;
    padding: 10px 20px;
}

.topbar a {
    color: #fff;
    font-size: 1.2rem;
}

.topbar a:hover {
    color: #ffd700;
}

/* ===========================
   Utility Classes
   =========================== */
.rounded-xl {
    border-radius: 20px !important;
}

.shadow-gold {
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
}



/* ===========================
   Login Signup
   =========================== */
.auth-container {
    max-width: 500px;
    margin: 5% auto;
    background: #1a1a1a;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.auth-container h2 {
    color: #ffd700;
    text-align: center;
    margin-bottom: 25px;
    font-weight: 600;
}

/* ===========================
   Sidebar
   =========================== */

/* Mobile Sidebar */
.sidebar-mobile {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100vh;
    background: #1a1a1a;
    z-index: 1050;
    transition: left 0.3s;
    padding: 20px;
}

.sidebar-mobile.active {
    left: 0;
}

.sidebar-mobile ul li a {
    color: #fff;
    display: block;
    padding: 10px 0;
    font-weight: 500;
}

.sidebar-mobile ul li a:hover {
    color: #ffd700;
}

.nav-link {
    color: #ddd;
    padding: 10px 15px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    transition: background 0.3s, color 0.3s;
}

.nav-link:hover {
    background: rgba(255, 215, 0, 0.1);
    /* हल्का गोल्ड hover */
    color: #FFD700;
}

.nav-link.active {
    background: #FFD700;
    /* गोल्ड background */
    color: #1a1a1a;
    /* dark text */
    font-weight: bold;
}