/* Magdeburg eSports – Design Tokens & Base Styles
   Fonts self-hosted (Khand, Mukta) instead of loading from Google's
   servers, matching the privacy approach used elsewhere in this project. */

@font-face {
  font-family: 'Khand';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('Fonts/Khand-Bold.woff2') format('woff2');
}
@font-face {
  font-family: 'Mukta';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('Fonts/Mukta-Regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Mukta';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('Fonts/Mukta-SemiBold.woff2') format('woff2');
}

:root {
  --color-ink: #2a2a28;
  --color-cream: #e4e2d9;
  --color-red-text: #b32618;
  --color-red: #f03625;
  --color-gold: #c7a35e;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Mukta', Arial, sans-serif;
  color: var(--color-ink);
  background: var(--color-cream);
}

/* ---- Footer ---- */

.footer {
  background: var(--color-ink);
  padding: 64px 100px 32px;
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 133px;
  max-width: 1440px;
  margin: 0 auto;
}

.footer__brand {
  flex: 1 1 300px;
  max-width: 300px;
}

.footer__brand-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__logo {
  width: 22.56px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
}

.footer__brand-name {
  font-family: 'Khand', Arial, sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #ffffff;
  white-space: nowrap;
  margin: 0;
}

.footer__description {
  font-family: 'Mukta', Arial, sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(217, 214, 204, 0.75);
  margin: 16px 0 20px;
  max-width: 280px;
}

.footer__socials {
  display: flex;
  gap: 10px;
}

.footer__social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 5px;
  background: var(--color-red);
  flex-shrink: 0;
}

.footer__social-icon img {
  width: 14px;
  height: 14px;
}

.footer__col {
  flex: 0 0 180px;
  width: 180px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__col-title {
  font-family: 'Mukta', Arial, sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.88px;
  color: var(--color-gold);
  margin: 0;
}

.footer__col a {
  font-family: 'Mukta', Arial, sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: rgba(217, 214, 204, 0.9);
  text-decoration: none;
}

.footer__col a:hover {
  color: #ffffff;
}

/* ---- Stat Tiles ---- */

.stat-tiles {
  display: flex;
  gap: 25px;
  padding: 60px 100px;
  background: var(--color-ink);
}

.stat-tiles__tile {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-tiles__value {
  font-family: 'Khand', Arial, sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1;
  color: #ffffff;
  white-space: nowrap;
  margin: 0;
}

.stat-tiles__value--accent {
  color: var(--color-red-text);
}

.stat-tiles__label {
  font-family: 'Mukta', Arial, sans-serif;
  font-weight: 400;
  font-size: 8px;
  line-height: 1.25;
  color: #d9d6cc;
  margin: 0;
}
