/* assets/css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

:root {
    --primary-color: #0d6efd; /* Bootstrap primary, can change to gold/premium color */
    --accent-color: #d4af37; /* Gold */
    --dark-bg: #121212;
    --card-bg: #1e1e1e;
    --text-light: #ffffff;
    --text-dark: #000000;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: #f8f9fa; /* Light background for public pages as per request */
    color: var(--text-dark); /* Black text functionality */
}

/* Authentication Pages */
.auth-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.auth-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    padding: 2rem;
    width: 100%;
    max-width: 450px;
}

.auth-card h2 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.form-control {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid #dee2e6;
    color: var(--text-dark);
    padding: 12px;
}

.form-control:focus {
    background: #fff;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.btn-primary {
    background: var(--text-dark);
    border: none;
    padding: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #333;
    transform: translateY(-2px);
}

/* Dashboard Specifics (Dark Mode) */
body.dashboard-body {
    background-color: var(--dark-bg);
    color: var(--text-light);
}

.dashboard-card {
    background-color: var(--card-bg);
    border: 1px solid #333;
    border-radius: 10px;
    color: var(--text-light);
}

.dashboard-sidebar {
    background-color: #000;
    min-height: 100vh;
    border-right: 1px solid #333;
}

.dashboard-nav-link {
    color: #aaa;
    padding: 10px 15px;
    display: block;
    text-decoration: none;
    transition: 0.3s;
}

.dashboard-nav-link:hover, .dashboard-nav-link.active {
    color: #fff;
    background: rgba(255,255,255,0.1);
    border-radius: 5px;
}
