:root {
  --bg: #07070a;
  --panel: rgba(0, 0, 0, 0.55);
  --panel2: rgba(0, 0, 0, 0.35);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.72);
  --border: rgba(255, 255, 255, 0.14);
  --accent: #ff2bd6;
}

@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial,
    "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("/thecafe.jpg");
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) contrast(1.05);
  transform: none;
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  display: none;
}

.container {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 5;
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.18);
  border-bottom: 1px solid var(--border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand {
  color: var(--text);
  text-decoration: none;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 22px;
  font-family: "Bebas Neue", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial;
  text-shadow:
    0 2px 18px rgba(0, 0, 0, 0.75),
    0 0 18px rgba(255, 43, 214, 0.18);
  position: relative;
}

.brand::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 43, 214, 0.9), transparent);
  opacity: 0;
  transform: translateY(2px);
  transition: opacity 150ms ease, transform 150ms ease;
}

.brand:hover::after {
  opacity: 1;
  transform: translateY(0);
}

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

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 18px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-family: "Bebas Neue", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial;
  text-shadow:
    0 2px 18px rgba(0, 0, 0, 0.75),
    0 0 18px rgba(255, 43, 214, 0.16);
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 2px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 43, 214, 0.92);
  opacity: 0;
  transform: translateY(2px);
  box-shadow: 0 0 16px rgba(255, 43, 214, 0.4);
  transition: opacity 150ms ease, transform 150ms ease;
}

.nav a:hover {
  color: rgba(255, 255, 255, 0.98);
}

.nav a:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.nav a[aria-current="page"] {
  color: rgba(255, 255, 255, 0.98);
}

.nav a[aria-current="page"]::after {
  opacity: 1;
  transform: translateY(0);
}

.main {
  padding: 0;
  flex: 1;
  display: flex;
}

.stage {
  flex: 1;
}

.hero {
  border: 1px solid var(--border);
  background: var(--panel);
  border-radius: 18px;
  padding: 22px;
}

.kicker {
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.h1 {
  margin: 10px 0 10px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.lede {
  margin: 0;
  color: var(--muted);
  max-width: 70ch;
}

.grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
  margin-top: 14px;
}

@media (max-width: 900px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

.card {
  border: 1px solid var(--border);
  background: var(--panel2);
  border-radius: 18px;
  padding: 18px;
}

.card h2 {
  margin: 0 0 10px;
  font-size: 16px;
}

.card p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 14px;
}

.list {
  margin: 0;
  padding-left: 16px;
  color: var(--muted);
  font-size: 14px;
}

.row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.btn:hover {
  background: rgba(255, 255, 255, 0.14);
}

.btn--ghost {
  background: rgba(0, 0, 0, 0.28);
}

.footer {
  margin-top: 0;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  color: rgba(255, 255, 255, 0.65);
  font-size: 16px;
  font-family: "Bebas Neue", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial;
  letter-spacing: 0.12em;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: center;
}
