*{
  box-sizing: border-box;
}
html, body {
  height: 100%;
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: #f5f5f5;
}
#bgVideo{
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -2;
  object-fit: cover;
}
.overlay{
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,30,20,.65), rgba(12,30,20,.55));
  z-index: -1;
}
.content{
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}
h1{
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  margin: 0;
  letter-spacing: 2px;
}
.subtitle{
  margin-top: 6px;
  opacity: .9;
  letter-spacing: 3px;
}
.buttons{
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  max-width: 320px;
}
.btn{
  text-decoration: none;
  color: #fff;
  border: 1px solid rgba(255,255,255,.6);
  padding: 14px 18px;
  border-radius: 12px;
  backdrop-filter: blur(6px);
  transition: all .2s ease;
}
.btn:hover{
  background: rgba(255,255,255,.12);
}
.btn-primary{
  background: #b6a46b;
  color: #0c1e14;
  border-color: #b6a46b;
  font-weight: 600;
}
.btn-primary:hover{
  filter: brightness(1.05);
}
