/* assets/css/style.css */
:root {
    --primary-color: #f85a00;
    /* Updated to brand orange */
    --secondary-color: #FF5E5B;
    --bg-light: #F4F7FA;
    --text-dark: #333;

    /* Bootstrap Overrides */
    --bs-primary: #f85a00;
    --bs-primary-rgb: 248, 90, 0;
}

/* Force Bootstrap utilities to use our color */
.bg-primary {
    background-color: var(--primary-color) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-check:checked+.btn-primary,
.btn-primary.active,
.btn-primary.show,
.btn-primary:first-child:active,
:not(.btn-check)+.btn-primary:active {
    background-color: #e05200;
    border-color: #e05200;
}


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

.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.btn-primary {
    background-color: var(--primary-color);
    border: none;
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: #e05200;
}

.creator-header {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    margin-top: -30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.cover-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: #ddd;
}

.profile-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid white;
    margin-top: -50px;
    object-fit: cover;
    background: #eee;
}

.donation-panel {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.coffee-btn {
    background: #FF5E5B;
    color: white;
    border-radius: 50px;
    font-weight: bold;
    border: none;
    transition: transform 0.2s;
}

.coffee-btn:hover {
    transform: scale(1.05);
    color: white;
}

.metric-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}