: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);
}

/* CONTENT */
.hidden {
  display: none;
}

.content {
  max-width: 680px;
  margin: auto;
  padding: 80px 20px;
}

/* OPENING */
.opening .soft {
  font-size: 1.2rem;
  margin-bottom: 16px;
}

/* LETTER */
.letter {
  margin: 80px 0;
}

.line {
  margin-bottom: 28px;
  font-size: 1.2rem;
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.6s ease;
}

.line.show {
  opacity: 1;
  transform: translateY(0);
}

.emphasis {
  color: var(--brand);
}

/* MEMORY */
.memory {
  margin: 100px 0;
}

.memory img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 12px;
}

.caption {
  color: var(--muted);
  font-size: 0.9rem;
}

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

/* SIGNATURE */
.signature {
  text-align: right;
  margin-top: 100px;
}

.signature p {
  opacity: 0.5;
  font-weight: lighter;
  margin-top: 4px;
}

/* SEAL */
.seal {
  margin-top: 120px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
}
/* 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: #ffffff;
  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);
}
  font-size: 1rem;
}

/* 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;
}

.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) {
}

.hidden {
  display: none;
}

/* Make sure password gate covers everything until entered */
.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;
}
.image-strip {
  overflow: hidden;
  width: 100%;
  margin-top: 80px; /* navbar spacing */
}

.image-track {
  display: flex;
  gap: 16px;
  animation: scrollImages 40s linear infinite;
}

.image-track img {
  height: 500px;
  border-radius: 12px;
  flex-shrink: 0;
}

/* Auto-scroll desktop */
@keyframes scrollImages {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Swipe support on mobile */
@media (max-width: 768px) {
  .image-track {
    animation: none;
    overflow-x: auto;
    padding-left: 16px;
  }

  .image-track::-webkit-scrollbar {
    display: none;
  }
}
/* MENU TOGGLE */
#menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

/* MOBILE STYLES */
@media (max-width: 768px) {
}
#navbar {
  padding: 16px 20px;
}

#menu-toggle {
  display: block;
}

#nav-links {
  position: absolute;
  top: 64px;
  left: 0;
  width: 100%;
  background: #000;
  display: none;
  flex-direction: column;
  padding: 20px;
  border-top: 1px solid #111;
}

#nav-links a {
  margin: 12px 0;
  font-size: 16px;
}

#nav-button {
  margin: 16px 0 0 0;
  text-align: center;
}
