/*
Theme Name:  Masthead Vogue Us
Template:    masthead
Version:     1.0.0
Author:      Muneeb Gawri
Author URI:  https://muneebgawri.com
Text Domain: masthead-vogue-us
Description: Lifestyle and fashion with Vogue minimalism.
License:     GPL-2.0-or-later
*/

/* ── Design tokens ──────────────────────────────────────────────── */
:root {
	/* Brand */
	--mh-color-accent:           #000000;
	--mh-color-link:             #000000;
	--mh-color-link-hover:       #F5F0E8;
	--mh-color-focus:            #000000;
	--mh-color-category-bg:      #000000;
	--mh-color-blockquote-border:#000000;

	/* Header */
	--mh-color-header-bg:        #000000;
	--mh-color-header-text:      #ffffff;
	--mh-header-border-width:    0px;

	/* Footer */
	--mh-color-footer-bg:        #F5F0E8;
	--mh-color-footer-text:      #c1c1c1;

	/* Typography (Google Fonts loaded in functions.php) */
	--mh-font-heading:           'Source Serif Pro', Georgia, 'Times New Roman', serif;
	--mh-font-body:              'Source Sans Pro', Arial, Helvetica, Verdana, sans-serif;
	--mh-font-ui:                'Source Sans Pro', system-ui, sans-serif;
}

/* ── Global ─────────────────────────────────────────────────────── */
body {
	font-family: var(--mh-font-body);
	color: #1c1c1c;
	background: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--mh-font-heading);
	color: #1c1c1c;
	font-weight: 700;
}

a        { color: var(--mh-color-link); }
a:hover  { color: var(--mh-color-link-hover); }
