/*
Theme Name: GotPiqle
Theme URI: https://gotpiqle.com.au
Author: GotPiqle Team
Author URI: https://gotpiqle.com.au
Description: Official GotPiqle restaurant theme – dark, bold, full-screen landing page with GSAP animations, green ambient glow, Gotham font, and a full Website Edit admin panel.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Proprietary
Text Domain: gotpiqle
*/

/* ─── CSS Reset & Base ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --color-bg:        #0A0A0A;
  --color-text:      #F5F5F0;
  --color-green:     #61BD72;
  --color-dark-menu: #221f20;
  --color-black:     #000000;
  --color-white:     #ffffff;

  --font-gotham: 'Gotham', system-ui, -apple-system, sans-serif;
}

html, body {
  height: 100%;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-gotham);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection { background: var(--color-green); color: #000; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
