@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;700;800;900&display=swap');

:root {
    --primary: #e8650a;
    --primary-hover: #d65a08;
    --bg-color: #faf8f5;
    --text-dark: #1a1208;
    --text-muted: #8a7d6b;
    --border-color: #ddd6cc;
    --success: #1a7a4a;
    --card-bg: #ffffff;
}

body {
    font-family: 'Tajawal', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-dark);
}

/* --- Navbar --- */
.custom-navbar {
    background-color: #1a1208;
    padding: 12px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.brand-logo {
    font-size: 20px;
    font-weight: 900;
    color: #f0c860;
    text-decoration: none;
}

.brand-logo span {
    color: white;
}

.nav-link-custom {
    color: white;
    font-weight: 700;
    text-decoration: none;
    padding: 8px 12px;
    transition: 0.2s;
}

.nav-link-custom:hover {
    color: var(--primary);
}

/* --- Buttons --- */
.btn-primary-custom {
    background: var(--primary);
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    color: white;
    font-weight: 700;
    transition: 0.2s;
    width: 100%;
}

.btn-primary-custom:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(232, 101, 10, 0.2);
}

/* --- Forms (Auth) --- */
.auth-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.auth-card {
    background: var(--card-bg);
    border: 1.5px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-control-custom {
    background: #f0ebe3;
    border: 1.5px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 15px;
    color: var(--text-dark);
    transition: 0.2s;
}

.form-control-custom:focus {
    background: white;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(232, 101, 10, 0.1);
    outline: none;
}

.form-label-custom {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 6px;
    color: var(--text-dark);
}

/* --- Utilities --- */
.text-primary-custom {
    color: var(--primary) !important;
    text-decoration: none;
    font-weight: 700;
}

.text-primary-custom:hover {
    text-decoration: underline;
}
