/* Kantin Berkah — yellowish-orange theme (overrides Bootstrap 5.3 primary) */

:root {
    --bs-primary: #f39c12;
    --bs-primary-rgb: 243, 156, 18;

    /* Links */
    --bs-link-color: #e0800c;
    --bs-link-color-rgb: 224, 128, 12;
    --bs-link-hover-color: #b45309;
    --bs-link-hover-color-rgb: 180, 83, 9;
}

/* Backgrounds (navbar, etc.) */
.bg-primary {
    background-color: #f39c12 !important;
}

.bg-primary-subtle {
    background-color: #f9e9d1 !important;
}

/* Primary buttons */
.btn-primary {
    --bs-btn-bg: #f39c12;
    --bs-btn-border-color: #f39c12;
    --bs-btn-hover-bg: #e0800c;
    --bs-btn-hover-border-color: #e0800c;
    --bs-btn-active-bg: #c96f0a;
    --bs-btn-active-border-color: #c96f0a;
    --bs-btn-disabled-bg: #f39c12;
    --bs-btn-disabled-border-color: #f39c12;
    --bs-btn-color: #fff;
    --bs-btn-hover-color: #fff;
    --bs-btn-active-color: #fff;
    --bs-btn-focus-shadow-rgb: 243, 156, 18;
}

/* Outline primary buttons */
.btn-outline-primary {
    --bs-btn-color: #c96f0a;
    --bs-btn-border-color: #f39c12;
    --bs-btn-hover-bg: #f39c12;
    --bs-btn-hover-border-color: #f39c12;
    --bs-btn-hover-color: #fff;
    --bs-btn-active-bg: #e0800c;
    --bs-btn-active-border-color: #e0800c;
    --bs-btn-active-color: #fff;
    --bs-btn-disabled-color: #f39c12;
    --bs-btn-disabled-border-color: #f39c12;
    --bs-btn-focus-shadow-rgb: 243, 156, 18;
}

/* Accent text / icons */
.text-primary {
    color: #d97706 !important;
}

/* Form focus ring in theme color */
.form-control:focus,
.form-select:focus {
    border-color: #f6bd6a;
    box-shadow: 0 0 0 0.25rem rgba(243, 156, 18, 0.25);
}

/* Subtle warm tint for the page background */
body.bg-body-tertiary {
    background-color: #fdf7ee !important;
}
