/*
Theme Name: Print Ranch
Theme URI: https://print-ranch.com
Author: Print Ranch
Author URI: https://print-ranch.com
Description: Custom theme for Print Ranch — 3D printed gadgets, toys & gear from North Texas.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: printranch
Tags: woocommerce, ecommerce, custom
*/

/* ── CSS Variables ── */
:root {
  --black:   #1C1C1C;
  --gold:    #EF9F27;
  --gold-dk: #BA7517;
  --teal:    #5DCAA5;
  --cream:   #F5F0E8;
  --mid:     #2a2a2a;
  --muted:   #888780;
  --border:  rgba(239,159,39,0.15);
  --radius:  6px;
  --font-display: 'Oswald', 'Impact', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --font-mono:    'DM Mono', monospace;
  --transition:   all 0.2s ease;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--teal); }

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: var(--cream);
}

/* ── Utility ── */
.container  { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.sr-only    { position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0,0,0,0); }
.gold       { color: var(--gold); }
.teal       { color: var(--teal); }
.text-center{ text-align: center; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid var(--gold);
  background: var(--gold);
  color: var(--black);
  cursor: pointer;
  transition: var(--transition);
}
.btn:hover { background: transparent; color: var(--gold); }
.btn-outline {
  background: transparent;
  color: var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--black); }
.btn-teal {
  border-color: var(--teal);
  background: var(--teal);
  color: var(--black);
}
.btn-teal:hover { background: transparent; color: var(--teal); }

/* ── Section spacing ── */
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  display: block;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(32px, 5vw, 56px);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
}

/* ── Layer line divider ── */
.layer-divider {
  width: 100%;
  height: 12px;
  position: relative;
  overflow: hidden;
  margin: 0;
}
.layer-divider::before,
.layer-divider::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  opacity: 0.25;
}
.layer-divider::before { top: 2px; }
.layer-divider::after  { top: 7px; opacity: 0.12; }

/* ── Tag / badge ── */
.tag {
  display: inline-block;
  padding: 3px 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 3px;
  background: rgba(239,159,39,0.12);
  color: var(--gold);
  border: 1px solid rgba(239,159,39,0.25);
}
.tag-teal {
  background: rgba(93,202,165,0.1);
  color: var(--teal);
  border-color: rgba(93,202,165,0.25);
}
