/*
Theme Name: Glowra
Theme URI: https://glowra.com.au/
Author: Glowra
Author URI: https://glowra.com.au/
Description: Sydney-focused beauty salon directory. Custom WordPress theme (no page builder). Service = Salon throughout. Brand pink #E94B86. Fraunces + Plus Jakarta Sans.
Version: 2.9.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: saloon-service
Tags: directory, business-directory, custom-colors, custom-menu, featured-images, translation-ready
*/

/*
  Base reset + brand tokens.
  Most visual styling lives in assets/css/custom.css (luxury/editorial layer).
  This file only carries the theme header + a minimal safety net so the theme
  renders if custom.css fails to load.
*/

:root {
  --gw-pink: #E94B86;
  --gw-blush: #FDECF1;
  --gw-cream: #FAF7F5;
  --gw-dark: #111;
  --gw-font-display: "Fraunces", Georgia, serif;
  --gw-font-body: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--gw-font-body);
  color: var(--gw-dark);
  background: #fff;
  line-height: 1.55;
}

h1, h2, h3, h4 { font-family: var(--gw-font-display); font-weight: 600; line-height: 1.15; }

a { color: var(--gw-pink); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; height: auto; }

.gw-container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }

.screen-reader-text {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px; height: 1px; overflow: hidden;
}

.gw-btn {
  display: inline-block;
  background: var(--gw-pink);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 0;
  cursor: pointer;
}
.gw-btn:hover { text-decoration: none; filter: brightness(.95); }
.gw-btn--ghost { background: transparent; color: var(--gw-pink); border: 1.5px solid var(--gw-pink); }
