/*
Theme Name: HHH Cars
Theme URI:
Author: AugustJD
Author URI:
Description: Custom theme for HHH Car Rental — Hokkaido Hobby Homes brand, glassy editorial style.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Private
Text Domain: hhh-cars
*/

/* ─── CSS Variables ─────────────────────────────────────────── */
:root {
  --bg:          #0A0A0A;
  --bg-2:        #121212;
  --bg-3:        #1A1A1A;
  --fg:          #FAFAF7;
  --fg-dim:      #A8A8A3;
  --fg-faint:    #55554F;
  --amber:       #F0A500;
  --amber-soft:  rgba(240, 165, 0, 0.15);
  --line:        rgba(250, 250, 247, 0.12);
  --line-strong: rgba(250, 250, 247, 0.22);
  --glass:       rgba(16, 16, 16, 0.55);
  --glass-hi:    rgba(255, 255, 255, 0.04);

  --serif: 'Instrument Serif', 'Noto Sans JP', Georgia, serif;
  --sans:  'Inter Tight', 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
  --jp:    'Noto Sans JP', serif;
  --mono:  ui-monospace, 'SF Mono', Menlo, 'Noto Sans JP', monospace;
}

/* ─── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }

/* Visually hidden but readable by search engines */
.seo-h1 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--fg-faint); border-radius: 2px; }
