/* Bethany Cameron Author Site */
/* Cute-goth / 80s horror / neon VHS styling */
:root {
  --bg: #050612;
  --bg-deep: #02030a;
  --panel: rgba(5, 8, 20, 0.9);
  --cyan: #19f3ff;
  --cyan-soft: #66f7ff;
  --pink: #ff3bd7;
  --pink-soft: #ff8dea;
  --violet: #5a35ff;
  --blue: #1976ff;
  --cream: #f5e7c7;
  --white: #f7f2ff;
  --muted: #b7bdd4;
  --font-display: "UnifrakturCook", "Cinzel Decorative", "Georgia", serif;
  --font-horror: "Creepster", "UnifrakturCook", "Georgia", serif;
  --font-body: "Special Elite", "Courier New", monospace;
  --font-ui: "Cinzel", "Georgia", serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top, rgba(37, 18, 76, 0.45), transparent 38%),
    radial-gradient(circle at 80% 30%, rgba(255, 59, 215, 0.12), transparent 30%),
    linear-gradient(180deg, #03040c 0%, #050612 42%, #02030a 100%);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
}
/* VHS / static texture overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.13;
  background:
    repeating-linear-gradient(
      0deg,
      rgba(255,255,255,0.05) 0px,
      rgba(255,255,255,0.05) 1px,
      transparent 1px,
      transparent 4px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(255, 59, 215, 0.035) 0px,
      rgba(255, 59, 215, 0.035) 1px,
      transparent 1px,
      transparent 12px
    );
  mix-blend-mode: screen;
}
/* subtle vignette */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 998;
  background: radial-gradient(circle, transparent 45%, rgba(0,0,0,0.72) 100%);
}
.site-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 38px 0 80px;
}
.neon-rule {
  height: 8px;
  margin: 0 0 54px;
  border-top: 2px solid var(--violet);
  border-bottom: 1px solid var(--cyan);
  box-shadow:
    0 0 10px var(--violet),
    0 0 18px rgba(25, 243, 255, 0.55);
}
/* HERO */
.hero {
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 58px;
  align-items: center;
  margin-bottom: 70px;
}
.author-frame-wrap {
  display: flex;
  justify-content: center;
}
.author-frame {
  position: relative;
  width: 280px;
  height: 360px;
  display: grid;
  place-items: center;
}
.author-photo {
  width: 225px;
  height: 285px;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  filter: contrast(1.08) saturate(0.88);
  box-shadow:
    0 0 0 4px #050612,
    0 0 0 7px var(--cyan),
    0 0 26px rgba(25, 243, 255, 0.9);
}
/* CSS cameo frame instead of PNG */
.author-frame::before {
  content: "";
  position: absolute;
  width: 265px;
  height: 335px;
  border-radius: 50%;
  border: 4px solid var(--pink);
  box-shadow:
    0 0 8px var(--pink),
    0 0 22px rgba(255, 59, 215, 0.9),
    inset 0 0 18px rgba(255, 59, 215, 0.5);
}
.author-frame::after {
  content: "";
  position: absolute;
  width: 292px;
  height: 362px;
  border-radius: 50%;
  border: 2px dotted var(--pink-soft);
  box-shadow:
    0 0 14px rgba(255, 59, 215, 0.95),
    0 0 35px rgba(255, 59, 215, 0.45);
}
/* HERO COPY FRAME */
.hero-copy {
  position: relative;
  padding: 28px 34px 34px;
}
.hero-copy::before,
.hero-copy::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    #5036ff,
    #25f6ff,
    #ff37d6,
    transparent
  );
  box-shadow:
    0 0 10px #25f6ff,
    0 0 22px rgba(255, 55, 214, 0.65);
}
.hero-copy::before { top: 0; }
.hero-copy::after  { bottom: 0; }

/* HERO TITLE — ornate gothic serif with pink stroke echo + ornaments */
.hero-title {
  position: relative;
  display: inline-block;
  margin: 0 0 18px;
  font-family: "Pirata One", "Cinzel Decorative", "UnifrakturCook", Georgia, serif;
  font-weight: 400;
  font-size: clamp(4.6rem, 10vw, 9.5rem);
  line-height: 0.86;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #25f6ff;
  text-shadow:
    0 0 3px #ffffff,
    0 0 12px rgba(37, 246, 255, 0.95),
    0 0 28px rgba(37, 246, 255, 0.75),
    0 0 60px rgba(255, 45, 214, 0.55),
    8px 8px 0 rgba(255, 45, 214, 0.7),
    14px 14px 0 rgba(20, 9, 50, 0.95);
  filter: drop-shadow(0 0 22px rgba(37, 246, 255, 0.5));
}
.hero-title::before {
  content: "Bethany Cameron";
  position: absolute;
  inset: 0;
  z-index: -1;
  color: transparent;
  -webkit-text-stroke: 2px #ff37d6;
  text-stroke: 2px #ff37d6;
  transform: translate(8px, 8px);
  opacity: 0.85;
  filter: blur(0.4px);
}
.hero-title::after {
  content: "✦ ✧ ✦ ✧ ✦";
  display: block;
  margin-top: 18px;
  font-family: "Cinzel Decorative", Georgia, serif;
  font-size: clamp(0.9rem, 1.8vw, 1.5rem);
  letter-spacing: 0.7em;
  text-align: center;
  color: #ff54dd;
  text-shadow:
    0 0 10px rgba(255, 84, 221, 0.95),
    0 0 22px rgba(37, 246, 255, 0.45);
}
.hero-title .line {
  display: block;
}
.hero-ornament {
  margin: 10px 0 20px;
  text-align: center;
  font-family: "Cinzel Decorative", serif;
  color: #ff54dd;
  letter-spacing: 0.5em;
  text-shadow: 0 0 12px rgba(255, 84, 221, 0.9);
}
.hero-kicker {
  margin: 0 0 18px;
  font-family: var(--font-ui);
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink-soft);
  text-shadow:
    0 0 10px rgba(255, 59, 215, 0.85),
    0 0 22px rgba(255, 59, 215, 0.4);
  text-align: left;
}
.hero-blurb {
  margin: 0 0 22px;
  max-width: 560px;
  font-family: var(--font-body);
  font-size: clamp(1.02rem, 1.7vw, 1.18rem);
  line-height: 1.55;
  color: #f3f3ff;
  text-shadow: 0 0 5px rgba(255,255,255,0.18);
}
.nav-sep {
  font-family: "Cinzel Decorative", serif;
  color: var(--pink);
  font-size: 0.95rem;
  text-shadow: 0 0 8px rgba(255, 59, 215, 0.85);
}
.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 4px;
}
.nav-links a {
  font-family: var(--font-ui);
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
  font-size: 1.02rem;
  text-shadow: 0 0 10px rgba(25, 243, 255, 0.85);
}
.nav-links a:hover {
  color: var(--pink-soft);
  text-shadow: 0 0 12px rgba(255, 59, 215, 0.9);
}
/* SECTIONS */
.section {
  margin: 70px 0;
}
.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin: 0 0 34px;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  color: var(--cyan);
  text-align: center;
  text-shadow:
    0 0 10px rgba(25, 243, 255, 0.95),
    0 0 24px rgba(25, 243, 255, 0.5);
}
.section-title::before,
.section-title::after {
  content: "";
  flex: 1;
  height: 7px;
  border-top: 2px solid var(--violet);
  border-bottom: 1px solid var(--cyan);
  box-shadow:
    0 0 10px rgba(90, 53, 255, 0.95),
    0 0 15px rgba(25, 243, 255, 0.6);
}
.title-skull {
  font-family: "Cinzel Decorative", serif;
  font-size: 0.55em;
  color: var(--pink);
  text-shadow:
    0 0 12px rgba(255, 59, 215, 0.95),
    0 0 24px rgba(255, 59, 215, 0.5);
  vertical-align: middle;
  position: relative;
  top: -0.08em;
}
.title-text {
  display: inline-block;
  padding: 0 6px;
}
/* BIO FRAME — pink-bordered box with corner ornaments */
.bio-frame {
  position: relative;
  max-width: 1020px;
  margin: 0 auto;
  padding: 38px 44px;
  border: 2px solid rgba(255, 59, 215, 0.85);
  background: rgba(8, 8, 22, 0.45);
  box-shadow:
    0 0 22px rgba(255, 59, 215, 0.55),
    0 0 60px rgba(255, 59, 215, 0.15),
    inset 0 0 28px rgba(255, 59, 215, 0.12);
}
.bio-frame::before,
.bio-frame::after {
  content: "✦";
  position: absolute;
  font-family: "Cinzel Decorative", serif;
  font-size: 1.6rem;
  color: #ff54dd;
  background: var(--bg-deep);
  padding: 0 8px;
  text-shadow:
    0 0 12px rgba(255, 84, 221, 0.95),
    0 0 22px rgba(37, 246, 255, 0.45);
}
.bio-frame::before {
  top: -16px;
  left: 22px;
}
.bio-frame::after {
  bottom: -16px;
  right: 22px;
}
.bio-text {
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  line-height: 1.6;
  color: #edf0ff;
  margin: 0;
  text-align: center;
}
/* BOOKS */
.books-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px;
}
.book-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.book-label {
  margin: 0 0 12px;
  font-family: var(--font-ui);
  color: var(--pink);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 1.05rem;
  text-shadow: 0 0 12px rgba(255, 59, 215, 0.85);
}
.book-card:nth-child(2) .book-label {
  color: var(--cyan);
  text-shadow: 0 0 12px rgba(25, 243, 255, 0.85);
}
.book-cover-link {
  display: block;
  border: 2px solid var(--pink);
  border-radius: 4px;
  overflow: hidden;
  box-shadow:
    0 0 12px rgba(255, 59, 215, 0.8),
    0 0 28px rgba(25, 243, 255, 0.15);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.book-card:nth-child(2) .book-cover-link {
  border-color: var(--cyan);
  box-shadow:
    0 0 12px rgba(25, 243, 255, 0.75),
    0 0 28px rgba(255, 59, 215, 0.12);
}
.book-cover-link:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow:
    0 0 16px rgba(255, 59, 215, 1),
    0 0 36px rgba(25, 243, 255, 0.35);
}
.book-cover {
  width: 100%;
  display: block;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}
.book-description {
  margin: 20px 0 18px;
  color: #d8dcef;
  font-size: 1.02rem;
  line-height: 1.45;
}
.book-actions {
  display: grid;
  gap: 12px;
  margin-top: auto;
}
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 10px 18px;
  border: 2px solid var(--cyan);
  color: var(--cyan);
  background: rgba(0, 0, 0, 0.25);
  font-family: var(--font-ui);
  font-size: 1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow:
    0 0 10px rgba(25, 243, 255, 0.55),
    inset 0 0 10px rgba(25, 243, 255, 0.08);
  transition: all 160ms ease;
}
.btn:hover {
  color: #02030a;
  background: var(--cyan);
  box-shadow:
    0 0 16px rgba(25, 243, 255, 1),
    0 0 35px rgba(25, 243, 255, 0.45);
}
.btn.secondary {
  border-color: var(--pink);
  color: var(--pink-soft);
  box-shadow:
    0 0 10px rgba(255, 59, 215, 0.55),
    inset 0 0 10px rgba(255, 59, 215, 0.08);
}
.btn.secondary:hover {
  color: #02030a;
  background: var(--pink-soft);
}
/* VIDEOS */
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
}
.video-card {
  border: 2px solid rgba(25, 243, 255, 0.8);
  padding: 16px;
  background: rgba(0,0,0,0.32);
  box-shadow: 0 0 22px rgba(25, 243, 255, 0.22);
}
.video-frame {
  aspect-ratio: 16 / 9;
  border: 1px solid var(--pink);
  background:
    linear-gradient(135deg, rgba(255,59,215,0.18), transparent),
    #080812;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.video-card h3 {
  font-family: var(--font-ui);
  color: var(--pink-soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 16px 0 8px;
}
.video-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}
/* FOOTER */
.site-footer {
  margin-top: 90px;
  padding-top: 26px;
  border-top: 2px solid var(--violet);
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}
.social-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.social-links a {
  color: var(--cyan);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
/* RESPONSIVE */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }
  .hero-copy p {
    margin-left: auto;
    margin-right: auto;
  }
  .nav-links {
    justify-content: center;
  }
  .books-grid {
    grid-template-columns: 1fr;
    max-width: 430px;
    margin: 0 auto;
  }
  .video-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 560px) {
  .site-shell {
    width: min(100% - 22px, 1120px);
    padding-top: 24px;
  }
  .author-frame {
    width: 230px;
    height: 300px;
  }
  .author-photo {
    width: 185px;
    height: 235px;
  }
  .author-frame::before {
    width: 218px;
    height: 280px;
  }
  .author-frame::after {
    width: 240px;
    height: 302px;
  }
  .section-title {
    gap: 14px;
  }
  .hero-title {
    font-size: 3.6rem;
    letter-spacing: 0.035em;
  }
  .hero-title::before {
    transform: translate(3px, 3px);
  }
  .hero-copy {
    padding: 22px 18px 26px;
  }
  .hero-copy p,
  .bio-text {
    font-size: 1rem;
  }
  .btn {
    min-height: 44px;
    font-size: 0.9rem;
  }
}
