html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: black;
}

body {
  background-image: url("background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  position: relative;

  width: 100vw;
  height: 100vh;

  margin: 0;
  padding: 0;
}

/* subtle cinematic dark overlay */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

/* logo placement (upper cinematic zone) */
.logo {
  position: absolute;
  top: 8%;
  left: 50%;
  transform: translateX(-50%);

  width: clamp(120px, 18vw, 320px);

  z-index: 2;
}

/* bottom invitation text */
.invitation {
  position: absolute;
  bottom: 4%;
  left: 50%;
  transform: translateX(-50%);

  font-size: 9px;
  letter-spacing: 0.35em;

  color: #FF3700;

  font-family: monospace;

  z-index: 2;
}

/* mobile adjustments */
@media (max-width: 768px) {
  .logo {
    top: 16%;
    width: 65vw;
  }

  .invitation {
    bottom: 5%;
    font-size: 10px;
  }
}
@media (max-width: 768px) {
  .logo {
    top: 5.5%;
  }
}

@media (max-width: 430px) {
  .logo {
    top: 4.5%;
  }
}