* { box-sizing: border-box; }

html, body {
  margin: 0;
  min-height: 100%;
  background: #000;
  color: #fff;
  font-family: "Montserrat", Arial, sans-serif;
}

body { min-height: 100vh; }

.page {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: #000;
}

.background {
  position: absolute;
  inset: 0;
  background: url("assets/mainstage-stage.jpg") center center / cover no-repeat;
  transform: scale(1.03);
  filter: saturate(.75) contrast(1.05);
}

.shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 43%, rgba(0,0,0,.18), rgba(0,0,0,.68) 72%),
    linear-gradient(to bottom, rgba(0,0,0,.36), rgba(0,0,0,.72));
}

.content {
  position: relative;
  z-index: 1;
  width: min(900px, 92vw);
  text-align: center;
  margin-top: -1vh;
}

.logo {
  display: block;
  width: min(680px, 86vw);
  max-height: 310px;
  object-fit: contain;
  margin: 0 auto 34px;
  filter: drop-shadow(0 8px 30px rgba(0,0,0,.8))
          drop-shadow(0 0 25px rgba(212,175,55,.12));
}

h1 {
  margin: 0;
  font-size: clamp(48px, 9vw, 104px);
  line-height: .95;
  font-weight: 900;
  letter-spacing: -.045em;
  text-shadow: 0 4px 24px rgba(0,0,0,.9);
}

p {
  margin: 22px 0 0;
  font-size: clamp(14px, 2vw, 19px);
  font-weight: 600;
  letter-spacing: .08em;
  color: #f0d875;
  text-shadow: 0 2px 12px rgba(0,0,0,.95);
}

footer {
  position: absolute;
  z-index: 1;
  bottom: 22px;
  right: 28px;
  color: rgba(245,216,111,.55);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .22em;
}

@media (max-width: 600px) {
  .content { margin-top: -3vh; }
  .logo {
    width: 88vw;
    max-height: 210px;
    margin-bottom: 26px;
  }
  h1 { font-size: clamp(42px, 13vw, 70px); }
  p {
    font-size: 12px;
    letter-spacing: .045em;
  }
  footer {
    bottom: 16px;
    right: 18px;
  }
}
