@font-face {
  font-family: 'Sharpie';
  src: url('fonts/Sharpie-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Sharpie';
  src: url('fonts/Sharpie-900.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --bg: #2a0d0d;
  --text: #ffffff;
  --muted: #c8c4bc;
  --link: #ffffff;
  --link-hover: #c8a96e;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url('bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.95;
  z-index: 0;
}

html {
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'General Sans', system-ui, sans-serif;
  font-weight: 400;
  letter-spacing: 0.03em;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 3rem 1.5rem 3rem 8vw;
}

main {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 480px;
}

header {
  margin-bottom: 3.5rem;
}

h1 {
  font-family: 'Sharpie', system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(3rem, 10vw, 5rem);
  letter-spacing: 0.12em;
  line-height: 1;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.dates {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 1.2rem;
}

.tagline {
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.contact {
  font-size: 1.1rem;
  color: var(--text);
}

.contact a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact a:hover {
  color: var(--link-hover);
}

section {
  margin-bottom: 2.5rem;
}

h2 {
  font-family: 'General Sans', system-ui, sans-serif;
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.9rem;
}

ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

ul a {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
  color: var(--link);
  text-decoration: none;
  font-size: 1.1rem;
  padding: 0.3rem 0;
  transition: color 0.15s ease;
}

ul a:hover {
  color: var(--link-hover);
}

ul a span {
  font-size: 0.8rem;
  color: var(--muted);
}

ul a:hover span {
  color: var(--muted);
}

@media (max-width: 480px) {
  body {
    align-items: flex-start;
    padding-top: 4rem;
    padding-left: 1.5rem;
  }

  body::before {
    background-position: 88% center;
  }
}
