body {
  margin: 0;
  font-family: Arial, sans-serif;
  height: 100vh;
  background: url("/images/welcome2.png") center/cover no-repeat fixed;
}

/* Top left button */
.topbar {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 10;
}

.menuBtn {
  border: none;
  border-radius: 14px;
  padding: 12px 16px;
  font-weight: 700;
  cursor: pointer;
  background: rgba(255,255,255,0.85);
}

/* Dropdown menu */
.menu {
  position: absolute;
  top: 70px;
  left: 18px;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(8px);
  padding: 14px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 10;
  min-width: 160px;
}

.menu a {
  color: white;
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 12px;
}

.menu a:hover {
  background: rgba(255,255,255,0.12);
}

.hidden { display: none; }

/* Center box */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.heroBox {
  background: rgba(255,255,255,0.88);
  padding: 32px 36px;
  border-radius: 22px;
  text-align: center;
  max-width: 420px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

.heroBox h1 {
  margin: 0;
  letter-spacing: 3px;
  font-size: 44px;
}

.heroBox p {
  margin: 10px 0 18px;
  font-size: 16px;
  opacity: 0.8;
}

.shopBtn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 999px;
  background: black;
  color: white;
  text-decoration: none;
  font-weight: 800;
}
