:root {
  --bg: #071013;
  --brand: #d70913;
  --text: #ededed;
  --muted: #8b949e;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Ubuntu", sans-serif;
}
body {
  background: var(--bg);
  color: var(--text);
}

/* HIDE CONTENT INITIALLY */
.hidden {
  display: none !important;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(7, 16, 19, 0.9);
  backdrop-filter: blur(6px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  z-index: 1000;
}
.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

/* Home link */
.home {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  opacity: 0.9;
}

.home:hover {
  opacity: 1;
}

.logo {
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.logo:hover {
  opacity: 0.8;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.buy-btn {
  background: var(--brand);
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
  display: inline-block;
  border: 2px solid var(--brand);
}
.buy-btn:hover {
  background: white;
  color: var(--brand);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(215, 9, 19, 0.4);
}

/* HERO */
.hero {
  position: relative;
  height: 60vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: rgba(7, 16, 19, 0.6); /* keeps text readable */
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-text {
  color: var(--text);
  font-size: 2rem;
  text-align: center;
}

/* CONTENT */
.content {
  max-width: 680px;
  margin: auto;
  padding: 60px 20px;
}

.line {
  margin-bottom: 28px;
  font-size: 1.2rem;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  transition: all 0.6s ease;
}
.line.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.emphasis {
  color: var(--brand);
  font-weight: 500;
}
.soft {
  font-size: 1.2rem;
}

/* MASONRY IMAGES */
.masonry-wrapper {
  overflow-x: auto; /* scroll horizontally */
  padding-bottom: 16px; /* optional spacing */
  margin: 40px 0;
}

.masonry-wrapper::-webkit-scrollbar {
  display: none; /* hide scrollbar */
}

.masonry-images {
  display: flex;
  gap: 12px;
}

.masonry-images img {
  width: 150px;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0; /* prevent images from shrinking */
}

/* VOWS */
.vow p {
  margin-bottom: 20px;
  font-size: 1.15rem;
}

/* SIGNATURE */
.signature {
  text-align: right;
  margin-top: 60px;
}
.signature p {
  color: var(--muted);
  font-weight: lighter;
  font-size: smaller;
  margin-top: 4px;
}

/* FOOTER */
.seal {
  margin-top: 80px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
}

/* STICKY BUY */
.sticky-buy {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand);
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
  z-index: 1000;
}
.sticky-buy.show {
  opacity: 1;
  pointer-events: auto;
}

/* PASSWORD GATE */
.password-gate {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  z-index: 10000;
}
.password-gate input {
  padding: 12px 16px;
  background: transparent;
  border: 1px solid var(--brand);
  color: white;
  border-radius: 8px;
}
.password-gate button {
  padding: 12px 28px;
  background: var(--brand);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}
.hint-text {
  font-size: 0.9rem;
  color: var(--muted);
  opacity: 0.7;
  margin-bottom: 8px;
  text-align: center;
  max-width: 300px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
}
