/* ============== Reset / base ============== */
html { scroll-behavior: smooth; }
body { -webkit-font-smoothing: antialiased; }

/* On mobile: leave room for sticky bottom CTA so it never overlaps footer */
@media (max-width: 768px) {
  body { padding-bottom: 60px; }
}

/* ============== Hero title shadow for readability over photo ============== */
.hero-title {
  text-shadow: 0 2px 30px rgba(10, 9, 8, 0.85), 0 0 80px rgba(10, 9, 8, 0.5);
}

/* ============== Animations ============== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in-up {
  animation: fadeInUp 1s ease-out forwards;
  opacity: 0;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============== Gallery items ============== */
.gallery-item {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  background: #141210;
}
.gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.6s ease, filter 0.4s ease;
}
.gallery-item:hover img {
  transform: scale(1.04);
}

/* Locked teaser */
.gallery-item.locked img {
  filter: blur(18px) brightness(0.7);
  transform: scale(1.08); /* avoid blur edge */
}
.gallery-item.locked:hover img {
  filter: blur(14px) brightness(0.8);
}
.locked-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #c9a96e;
  background: rgba(10, 9, 8, 0.35);
  text-align: center;
  padding: 1rem;
  pointer-events: none;
}

/* ============== Social cards ============== */
.social-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 1.75rem;
  background: rgba(20, 18, 16, 0.5);
  border: 1px solid rgba(201, 169, 110, 0.15);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}
.social-card:hover {
  border-color: rgba(201, 169, 110, 0.5);
  background: rgba(20, 18, 16, 0.8);
  transform: translateY(-2px);
}
.social-card.primary {
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.08), rgba(94, 22, 32, 0.05));
  border-color: rgba(201, 169, 110, 0.4);
}
.social-card.primary:hover {
  border-color: rgba(201, 169, 110, 0.9);
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.15), rgba(94, 22, 32, 0.1));
}
.social-card-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.social-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 233, 212, 0.05);
  border: 1px solid rgba(245, 233, 212, 0.1);
  color: #f5e9d4;
  flex-shrink: 0;
}

/* Fanvue wordmark is white — invert it when placed on the gold icon tile */
.fanvue-logo-dark {
  filter: invert(1) brightness(0.15);
}
.social-card-arrow {
  color: rgba(245, 233, 212, 0.3);
  font-size: 1.5rem;
  transition: transform 0.3s ease, color 0.3s ease;
}
.social-card:hover .social-card-arrow {
  color: #c9a96e;
  transform: translateX(4px);
}

/* ============== Lightbox ============== */
#lightbox.is-open {
  display: flex !important;
}

/* Selection color */
::selection {
  background: #c9a96e;
  color: #0a0908;
}

/* Scrollbar (subtle) */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #0a0908; }
::-webkit-scrollbar-thumb { background: #2a2520; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #c9a96e; }
