:root {
    /* Color Palette - Overriding/Extending Bootstrap defaults where applicable */
    --primary-color: #C66308;
    --primary-light: #FF9839;
    --secondary-color: #FFC58F;
    --accent-color: #FEEEB3;
    
    --bg-light: #F6F6F6;
    --bg-white: #FFFFFF;
    
    --text-dark: #202020;
    --text-muted: #696969;
    --text-light: #959595;
    
    /* Bootstrap overrides */
    --bs-primary: var(--primary-color);
    --bs-body-bg: var(--bg-light);
    --bs-body-color: var(--text-dark);
}

body {
    background-color: var(--bs-body-bg);
    color: var(--bs-body-color);
    font-family: 'Outfit', sans-serif; /* Assuming usage of Outfit per request, need to import in HTML */
    -webkit-font-smoothing: antialiased;
}

/* Custom Card Styling */
.card-custom {
    background-color: var(--bg-white);
    border: none;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05); /* Soft shadow */
    transition: transform 0.2s ease;
}

.card-custom:active {
    transform: scale(0.98);
}

.card-highlight {
    background-color: var(--secondary-color);
    color: var(--text-dark);
}

/* Floating Action Button (FAB) */
.fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(198, 99, 8, 0.4);
    font-size: 24px;
    z-index: 1000;
    border: none;
    transition: transform 0.2s;
}

.fab:hover {
    background-color: var(--primary-light);
    transform: scale(1.05);
}

/* Mobile-first adjustments */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--bg-white);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
    z-index: 999;
    padding-bottom: env(safe-area-inset-bottom);
}

.nav-link.active {
    color: var(--primary-color) !important;
    font-weight: 600;
}
