/* Base */
body {
  margin: 0;
  height: 100vh;
  position: relative;
  overflow: hidden;

  font-family: Inter, Arial, sans-serif;
  letter-spacing: 0.2px;

  color: #f4f1ea;
}

/* Background image + green tint */
body::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      rgba(30, 60, 50, 0.35),
      rgba(30, 60, 50, 0.35)
    ),
    url("background.jpg") center 46%/cover no-repeat;

  filter: blur(1.2px);
  z-index: -2;
}

/* Subtle vignette */
body::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(0,0,0,0) 45%,
    rgba(0,0,0,0.28) 100%
  );
  z-index: -1;
}

/* Text block positioned in the candle */
.container {
  position: absolute;
  left: 50%;
  top: 61%;
  transform: translate(-50%, -50%);
  max-width: 680px;
  width: calc(100% - 40px);

  text-align: center;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}

/* Title: luxe serif */
h1 {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: 54px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* Lines */
.line {
  width: 72px;
  height: 1px;
  background: rgba(244, 241, 234, 0.75);
  margin: 18px auto;
}

.line.small {
  width: 54px;
  opacity: 0.8;
}

/* Copy */
p {
  margin: 8px 0;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.6px;
  opacity: 0.92;
}

.subtitle {
  font-weight: 300;
}

.status {
  margin-top: 10px;
  font-weight: 500;
  letter-spacing: 0.8px;
}

.soon {
  font-weight: 300;
  opacity: 0.9;
}

/* Responsive: keep it premium on small screens */
@media (max-width: 520px) {
  h1 {
    font-size: 40px;
    letter-spacing: 2px;
  }

  p {
    font-size: 14px;
  }

  .container {
    top: 60%;
  }
}
