/* ---------- Fonts ---------- */
@font-face {
  font-family: "Nohemi";
  src: url("../assets/fonts/Nohemi-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Nohemi";
  src: url("../assets/fonts/Nohemi-Medium.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Nohemi";
  src: url("../assets/fonts/Nohemi-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Nohemi";
  src: url("../assets/fonts/Nohemi-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Nohemi";
  src: url("../assets/fonts/Nohemi-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-display: swap;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
p,
ul,
figure {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
}

/* ---------- Design tokens ---------- */
:root {
  /* Brand — confirmed */
  --color-pink: #f034c5;
  --color-blue: #1e7fe0;
  --color-ticket-blue: #acd2f8;
  --color-footer-blue: var(--color-blue);

  /* Text — sampled directly from the lossless Figma export */
  --color-ink: #000000;
  --color-muted: #595757;

  --color-white: #ffffff;

  --font-display: "Nohemi", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container-width: 1280px;
}

/* ---------- Base typography ---------- */
body {
  font-family: var(--font-display);
  color: var(--color-ink);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
}

.container {
  /* Flush edges at the 1440px reference width (measured), 24px breathing
     room once the viewport drops below the container width. */
  width: min(var(--container-width), 100% - 48px);
  margin-inline: auto;
}

/* ---------- Shared placeholder-asset styling ----------
   Marks any not-yet-final image slot so it can never be
   mistaken for a finished asset. Swap for a real <img> when
   the export arrives. */
.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: repeating-linear-gradient(
    45deg,
    #eef1f5,
    #eef1f5 10px,
    #e4e8ee 10px,
    #e4e8ee 20px
  );
  border: 1px dashed #b7c0cc;
  color: var(--color-muted);
  font-size: 12px;
  line-height: 1.4;
  padding: 8px;
}
