@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;800&family=Oswald:wght@400;600&display=swap");

:root {
  --text: rgba(255, 255, 255, 0.92);
  --border: rgba(255, 255, 255, 0.16);
  --accent: #c7a058;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  color: var(--text);
  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;
  background: #0b0b0c;
}

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

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.72));
  z-index: -1;
}

.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: 18px;
  padding: 16px 0;
}

.brand {
  color: #fff;
  text-decoration: none;
  font-family: "Playfair Display", ui-serif, Georgia, serif;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 16px;
  text-shadow:
    0 2px 18px rgba(0, 0, 0, 0.75),
    0 0 18px rgba(199, 160, 88, 0.24);
  position: relative;
}

.brand::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(199, 160, 88, 0.95), 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: 14px;
  flex-wrap: wrap;
}

.nav a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-family: "Oswald", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: color 150ms ease;
  text-shadow:
    0 2px 18px rgba(0, 0, 0, 0.75),
    0 0 18px rgba(199, 160, 88, 0.18);
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 2px;
  height: 2px;
  border-radius: 999px;
  background: rgba(199, 160, 88, 0.95);
  opacity: 0;
  transform: translateY(2px);
  box-shadow: 0 0 18px rgba(199, 160, 88, 0.45);
  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 {
  flex: 1;
  display: flex;
}

.stage {
  flex: 1;
  position: relative;
  display: grid;
  place-items: center;
  padding: 28px 0;
}

.hero {
  width: min(720px, calc(100% - 32px));
  text-align: center;
  padding: 22px 22px 18px;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.55);
}

.hero__kicker {
  font-family: "Oswald", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.78);
}

.hero__title {
  margin: 10px 0 10px;
  display: grid;
  justify-items: center;
  gap: 6px;
}

.hero__the {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: "Oswald", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.86);
  text-shadow: 0 12px 26px rgba(0, 0, 0, 0.6);
}

.hero__the::before,
.hero__the::after {
  content: "";
  width: clamp(70px, 14vw, 150px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
}

.hero__name {
  font-family: "Playfair Display", ui-serif, Georgia, serif;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: clamp(34px, 7vw, 64px);
  line-height: 1;
  color: rgba(255, 255, 255, 0.98);
  text-shadow:
    0 14px 34px rgba(0, 0, 0, 0.65),
    2px 2px 0 rgba(199, 160, 88, 0.9),
    0 0 22px rgba(199, 160, 88, 0.35);
}

.hero__rule {
  height: 1px;
  background: rgba(255, 255, 255, 0.22);
  margin: 12px auto;
  width: min(460px, 100%);
}

.hero__tagline {
  margin: 0;
  font-family: "Oswald", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
}

.hero__actions {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-family: "Oswald", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 12px;
  transition: background 150ms ease, border-color 150ms ease, color 150ms ease;
}

.hero__btn:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.9);
  color: #0b0b0c;
}

.footer {
  border-top: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
  padding: 16px 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
}

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