/**
 * Copyright © 2025-2026 Callibrity, Inc. (contactus@callibrity.com)
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
/* Callibrity brand palette & typography (brand guidelines §3.8, §3.12–3.16).
   Colors: Dark Plum #360D2D · Purple #C793BC · Light Purple #D9AFD0 ·
   Yellow #FFCD00 · Sky Blue #B0EAFF · Green #B4C04C */

@import url('https://fonts.googleapis.com/css2?family=Besley:ital,wght@0,300..900;1,300..900&display=swap');

:root {
  --callibrity-dark-plum: #360D2D;
  --callibrity-purple: #C793BC;
  --callibrity-light-purple: #D9AFD0;
  --callibrity-yellow: #FFCD00;
}

/* Light scheme: white-dominant, dark plum replaces black, purple accents. */
[data-md-color-scheme="default"] {
  --md-primary-fg-color: var(--callibrity-dark-plum);
  --md-primary-fg-color--light: #5C2A4E;
  --md-primary-fg-color--dark: #23081D;
  --md-accent-fg-color: #9E5B8D;
  --md-typeset-a-color: #7A3D6C;
}

/* Dark scheme: plum-tinted slate, light purple links, yellow accent. */
[data-md-color-scheme="slate"] {
  --md-hue: 315;
  --md-primary-fg-color: var(--callibrity-dark-plum);
  --md-primary-fg-color--light: #5C2A4E;
  --md-primary-fg-color--dark: #23081D;
  --md-accent-fg-color: var(--callibrity-yellow);
  --md-typeset-a-color: var(--callibrity-light-purple);
}

/* Headline/display face: Besley (Caslon Ionic substitute), light, -2% tracking. */
.md-typeset h1,
.md-typeset h2,
.md-typeset h3,
.md-typeset h4 {
  font-family: "Besley", Georgia, serif;
  font-weight: 300;
  letter-spacing: -0.02em;
}

.md-typeset h1 strong,
.md-typeset h2 strong,
.md-typeset h3 strong,
.md-typeset h4 strong {
  font-weight: 600;
}

[data-md-color-scheme="default"] .md-typeset h1,
[data-md-color-scheme="default"] .md-typeset h2 {
  color: var(--callibrity-dark-plum);
}

/* Blockquotes carry the yellow callout treatment from the brand system. */
.md-typeset blockquote {
  border-left: 0.2rem solid var(--callibrity-yellow);
}
