/*
Theme Name: Ink & Gold Studio
Theme URI:
Description: Premium tattoo studio theme. Obsidian & Gold design system.
Version: 1.0.0
Author:
Text Domain: ink-gold-studio
Domain Path: /languages
*/

:root {
  --bg: #121414;
  --surface: #121414;
  --surface-lowest: #0d0f0f;
  --surface-low: #1a1c1c;
  --surface-mid: #1e2020;
  --surface-high: #282a2b;
  --surface-highest: #333535;
  --surface-bright: #38393a;
  --on-surface: #e2e2e2;
  --on-surface-variant: #d0c5af;
  --outline: #99907c;
  --outline-variant: #4d4635;
  --primary: #f2ca50;
  --on-primary: #3c2f00;
  --primary-container: #d4af37;
  --secondary: #c8c6c5;

  --font-headline: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;

  --container-max: 1280px;
  --gutter: 20px;
  --section-padding: 64px;
  --stack-sm: 6px;
  --stack-md: 10px;
  --stack-lg: 20px;
}

* {
  box-sizing: border-box;
}

html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
address,
cite,
code,
del,
dfn,
em,
ins,
kbd,
q,
s,
samp,
strong,
sub,
sup,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
main,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

html,
body {
  width: 100%;
  height: 100%;
}

body {
  background: var(--bg);
  color: var(--on-surface);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: 0.01em;
}

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-container);
}

::selection {
  background: var(--primary);
  color: var(--on-primary);
}

::-moz-selection {
  background: var(--primary);
  color: var(--on-primary);
}

/* Scroll bar */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--surface-low);
}

::-webkit-scrollbar-thumb {
  background: var(--outline);
  border-radius: 0;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--on-surface-variant);
}

/* Utility classes */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
