/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #050505;
  font-family: 'Inter', sans-serif;
  transition: opacity 0.4s ease;
}

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

/* IMAGE */
.hero-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  z-index: 0;
}

/* === NATURAL GRADIENT (MAIN FIX) === */
.overlay {
  position: absolute;
  inset: 0;
  z-index: 1;

  background:
    linear-gradient(
      to bottom,
      rgba(122, 30, 30, 0.85) 0%,     /* soft red top */
      rgba(122, 30, 30, 0.6) 20%,
      rgba(122, 30, 30, 0.35) 40%,
      rgba(122, 30, 30, 0.15) 55%,    /* fade into transparency */
      rgba(0, 0, 0, 0.4) 70%,         /* gentle dark blend */
      rgba(0, 0, 0, 0.85) 85%,
      #000 100%                       /* bottom darkness */
    );
}

/* CONTENT */
.content {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
  color: white;
}

/* TITLE */
.content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(44px, 6vw, 72px);
  color: #B8965A;
  letter-spacing: 3px;
  font-weight: 500;
}

/* SUBTITLE */
.content p {
  margin-top: 12px;
  font-size: clamp(12px, 1.4vw, 16px);
  letter-spacing: 2.5px;
  color: rgba(255, 255, 255, 0.9);
}

/* CTA BUTTON */
.cta {
  margin-top: 28px;
  padding: 12px 30px;

  background: transparent;
  border: 1px solid rgba(184, 150, 90, 0.6);
  color: #B8965A;

  border-radius: 30px;
  font-size: 13px;
  letter-spacing: 1px;
  cursor: pointer;

  transition: transform 0.2s ease;
}

.cta:hover {
  background: rgba(184, 150, 90, 0.08);
  background: rgba(184, 150, 90, 0.08);
}

/* ARCHIVE BUTTON */
.archive-btn {
  display: inline-block; /* IMPORTANT for <a> */
  text-decoration: none; /* remove underline */

  position: absolute;
  top: 30px;
  right: 40px;
  z-index: 3;

  background: #050505;
  color: #B8965A;
  border: none;

  padding: 8px 14px;
  font-size: 11px;
  letter-spacing: 1.5px;

  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .content {
    top: 22%;
    width: 90%;
  }

  .content p {
    letter-spacing: 1.5px;
  }

  .archive-btn {
    top: 20px;
    right: 20px;
  }
}

/* BLUR LOCK */
body.locked {
  overflow: hidden;
}

body.locked .hero {
  filter: blur(12px);
  pointer-events: none;
  user-select: none;
}

/* AGE GATE OVERLAY */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 999;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(5, 5, 5, 0.6);
  backdrop-filter: blur(10px);
}

/* BOX */
.age-box {
  text-align: center;
  color: white;

  padding: 40px 30px;
  border: 1px solid rgba(184, 150, 90, 0.4);
  border-radius: 10px;

  background: rgba(0, 0, 0, 0.4);
}

/* TITLE */
.age-box h2 {
  font-size: 40px;
  font-family: 'Playfair Display', serif;
  color: #B8965A;
}

/* TEXT */
.age-box p {
  margin-top: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}

/* BUTTON */
.age-box button {
  margin-top: 20px;
  padding: 10px 24px;

  background: transparent;
  border: 1px solid #B8965A;
  color: #B8965A;

  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s;
}

.age-box button:hover {
  background: rgba(184,150,90,0.1);
}