/* ==========================================================================
   McGarity Elementary School — brand overrides.

   Loaded after /shared/store.css, so anything set here wins. Nothing is
   overridden yet: the shared palette is the Nebo blue, which reads as a school
   store and is a reasonable place to start. This file exists so rebranding
   McGarity never means editing the file the other stores also load.

   To rebrand once the school's colors are known, uncomment and change. Set the
   dark-mode block too — a light-only accent goes muddy against the dark
   surface.
   ========================================================================== */

/*
:root {
  --accent: #0f6d92;
  --accent-hot: #0b5878;
  --accent-wash: #e4f1f7;
}

@media (prefers-color-scheme: dark) {
  :root {
    --accent: #4bb8dd;
    --accent-hot: #6fcbea;
    --accent-wash: #12303f;
  }
}
*/

/* If the school seal turns out to be wide rather than round, uncomment this —
   the shared header sizes the logo as a 52px SQUARE, which crushes a wide mark
   to half height. Goldusters does exactly this.

.brand-logo {
  width: auto;
  height: 52px;
  max-width: 120px;
}

@media (max-width: 620px) {
  .brand-logo {
    height: 42px;
    max-width: 96px;
  }
}
*/
