/* marmot.css – Marmot clothing brand theme */

/* Base colors */
:root {
    --marmot-red: #6778e5;
    --marmot-dark: #2e2e2e;
    --marmot-light: #f5f5f5;
}

/* Body styles */
body {
    background-color: #ffffff;
    color: var(--marmot-dark);
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/* All primary buttons */
.btn-primary,
.btn-success,
.btn-info,
.btn-outline-primary,
.btn-outline-success,
.btn-outline-info {
    background-color: var(--marmot-red) !important;
    border-color: var(--marmot-red) !important;
    color: #ffffff !important;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn-outline-primary:hover,
.btn-outline-success:hover,
.btn-outline-info:hover {
    background-color: #ffffff !important;
    color: var(--marmot-red) !important;
    border-color: var(--marmot-red) !important;
}

/* Card headers */
.card-header {
    background-color: var(--marmot-red) !important;
    color: #ffffff !important;
    font-weight: bold;
    text-transform: uppercase;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    color: var(--marmot-red) !important;
    font-weight: bold;
}

/* Tables */
table thead th {
    background-color: var(--marmot-red) !important;
    color: white !important;
    text-transform: uppercase;
}

.table-hover tbody tr:hover {
    background-color: #fceaea;
}

/* Links */
a {
    color: var(--marmot-red);
    text-decoration: none;
}

a:hover {
    color: #8f1616;
    text-decoration: underline;
}

/* Optional: horizontal rules, borders, etc. */
hr {
    border-top: 2px solid var(--marmot-red);
}

/* Badges / Labels */
.badge-primary {
    background-color: var(--marmot-red);
}

/* Alerts */
.alert-primary {
    background-color: #fceaea;
    border-color: var(--marmot-red);
    color: var(--marmot-dark);
}

/* Optional: navbars */
.navbar {
    background-color: var(--marmot-red) !important;
}

.navbar a {
    color: #ffffff !important;
}

.navbar a:hover {
    color: #fceaea !important;
}
