/* GaMalete District Council — shared visual shell (CPC portals + public reporting) */
:root {
  --council-gold: #c9a84c;
  --council-gold-mid: #a88b3d;
  --council-gold-dim: #6b5a32;
  --council-navy: #070a12;
  --council-ink: #0e121f;
  --council-border: rgba(201, 168, 76, 0.28);
  --council-text-muted: #8b92a8;
}

body.council-app {
  margin: 0;
  min-height: 100vh;
  position: relative;
  background-color: var(--council-navy);
  background-image:
    linear-gradient(168deg, rgba(6, 10, 20, 0.42) 0%, rgba(10, 14, 26, 0.34) 42%, rgba(5, 8, 16, 0.48) 100%),
    url("bg.png");
  background-size: cover, cover;
  background-position: center, center;
  background-attachment: fixed, fixed;
  background-repeat: no-repeat, no-repeat;
}

body.council-app::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 100% 70% at 50% -15%, rgba(201, 168, 76, 0.2), transparent 58%),
    linear-gradient(to bottom, rgba(4, 6, 12, 0.18), rgba(4, 6, 14, 0.3));
}

.council-shell {
  position: relative;
  z-index: 1;
}

.council-masthead {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--council-border);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

.council-masthead img.council-banner-img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 200px;
  object-fit: cover;
  object-position: center;
}

.council-brand-row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 20px;
  background: linear-gradient(95deg, rgba(16, 20, 32, 0.98) 0%, rgba(10, 14, 24, 0.99) 100%);
  border-top: 1px solid rgba(201, 168, 76, 0.2);
}

.council-brand-row img.council-logo-img {
  height: 58px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.council-brand-text .council-name {
  font-family: "Segoe UI", system-ui, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--council-gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.council-brand-text .council-sub {
  font-size: 12px;
  color: var(--council-text-muted);
  margin-top: 5px;
  line-height: 1.45;
  max-width: 36rem;
}

.council-login-wrap {
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.council-topbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.council-topbar-brand img.council-logo-sm {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.council-topbar-brand .council-topbar-titles .main {
  font-size: 17px;
  font-weight: 700;
  color: var(--council-gold);
  line-height: 1.2;
}

.council-topbar-brand .council-topbar-titles .sub {
  font-size: 10px;
  color: var(--council-gold);
  margin-top: 2px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
