/*
Theme Name:   Japan Otaku Guide
Theme URI:    https://japanotakuguide.com
Description:  Child theme of GeneratePress for Japan Otaku Guide.
Author:       Japan Otaku Guide
Template:     generatepress
Version:      1.0.0
Text Domain:  japan-otaku-guide
*/

/* ==========================================================
   DESIGN TOKENS
   ========================================================== */
:root {
  --joG-ink:        #0D0B1E; /* near-black, cyberpunk night base */
  --joG-ink-soft:    #1A1633;
  --joG-paper:       #F7F5FB; /* cool off-white, keeps long-form text readable against neon */
  --joG-paper-dim:    #EDE8F5;
  --joG-purple:      #B14EFF; /* primary accent — links, buttons */
  --joG-cyan:        #00E5FF; /* secondary accent — hover states, tags */
  --joG-pink:        #FF2E93; /* tertiary accent — small highlights only */
  --joG-line:        #ddd6ea;

  --joG-font-display: 'Zen Kaku Gothic New', 'Hiragino Sans', 'Noto Sans JP', sans-serif;
  --joG-font-body:    'Source Serif 4', Georgia, serif;

  --joG-max-width: 760px;
}

body {
  background: var(--joG-paper);
  color: var(--joG-ink);
  font-family: var(--joG-font-body);
  font-size: 1.125rem;
  line-height: 1.7;
}

h1, h2, h3, h4,
.site-title, .main-navigation a {
  font-family: var(--joG-font-display);
  letter-spacing: 0.01em;
}

/* Body copy: keep line length readable for long-form travel guides */
.entry-content p,
.entry-content li {
  max-width: var(--joG-max-width);
}

a {
  color: var(--joG-ink);
  text-decoration-color: var(--joG-purple);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
a:hover {
  color: var(--joG-purple);
  text-decoration-color: var(--joG-cyan);
}

/* ==========================================================
   HEADER
   ========================================================== */
#site-navigation,
.site-header {
  background: var(--joG-ink);
  border-bottom: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--joG-purple), var(--joG-cyan), var(--joG-pink)) 1;
}

.site-header .site-title a,
.site-header .site-description {
  color: var(--joG-paper);
}

.site-logo img {
  max-height: 44px;
  width: auto;
}

.main-navigation a {
  color: var(--joG-paper) !important;
  font-weight: 600;
  font-size: 0.95rem;
}

.main-navigation a:hover {
  color: var(--joG-cyan) !important;
}

/* ==========================================================
   HERO (used on homepage / article intros)
   ========================================================== */
.joG-hero {
  position: relative;
  padding: 4rem 1.5rem;
  background: var(--joG-ink);
  color: var(--joG-paper);
  overflow: hidden;
}

.joG-hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  max-width: 14ch;
  color: var(--joG-paper);
  margin-bottom: 0.75rem;
  text-shadow: 0 0 18px rgba(177, 78, 255, 0.35);
}

.joG-hero p {
  max-width: 55ch;
  font-family: var(--joG-font-body);
  color: var(--joG-paper-dim, #e7e4da);
}

/* Dotted "route line" motif — reused across hero and section dividers
   to tie back to the walking-route concept of the flagship article. */
.joG-route-line {
  display: block;
  height: 2px;
  width: 100%;
  margin: 2.5rem 0;
  background-image:
    radial-gradient(circle, var(--joG-purple) 2px, transparent 2px),
    radial-gradient(circle, var(--joG-cyan) 2px, transparent 2px);
  background-size: 28px 2px, 28px 2px;
  background-position: 0 0, 14px 0;
  background-repeat: repeat-x;
  opacity: 0.85;
}

/* ==========================================================
   BUTTONS / CTAS (booking, affiliate links)
   ========================================================== */
.joG-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--joG-purple);
  color: var(--joG-ink);
  font-family: var(--joG-font-display);
  font-weight: 700;
  border-radius: 2px;
  text-decoration: none;
}
.joG-button:hover {
  background: var(--joG-ink);
  color: var(--joG-cyan);
  box-shadow: 0 0 0 1px var(--joG-cyan);
}

/* ==========================================================
   PRACTICAL-INFO CALLOUT BOX
   (prices, hours, addresses — the first-person, verified facts
   that are this site's actual moat)
   ========================================================== */
.joG-fact-box {
  border: 1px solid var(--joG-line);
  border-left: 4px solid var(--joG-cyan);
  background: #fff;
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
  font-family: var(--joG-font-body);
}
.joG-fact-box h4 {
  margin-top: 0;
  font-size: 1rem;
  text-transform: none;
}

@media (max-width: 600px) {
  .joG-hero { padding: 2.5rem 1.25rem; }
}
