@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Lora:ital,wght@0,400;0,500;1,400&display=swap');

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

html, body {
  height: 100%;
}

body {
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 40px 20px;
}

/* ── Page: relative container for logo background ── */
.page {
  position: relative;
  width: 100%;
  max-width: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 700px;
}

/* ── Logo: absolute background behind content ── */
.logo-bg {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1600px;
  max-width: 190vw;
  height: auto;
  object-fit: contain;
  opacity: 0.9;
  pointer-events: none;
  z-index: 0;
}

/* ── Content: on top of logo ── */
.content {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 160px 30px 60px;
  background: radial-gradient(
    ellipse 70% 55% at 50% 50%,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.7) 50%,
    transparent 100%
  );
}

/* ── Headline ── */
.title {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 72px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1.1;
  margin-bottom: 22px;
}

/* ── Subheading ── */
.subheading {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 34px;
}

/* ── Body text ── */
.body-text {
  font-family: 'Lora', Georgia, serif;
  font-size: 22px;
  color: #d0d0d0;
  line-height: 1.75;
  margin-bottom: 50px;
}

/* ── Button group ── */
.buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 100%;
}

/* Primary row: ◄ [button] ► */
.btn-primary-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.arrow {
  font-size: 22px;
  color: #b91c1c;
  line-height: 1;
  flex-shrink: 0;
}

/* Shared button base */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 300px;
  padding: 15px 20px;
  border-radius: 2px;
  text-decoration: none;
  font-family: 'Cinzel', Georgia, serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: filter 150ms ease-out, transform 150ms ease-out;
}

/* ── Primary: deep crimson gradient ── */
.btn-primary {
  background: linear-gradient(to right, #6e0d0d 0%, #a31818 50%, #6e0d0d 100%);
  color: #fff;
  border: none;
}

.btn-primary:hover {
  filter: brightness(1.2);
  transform: translateY(-1px);
}

/* ── Secondary: ghost / white border ── */
.btn-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

/* ── Mobile ── */
@media (max-width: 500px) {
  .title      { font-size: 48px; }
  .subheading { font-size: 20px; }
  .body-text  { font-size: 17px; }
  .logo-bg    { width: 100vw; }
  .content    { padding: 120px 16px 40px; }
  .btn        { width: 240px; }
}
