/* Fuguru Theme - Custom Color Scheme */
/* Basierend auf altem Vidensus-Farbschema */

:root {
    /* Primary Colors - Dunkelbraun */
    --bs-primary: #5d392d !important;
    --bs-primary-rgb: 93, 57, 45 !important;

    /* Secondary Colors */
    --bs-secondary: #fff6af !important;
    --bs-secondary-rgb: 255, 246, 175 !important;

    /* Background - Kräftiges Gelb */
    --bs-body-bg: #fde898 !important;
    --bs-body-bg-rgb: 253, 232, 152 !important;

    /* Links */
    --bs-link-color: #5d392d !important;
    --bs-link-hover-color: #3d251e !important;

    /* Gradient for primary */
    --bs-gradient: linear-gradient(310deg, #5d392d, #8b5a4a) !important;

    /* Dark color override */
    --bs-dark: #5d392d !important;
    --bs-dark-rgb: 93, 57, 45 !important;
}

/* ===== BODY & BACKGROUND ===== */
body {
    background-color: #fde898 !important;
    color: #5d392d !important;
}

/* ===== HEADINGS ===== */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    color: #5d392d !important;
}

/* ===== TEXT COLORS ===== */
.text-black {
    color: #5d392d !important;
}

.text-dark {
    color: #5d392d !important;
}

.text-darker {
    color: #3d251e !important;
}

.text-white-50 {
    color: rgba(93, 57, 45, 0.5) !important;
}

.text-muted {
    color: #7a5a4d !important;
}

/* Text Gradient Override */
.text-gradient.text-primary {
    background-image: linear-gradient(310deg, #5d392d, #8b5a4a) !important;
}

/* ===== BUTTONS ===== */
.btn-primary {
    background-color: #5d392d !important;
    border-color: #5d392d !important;
    color: #fff6af !important;
}

.btn-primary:hover {
    background-color: #4a2e24 !important;
    border-color: #4a2e24 !important;
}

.btn-outline-primary {
    color: #5d392d !important;
    border-color: #5d392d !important;
}

.btn-outline-primary:hover {
    background-color: #5d392d !important;
    border-color: #5d392d !important;
    color: #fff6af !important;
}



/* ===== NAVBAR ===== */
.navbar .nav-link {
    color: #5d392d !important;
}

.navbar .nav-link:hover {
    color: #3d251e !important;
}

/* ===== LINKS ===== */
a {
    color: #5d392d;
}

a:hover {
    color: #3d251e;
}

/* ===== DROPDOWN ===== */
.dropdown-menu {
    background-color: #fff6af !important;
    border-color: #5d392d !important;
}

.dropdown-item {
    color: #5d392d !important;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: #fde898 !important;
    color: #3d251e !important;
}

.dropdown-header {
    color: #5d392d !important;
}

/* ===== ACCORDION ===== */
.accordion-button {
    background-color: #fff6af !important;
    color: #5d392d !important;
}

.accordion-button:not(.collapsed) {
    background-color: #fde898 !important;
    color: #5d392d !important;
}

.accordion-button:focus {
    border-color: #5d392d !important;
    box-shadow: 0 0 0 0.2rem rgba(93, 57, 45, 0.25) !important;
}

.accordion-body {
    background-color: #fff6af !important;
    color: #5d392d !important;
}

/* ===== FORM INPUTS ===== */
.form-control,
.form-select {
    background-color: #fff6af !important;
    border-color: #5d392d !important;
    color: #5d392d !important;
}

.input-group-text {
    background-color: #fff6af !important;
    border-color: #5d392d !important;
    color: #5d392d !important;
}

.form-control:focus,
.form-select:focus {
    border-color: #5d392d !important;
    box-shadow: 0 0 0 0.2rem rgba(93, 57, 45, 0.25) !important;
}

.form-control::placeholder {
    color: #7a5a4d !important;
}

/* ===== PAGINATION ===== */
.pagination-primary .page-link {
    background-color: #fff6af !important;
    border-color: #5d392d !important;
    color: #5d392d !important;
}

.pagination-primary .page-link:hover {
    background-color: #fde898 !important;
    border-color: #5d392d !important;
    color: #3d251e !important;
}

.pagination-primary .page-item.active .page-link,
.pagination.pagination-primary .page-item.active .page-link,
.page-item.active .page-link {
    background-color: #5d392d !important;
    border-color: #5d392d !important;
    color: #fff6af !important;
    background-image: none !important;
}

.pagination-primary .page-item.disabled .page-link {
    background-color: #f5e6a3 !important;
    border-color: #d4b560 !important;
    color: #7a5a4d !important;
}

/* ===== BACKGROUND GRADIENTS ===== */
.bg-gradient-secondary {
    background-image: linear-gradient(310deg, #fde898, #fff6af) !important;
}

.bg-gradient-info {
    background-image: linear-gradient(310deg, #5d392d, #8b5a4a) !important;
}

.bg-gradient-dark {
    background-image: linear-gradient(310deg, #f53939 0%, #fbcf33 100%) !important;
}

/* ===== CAROUSEL ===== */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(20%) sepia(30%) saturate(500%) hue-rotate(350deg) !important;
}

.carousel-indicators button {
    background-color: #5d392d !important;
}

.carousel-indicators button.active {
    background-color: #3d251e !important;
}

/* ===== LIST STYLES ===== */
ul, ol, li {
    color: #5d392d;
}

/* ===== FOOTER ===== */
.footer {
    background-color: #fde898 !important;
    color: #5d392d !important;
}

.footer a {
    color: #5d392d !important;
}

.footer a:hover {
    color: #3d251e !important;
}

/* ===== PAYMENT SELECT ===== */
#payment_select {
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 0.75rem;
    padding: 1rem;
}