/* ===== 加载字体 ===== */
@font-face {
  font-family: 'Monument';
  src: url('font/ABCMonumentGroteskCyrillic-Regular-Trial.otf') format('opentype');
}

/* ===== 基础重置 ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 外圈深色背景，铺满屏幕，把海报居中 */
html {
  background: #5c6e6b;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* A1 比例海报（594:841），屏幕友好尺寸 */
body {
  position: relative;
  width: 600px;
  height: 850px;
  padding: 36px 28px 28px;
  background: #b9c6c7;
  font-family: 'Monument', Helvetica, Arial, sans-serif;
  color: #4a4a4a;
  overflow: hidden;
}

/* 大标题 */
h1 {
  position: relative;
  z-index: 2;
  width: 190px;
  overflow-wrap: break-word;
  font-size: 84px;
  font-weight: normal;
  line-height: 0.93;
  letter-spacing: -2px;
  color: #c27a5a;
}

/* 背景照片 */
.photo {
  position: absolute;
  top: 115px;
  left: 28px;
  width: calc(100% - 56px);
  height: 380px;
  object-fit: cover;
  opacity: 0.92;
  z-index: 1;
}

/* 正文 */
.desc {
  position: relative;
  z-index: 2;
  margin-top: 170px;
  font-size: 10px;
  line-height: 1.65;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  text-align: justify;
  color: #4a4a4a;
}

/* 日期 */
.date {
  position: relative;
  z-index: 2;
  margin-top: 45px;
  font-size: 48px;
  line-height: 1;
  letter-spacing: -1px;
  color: #c27a5a;
}

/* 地点 */
.place {
  position: relative;
  z-index: 2;
  margin-top: 7px;
  font-size: 12px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: #c27a5a;
}

/* 电话和ins */
.tel, .ig {
  position: relative;
  z-index: 2;
  margin-top: 2px;
  font-size: 8px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: #c27a5a;
}

/* 右下角二维码 */
.qr {
  position: absolute;
  right: 28px;
  bottom: 25px;
  width: 95px;
  padding: 8px 8px 5px;
  text-align: center;
  background: #ececec;
}

.qr img {
  display: block;
  width: 78px;
  height: 78px;
  margin: 0 auto;
}

.qr p {
  margin-top: 4px;
  font-size: 6px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: #888;
}
