/* ===== LUXURY DARK THEME (FULL REPLACEMENT) ===== */

/* Fonts */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    src: url('/fonts/Inter-Regular.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    src: url('/fonts/Inter-Bold.woff2') format('woff2');
}

@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    src: url('/fonts/Montserrat-Regular.woff2') format('woff2');
}

@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    src: url('/fonts/Montserrat-Bold.woff2') format('woff2');
}

/* Base */
body {
    background-color: #050505;
    color: #e5e5e5;
    font-family: 'Inter', sans-serif;
}

/* ===== NAVBAR ===== */
.navbar {
    background-color: #0f0f10;
    border-bottom: 1px solid #1f1f22;
}

.navbar-nav .nav-link {
    color: #a1a1aa; /* muted */
    transition: all 0.25s ease;
}

.navbar-nav .nav-link:hover {
    color: #d4af37; /* gold */
}

.navbar-brand {
    color: #d4af37 !important;
    font-weight: 700;
    letter-spacing: 1px;
}

/* ===== FOOTER ===== */
.footer {
    background-color: #0f0f10;
    border-top: 1px solid #1f1f22;
}

.footer a {
    color: #71717a;
    transition: all 0.25s ease;
}

.footer a:hover {
    color: #d4af37;
}

/* ===== BUTTONS ===== */
.btn {
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #d4af37, #8c6f1f);
    color: #000;
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #e6c35c, #b8962e);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

/* ===== LINKS ===== */
a {
    color: #d4af37;
}

a:hover {
    color: #e6c35c;
}

/* ===== CARDS ===== */
.card {
    background-color: #17171a;
    border: 1px solid #262626;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.15);
}

/* ===== GRADIENT ===== */
.bg-brand-gradient {
    background: linear-gradient(135deg, #0f0f10, #050505);
}

/* ===== FORMS ===== */
input, textarea, select {
    background-color: #0f0f10;
    border: 1px solid #2a2a2e;
    color: #e5e5e5;
}

input:focus, textarea:focus, select:focus {
    border-color: #d4af37;
    outline: none;
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

/* ===== TABLES ===== */
table {
    background-color: #0f0f10;
    color: #e5e5e5;
}

th {
    color: #d4af37;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #050505;
}

::-webkit-scrollbar-thumb {
    background: #2a2a2e;
}

::-webkit-scrollbar-thumb:hover {
    background: #d4af37;
}
