body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #2b1b12;
  color: #f5e6d3;
  overflow-x: hidden;
}

/* ===== WATERMARK LOGO BACKGROUND ===== */
body::before {
  content: "";
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 650px;
  height: 650px;
  background: url("images/logo.png") no-repeat center;
  background-size: contain;
  opacity: 0.06;
  z-index: 0;
  pointer-events: none;
}

/* ===== TOP LEFT AREA (NO BAR) ===== */
.navbar {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
}

/* LOGO */
.logo {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 50%;
}

/* ===== CENTER CONTENT ===== */
.content {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 58px;
  margin: 0;
  letter-spacing: 1px;
}

.hero p {
  font-size: 18px;
  color: #d2a679;
  margin-top: 10px;
}

/* BUTTON */
.btn {
  margin-top: 20px;
  padding: 12px 24px;
  background: #d2a679;
  border: none;
  color: #2b1b12;
  font-size: 16px;
  cursor: pointer;
  border-radius: 6px;
  transition: 0.2s;
}

.btn:hover {
  background: #e0b98a;
}
