/* =========================
   Brand Webfonts (Self-hosted)
   ========================= */

@font-face {
  font-family: "Dazs";
  src: url("/assets/fonts/dazs-webfont.woff2") format("woff2"),
       url("/assets/fonts/dazs-webfont.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Dazs";
  src: url("/assets/fonts/dazs-bold-webfont.woff2") format("woff2"),
       url("/assets/fonts/dazs-bold-webfont.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Dazs Script";
  src: url("/assets/fonts/dazs-script-webfont.woff2") format("woff2"),
       url("/assets/fonts/dazs-script-webfont.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* =========================
   Root Variables
   ========================= */

:root {
  /* Häagen-Dazs Brand Colors */
  --hd-burgundy: #650B32;
  --hd-gold: #D29937;
  --hd-gold-medium: #F9D79C;
  --hd-gold-light: #F9E6C3;
  --hd-white: #FFFFFF;

  /* Brand Fonts */
  --font-headline: "Dazs", serif;
  --font-script: "Dazs Script", cursive;
  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

/* =========================
   Base Typography
   ========================= */

html {
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--hd-burgundy);
  background-color: var(--hd-white);
  line-height: 1.5;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-headline);
  font-weight: 700;
  color: var(--hd-burgundy);
}

.brand-script {
  font-family: var(--font-script);
}

/* =========================
   Utility Examples (optional)
   ========================= */

.text-gold {
  color: var(--hd-gold);
}

.bg-gold {
  background-color: var(--hd-gold);
  color: var(--hd-white);
}
