:root {
    --primary: #0d6efd;
    --primary-600: #0b5ed7;
    --secondary: #6c757d;
    --muted: #6e7780;
    --bg: #f8fafc;
    --surface: #ffffff;
    --radius: 12px;
    --shadow-sm: 0 1px 3px rgba(18, 25, 30, 0.06);
    --shadow-md: 0 8px 20px rgba(18, 25, 30, 0.08);
    --max-width: 1200px;
    --accent: #198754;
    --danger: #dc3545;
    font-synthesis: none;
}

/* Base */
html,
body {
    height: 100%;
    background: linear-gradient(180deg, var(--bg), #ffffff 60%);
    color: #222;
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto,
        "Helvetica Neue", Arial;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.5;
}

.brand-text {
    line-height: 1.1;
    font-size: medium;
}

/* Container override for centered layout */
.container {
    max-width: var(--max-width);
}

/* Navbar */
.site-navbar {
    background: linear-gradient(
        90deg,
        rgba(13, 110, 253, 0.95),
        rgba(13, 110, 253, 0.92)
    );
    box-shadow: var(--shadow-md);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.site-navbar .navbar-brand {
    font-weight: 700;
    color: #fff !important;
    letter-spacing: 0.2px;
}

.site-navbar .nav-link {
    color: rgba(255, 255, 255, 0.92) !important;
    font-weight: 500;
}

.site-navbar .nav-link:hover {
    color: #fff !important;
    opacity: 0.95;
}

/* Hero */
.site-hero {
    background: linear-gradient(
        180deg,
        rgba(13, 110, 253, 0.06),
        rgba(25, 135, 84, 0.02)
    );
    padding: 48px 0;
    margin-bottom: 32px;
}
.site-hero .hero-card {
    background: var(--surface);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    padding: 22px;
}

/* Cards */
.card {
    border: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.card .card-img-top {
    object-fit: cover;
    height: 180px;
}

/* Post / Offer badges */
.badge-accent {
    background: var(--primary-600);
    color: #fff;
    font-weight: 600;
}
.badge-muted {
    background: var(--secondary);
    color: #fff;
}

/* Footer */
.site-footer {
    background: #0f1724;
    color: rgba(255, 255, 255, 0.9);
    padding: 48px 0;
    margin-top: 48px;
}
.site-footer a {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
}
.site-footer a:hover {
    text-decoration: underline;
}

/* Utility */
.kicker {
    font-size: 0.85rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}
.h1-hero {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary-600);
}

/* Grid tweaks */
.card .card-body h5 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Tiny responsive tweaks */
@media (max-width: 768px) {
    .site-hero {
        padding: 24px 0;
    }
    .card .card-img-top {
        height: 140px;
    }
    .h1-hero {
        font-size: 1.5rem;
    }
}

/* Calendar overrides (keeps your fc-present / fc-absent rules) */
.fc .fc-daygrid-event {
    border-radius: 8px;
    padding: 4px 6px;
    box-shadow: none;
}
