/* BNHC — base stylesheet: design tokens, reset, and shared components.
   Page-specific rules live in css/<page>.css */

:root {
  /* Colors */
  --primary: #030f1d;
  --teal: #34b3a0;
  --white: #ffffff;
  --text-muted: #b4bbc8;
  --text: #838b99;
  --border: #cbd3df;
  --light-grey: #aeb3bc;

  /* Typography */
  --font: "Airbnb Cereal W", "Airbnb Cereal", "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Reset */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  font-family: var(--font);
  background-color: var(--primary);
  color: var(--white);
}

img {
  display: block;
}

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

/* Logo */

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 47px;
  height: 47px;
  display: block;
}

.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--white);
}

.logo-name {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 1.2px;
}

.logo-tagline {
  font-size: 8.6px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 10px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: filter 0.15s ease;
}

.btn:hover {
  filter: brightness(1.08);
}

.btn-light {
  background: var(--white);
  color: var(--primary);
  padding: 13px 20px;
}

.btn-light img {
  width: 18px;
  height: 18px;
}

.btn-teal {
  background: var(--teal);
  border: 1px solid var(--teal);
  color: var(--white);
  padding: 13px 22px;
}
