﻿/* ============================================
   PORTFOLIO HERO â€” GAME CHARACTER INTRO
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,600&family=Caveat:wght@400;500;600;700&family=Outfit:wght@100;200;300;400;500;600;700;800;900&family=Space+Mono:wght@400;700&family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap');

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

:root {
  --white: #ffffff;
  --off-white: #f8f8f8;
  --gray-50: #fafafa;
  --gray-100: #f0f0f0;
  --gray-200: #e0e0e0;
  --gray-300: #c0c0c0;
  --gray-400: #a0a0a0;
  --gray-500: #808080;
  --gray-600: #606060;
  --gray-700: #404040;
  --gray-800: #2a2a2a;
  --gray-900: #1a1a1a;
  --black: #0a0a0a;

  --accent: #c8102e;
  --accent-soft: rgba(200, 16, 46, 0.08);
  --accent-glow: rgba(200, 16, 46, 0.15);

  --font-display: 'Outfit', sans-serif;
  --font-mono: 'Space Mono', monospace;
  --font-jp: 'Noto Serif JP', serif;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-handwriting: 'Caveat', cursive, sans-serif;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  overflow-y: auto;
}

body {
  background: var(--white);
  color: var(--gray-900);
  font-family: var(--font-display);
  overflow-x: hidden;
  overflow-y: auto;
  min-height: 100vh;
  width: 100vw;
  position: relative;
}

@media (min-width: 1025px) {
  html, body {
    overflow: hidden;
    height: 100vh;
  }
}
