html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

:root {
    --brand: #1e73ff;
}

a.btn-outline-primary {
    border-color: var(--brand);
    color: var(--brand);
}

a.btn-outline-primary:hover {
    background: var(--brand);
    color: white;
}

/* --- Modern UI layer --- */
:root {
    --surface: #ffffff;
    --surface-2: #f6f7fb;
    --text: #101828;
    --muted: #667085;
    --border: rgba(16, 24, 40, 0.10);
    --shadow: 0 10px 30px rgba(16, 24, 40, 0.08);
    --shadow-sm: 0 6px 16px rgba(16, 24, 40, 0.08);
    --radius: 16px;
}

/* page background */
body {
    background: var(--surface-2);
    color: var(--text);
}

/* modern cards */
.card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

/* headings */
h1, h2, h3 {
    letter-spacing: -0.02em;
}

/* “chip” style badge */
.badge-soft {
    background: rgba(99, 102, 241, 0.12);
    color: #4338ca;
    border: 1px solid rgba(99, 102, 241, 0.20);
    border-radius: 999px;
    font-weight: 600;
}

/* photo grid */
.photo-tile {
    display: block;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 8px 18px rgba(16, 24, 40, 0.08);
    transform: translateY(0);
    transition: transform 120ms ease, box-shadow 120ms ease;
}

    .photo-tile:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow);
    }

.photo-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

/* modern timeline */
.timeline {
    position: relative;
    margin: 0;
    padding-left: 1.25rem;
}

    .timeline::before {
        content: "";
        position: absolute;
        left: 0.45rem;
        top: 0.25rem;
        bottom: 0.25rem;
        width: 2px;
        background: rgba(16, 24, 40, 0.10);
        border-radius: 2px;
    }

.timeline-item {
    position: relative;
    padding: 0.75rem 0 0.75rem 0.75rem;
}

    .timeline-item::before {
        content: "";
        position: absolute;
        left: 0.18rem;
        top: 1.05rem;
        width: 10px;
        height: 10px;
        border-radius: 999px;
        background: #6366f1;
        box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.16);
    }

.timeline-title {
    font-weight: 700;
}

.timeline-meta {
    color: var(--muted);
    font-size: 0.875rem;
}

/* --- Admin helpers --- */
.admin-shell {
    max-width: 1100px;
    margin: 0 auto;
}

.admin-card {
    border-radius: 16px;
    border: 1px solid rgba(16,24,40,.10);
    box-shadow: 0 8px 18px rgba(16,24,40,.08);
}

.admin-muted {
    color: #667085;
}

.kpi-pill {
    border-radius: 999px;
    border: 1px solid rgba(16,24,40,.10);
    padding: .25rem .6rem;
    background: rgba(255,255,255,.75);
}

body {
    background: #f6f7fb;
}

.navbar {
    box-shadow: 0 6px 24px rgba(15, 23, 42, 0.06);
}

.admin-shell .admin-card,
.card {
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
    border: 0;
}

.fc-hero {
    min-height: calc(100vh - 120px);
    background: #f6f7fb;
}

.fc-logo {
    height: 46px;
    width: auto;
    border-radius: 10px;
}

.fc-card {
    border: 0;
    border-radius: 18px;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.10);
}

.fc-tabs {
    display: flex;
    justify-content: center;
}

.fc-tab {
    font-size: 12px;
    letter-spacing: .06em;
    font-weight: 700;
    color: #4f46e5;
    padding: 10px 16px;
    border-bottom: 2px solid #4f46e5;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.fc-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #4f46e5;
    display: inline-block;
}

.btn-primary {
    box-shadow: 0 12px 28px rgba(79, 70, 229, 0.25);
    border-radius: 12px;
}

.btn-outline-primary {
    border-radius: 12px;
}

.form-control-lg {
    border-radius: 14px;
    padding: 14px 16px;
}

