-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbrand.css
More file actions
76 lines (68 loc) · 1.94 KB
/
Copy pathbrand.css
File metadata and controls
76 lines (68 loc) · 1.94 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
/* Bossman Gentleman's Club Barbershop — shared brand system */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=Jost:wght@400;500;600&display=swap');
:root {
--forest: #0a1f14;
--pine: #0e2818;
--moss: #143421;
--fern: #1f4a31;
--cream: #e9ddc1;
--cream-dim: #a89f86;
--gold: #c9a76a;
--gold-bright: #dcc187;
--olive: #7e7e38;
--line: rgba(233, 221, 193, 0.14);
--shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
--serif: 'Playfair Display', Georgia, serif;
--sans: 'Jost', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
font-family: var(--sans);
background: var(--forest);
color: var(--cream);
min-height: 100vh;
-webkit-font-smoothing: antialiased;
}
/* Brand wordmark block */
.brand { text-align: center; }
.brand .logo { width: 120px; height: auto; margin: 0 auto 0.75rem; display: block; }
.brand .wordmark {
font-family: var(--serif);
font-weight: 800;
letter-spacing: 0.18em;
color: var(--cream);
text-transform: uppercase;
line-height: 1;
}
.brand .tagline {
font-family: var(--sans);
font-weight: 500;
letter-spacing: 0.28em;
text-transform: uppercase;
color: var(--gold);
margin-top: 0.5rem;
}
.brand .sub {
color: var(--cream-dim);
letter-spacing: 0.05em;
margin-top: 0.4rem;
}
/* Shared button */
.btn-gold {
background: var(--gold);
color: var(--pine);
border: none;
border-radius: 0.6rem;
font-weight: 600;
font-family: var(--sans);
cursor: pointer;
transition: background 0.15s, transform 0.05s;
letter-spacing: 0.02em;
}
.btn-gold:hover { background: var(--gold-bright); }
.btn-gold:active { transform: translateY(1px); }
.btn-gold:disabled { opacity: 0.5; cursor: default; }
.hidden { display: none !important; }
/* Scrollbar polish */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-thumb { background: var(--fern); border-radius: 4px; }