/* =============================================
   KAKAU — Global Styles & Design Tokens
   ============================================= */

@font-face {
  font-family: "MOONSILVER";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/MOONSILVER.woff") format("woff");
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Colors */
  --color-primary-dark: #160302;
  --color-cream: #fff3e9;
  --color-accent: #a62d0e;
  --color-gold: #fbb03b;
  --color-white: #ffffff;
  --color-black: #000000;

  /* Typography */
  --font-display: "MOONSILVER", sans-serif;
  --font-body: "Helvetica Neue", Helvetica, Arial, sans-serif;

  /* Font sizes */
  --text-xs: 10px;
  --text-sm: 12px;
  --text-base: 14px;
  --text-md: 16px;
  --text-lg: 20px;
  --text-xl: 24px;
  --text-2xl: 25px;
  --text-3xl: 38px;
  --text-4xl: 58px;
  --text-5xl: 103px;
  --text-6xl: 126px;

  /* Layout */
  /* --container-max: 1280px; */
  --container-max: 1440px;
  --container-padding: 60px;
  --site-header-height: 149px;
  --hero-content-gap: 145px;

  /* Spacing */
  --section-label-gap: 16px;
  --nav-gap: 60px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-cream);
  background-color: var(--color-primary-dark);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul,
ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

@media (max-width: 1024px) {
  :root {
    --container-padding: 40px;
  }
}

@media (max-width: 768px) {
  :root {
    --container-padding: 20px;
  }
}