/* =========================================================
   1. ADOBE FONTS
   Må ligge helt øverst
   ========================================================= */

@import url("https://use.typekit.net/zme5hnx.css");


/* =========================================================
   Gastro Catering NY 2026 – testfonter
   Lastes kun gjennom testMaster.cshtml
   ========================================================= */


/* =========================================================
   2. FONTVARIABLER
   ========================================================= */

:root {
  --font-sans:
    "museo-sans",
    Arial,
    Helvetica,
    sans-serif;

  --font-heading-sans:
    "mundial",
    "museo-sans",
    Arial,
    Helvetica,
    sans-serif;

  --font-display:
    "gloock",
    Georgia,
    "Times New Roman",
    serif;

  --font-script:
    "rollerscript-rough",
    "rollerscript",
    "Rollerscript Rough",
    cursive;

  /* Beholdes for eksisterende hjelpeklasser i original CSS */
  --font-serif: var(--font-sans);
  --font-serif-alt: var(--font-sans);
}


/* =========================================================
   3. STANDARDTEKST
   ========================================================= */

html,
body {
  font-family: var(--font-sans);
  font-weight: 300; /* Museo Sans har ingen 400 */
  font-style: normal;
}

button,
input,
textarea,
select,
label {
  font-family: inherit;
}


/* =========================================================
   4. STANDARDOVERSKRIFTER
   Spesielle overskrifter overstyres i test_styles.css
   ========================================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-sans);
  font-style: normal;
}


/* =========================================================
   5. NAVIGASJON
   ========================================================= */

nav,
.navbar,
nav a,
.navbar a {
  font-family: var(--font-sans);
}


/* =========================================================
   6. KNAPPER
   ========================================================= */

.btn,
a.btn,
button.btn,
input[type="submit"] {
  font-family: var(--font-sans);
}


/* =========================================================
   7. VALGFRIE FONTHJELPEKLASSER
   Kan brukes direkte i templates ved behov
   ========================================================= */

.gc-font-sans {
  font-family: var(--font-sans) !important;
}

.gc-font-heading-sans {
  font-family: var(--font-heading-sans) !important;
  font-weight: 100 !important;
}

.gc-font-display {
  font-family: var(--font-display) !important;
  font-weight: 400 !important;
}

.gc-font-script {
  font-family: var(--font-script) !important;
  font-weight: 400 !important;
  font-style: normal !important;
}