/* =========================
   CUSTOM CSS FOR Kissing Museum . com
   ========================= */

/* =========================
   Ubuntu
   ========================= */
@font-face {
  font-family: "Ubuntu";
  src: url("../../fonts/ubuntu/ubuntu-v15-latin-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: optional;
}

@font-face {
  font-family: "Ubuntu";
  src: url("../../fonts/ubuntu/ubuntu-v15-latin-italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: optional;
}

@font-face {
  font-family: "Ubuntu";
  src: url("../../fonts/ubuntu/ubuntu-v15-latin-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: optional;
}

@font-face {
  font-family: "Ubuntu";
  src: url("../../fonts/ubuntu/ubuntu-v15-latin-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: optional;
}

/* Condensed (headings only, usually) */
@font-face {
  font-family: "Ubuntu Condensed";
  src: url("../../fonts/ubuntu/ubuntu-condensed-v15-latin-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: optional;
}



/* =========================
   Atkinson Hyperlegible Next
   ========================= */
@font-face {
  font-family: "Atkinson Hyperlegible Next";
  src: url("../../fonts/atkinson/AtkinsonHyperlegibleNext-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: optional;
}

@font-face {
  font-family: "Atkinson Hyperlegible Next";
  src: url("../../fonts/atkinson/AtkinsonHyperlegibleNext-Italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: optional;
}

@font-face {
  font-family: "Atkinson Hyperlegible Next";
  src: url("../../fonts/atkinson/AtkinsonHyperlegibleNext-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: optional;
}

@font-face {
  font-family: "Atkinson Hyperlegible Next";
  src: url("../../fonts/atkinson/AtkinsonHyperlegibleNext-BoldItalic.woff2") format("woff2");
  font-weight: 700;
  font-style: italic;
  font-display: optional;
}



/* =========================
   Nunito
   ========================= */
@font-face {
  font-family: "Nunito";
  src: url("../../fonts/nunito/nunito-v16-latin-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: optional;
}

@font-face {
  font-family: "Nunito";
  src: url("../../fonts/nunito/nunito-v16-latin-italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: optional;
}

@font-face {
  font-family: "Nunito";
  src: url("../../fonts/nunito/nunito-v16-latin-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: optional;
}

@font-face {
  font-family: "Nunito";
  src: url("../../fonts/nunito/nunito-v16-latin-700italic.woff2") format("woff2");
  font-weight: 700;
  font-style: italic;
  font-display: optional;
}


:root {
  --font-body: "Atkinson Hyperlegible Next", system-ui, sans-serif;
  --font-headings: "Ubuntu", "Ubuntu", system-ui, sans-serif;
--font-ui: "Ubuntu", system-ui, sans-serif;
}

body {
  font-family: var(--font-body);
}

h1, h2, h3, h4 {
  font-family: var(--font-headings);
}

#header,
button,
input,
select,
textarea {
  font-family: var(--font-ui);
}


/* =========================
   Color system (tweak these)
   ========================= */
:root{
  --c-text: #222;
  --c-muted: #666;
  --c-bg: #fff;

  /* Primary brand-ish color: links, accents */
  --c-accent: #EE0B68;

  /* Slightly darker for hover/active */
  --c-accent-strong: #9D0745;

  /* Optional subtle highlight for active menu items */
  --c-accent-soft: #E1A5BE;

  /* Hairline borders / dividers */
  --c-border: #e6e6e6;
}

/* Apply base colors */
body{
  color: var(--c-text);
  background: var(--c-bg);
}

/* Headings pick up accent (easy to play with) */
h1, h2, h3, h4{
  color: var(--c-accent-strong);
}

/* Links */
a{
  color: var(--c-accent);
}
a:hover,
a:focus{
  color: var(--c-accent-strong);
}

/* Optional: subtle separators */
hr{
  border: 0;
  border-top: 1px solid var(--c-border);
}

/* =========================
   End Color System
   ========================= */


/* =========================
   Header menu (desktop)
   ========================= */

.navbar-section.desktop-menu a {
  color: var(--c-accent);
  text-decoration: none;
  padding: 0.4rem 0.6rem;
  border-radius: 6px;
}

/* Hover / focus */
.navbar-section.desktop-menu a:hover,
.navbar-section.desktop-menu a:focus {
  color: var(--c-accent-strong);
}

/* Active / current page */
.navbar-section.desktop-menu li.active > a,
.navbar-section.desktop-menu li.selected > a,
.navbar-section.desktop-menu a[aria-current="page"] {
  color: var(--c-accent-strong);
  background: var(--c-accent-soft);
}


/* =========================
   Baseline: compact Quark
   ========================= */

/* ---- Typography ---- */
html {
  font-size: 17px;
}

body {

  line-height: 1.55;
  letter-spacing: 0;
}

h1, h2, h3, h4 {
  line-height: 1.2;
  margin-top: 0;
}

h1 { margin-bottom: 0.75rem; }
h2 { margin-bottom: 0.6rem; }
h3 { margin-bottom: 0.5rem; }

/* Paragraph rhythm */
p {
  font-size: 125%;
  margin: 0 0 0.85rem;
}

/* ---- Layout / Width ---- */
.container {
  max-width: 960px;
}

/* Reduce vertical whitespace a bit */
#body-wrapper,
#body {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

/* ---- Header / Navigation ---- */
#header {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

#header .logo img {
  max-height: 40px; /* keeps logo compact */
}

#header nav a {
  padding: 0.4rem 0.6rem;
  font-size: 0.95rem;
}

/* ---- Links ---- */
a {
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

/* ---- Footer ---- */
#footer {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  font-size: 0.9rem;
}

/* ---- Content elements ---- */
ul, ol {
  margin: 0 0 0.85rem 1.25rem;
}

blockquote {
  margin: 0 0 0.85rem;
  padding-left: 0.85rem;
  border-left: 3px solid #ddd;
}



/* Force override Quark menu colors */
#header .navbar-section.desktop-menu a {
  color: var(--c-accent) !important;
}

#header .navbar-section.desktop-menu a:hover,
#header .navbar-section.desktop-menu a:focus {
  color: var(--c-accent-strong) !important;
}

/* Active/current item */
#header .navbar-section.desktop-menu li.active > a,
#header .navbar-section.desktop-menu li.selected > a,
#header .navbar-section.desktop-menu a[aria-current="page"] {
  color: var(--c-accent-strong) !important;
  background: var(--c-accent-soft) !important;
}

/* Force menu + header UI font */
#header,
#header .navbar-section.desktop-menu,
#header .navbar-section.desktop-menu a {
  font-family: var(--font-ui) !important;
}

/* Force menu UI font (works even if menu isn't under #header) */
.navbar-section.desktop-menu,
.navbar-section.desktop-menu a {
  font-family: var(--font-ui) !important;
}
/* Force UI font in the whole desktop menu subtree */
.navbar-section.desktop-menu,
.navbar-section.desktop-menu * {
  font-family: var(--font-ui) !important;
}
