/* app/static/css/style.css */

/* --- Brand Variables (Derived from Cuttlefish Logo) --- */
:root {
    --cuttlefish-dark: #1E1715;       /* Deep espresso/charcoal for text */
    --cuttlefish-brown: #4A3B35;      /* Sepia brown for borders and subtext */
    --cuttlefish-gold: #D9A036;       /* Warm amber gold for highlights & buttons */
    --cuttlefish-teal: #5B7B76;       /* Muted iridescent slate-teal for accents */
    --cuttlefish-sand: #E2D9CE;       /* Sandy taupe for borders/cards */
    --cuttlefish-light: #F9F8F6;      /* Clean warm off-white canvas */
}

/* --- Global Overrides --- */
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--cuttlefish-light);
    color: var(--cuttlefish-dark);
}

/* --- Navigation --- */
.navbar {
    background-color: var(--cuttlefish-dark) !important;
    border-bottom: 3px solid var(--cuttlefish-gold);
}

.navbar-brand {
    letter-spacing: -0.5px;
    color: #FFFFFF !important;
}

/* --- Buttons --- */
.btn-primary {
    background-color: var(--cuttlefish-gold);
    border-color: var(--cuttlefish-gold);
    color: #1E1715;
    font-weight: 600;
    transition: all 0.2s ease-in-out;
}

.btn-primary:hover {
    background-color: #C38E2C;
    border-color: #C38E2C;
    color: #1E1715;
    box-shadow: 0 4px 6px rgba(217, 160, 54, 0.25);
}

.btn-outline-secondary {
    color: var(--cuttlefish-brown);
    border-color: var(--cuttlefish-brown);
    font-weight: 600;
}

.btn-outline-secondary:hover {
    background-color: var(--cuttlefish-brown);
    color: white;
}

/* --- Interactive Cards (Value Props) --- */
.shadow-sm {
    transition: all 0.3s ease;
    border: 1px solid var(--cuttlefish-sand);
    border-top: 4px solid var(--cuttlefish-sand);
}

.shadow-sm:hover {
    box-shadow: 0 10px 15px -3px rgba(30, 23, 21, 0.08), 0 4px 6px -2px rgba(30, 23, 21, 0.04) !important;
    border-top-color: var(--cuttlefish-gold);
}

/* --- Typography Tweaks --- */
h1, h2, h3, h4, h5, h6 {
    color: var(--cuttlefish-dark);
    letter-spacing: -0.5px;
}

.text-muted {
    color: var(--cuttlefish-brown) !important;
}

/* --- Navbar Circular Logo Styling --- */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.navbar-brand img {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    object-fit: cover;
    display: inline-block;
    border: 2px solid var(--cuttlefish-teal, #0D9488); /* Optional subtle brand ring */
}

/* --- Sticky Footer Layout --- */
html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--cuttlefish-light);
    color: var(--cuttlefish-navy);
}

main {
    flex: 1 0 auto; /* Forces the main content area to expand and push the footer down */
}