/*
Theme Name: Madira
Theme URI: https://madirasocial.com
Author: Lift Growth
Author URI: https://madirasocial.com
Description: Custom theme for Madira Social — navbar and hero with Customizer-driven content.
Version: 1.0.8
Requires at least: 6.0
Tested up to: 6.7
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: madira
*/

:root {
	--color-cream: #fff9f0;
	--color-section-white: #ffffff;
	--color-section-grey: #f0efec;
	--color-what-we-do-bg: #231715;
	--color-red: #C50516;
	--color-red-dark: #a51724;
	--color-hero-bg-start: #20090A;
	--color-hero-bg-mid: #3d1218;
	--color-hero-bg-end: #551311;
	--hero-gradient: linear-gradient(
		90deg,
		var(--color-hero-bg-start) 0%,
		var(--color-hero-bg-mid) 42%,
		var(--color-hero-bg-end) 100%
	);
	--color-accent: #e8a317;
	--color-badge-bg: #4a2018;
	--color-crunch-card: #3a1a1a;
	--color-text-dark: #1c2c22;
	--color-text-muted: #6b6560;
	--color-white: #ffffff;
	--color-footer-bg: #1a120f;

	--font-heading: "Cormorant Garamond", Georgia, "Times New Roman", serif;
	--font-body: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

	--container-max: 1400px;
	--site-gutter: 16px;
	--home-container-max: var(--container-max);
	--home-gutter: var(--site-gutter);
	--header-height: 80px;
	--site-header-offset: var(--header-height);
	--radius-sm: 6px;
	--radius-md: 12px;
	--radius-lg: 20px;
	--transition: 0.25s ease;
	--card-hover-lift: -6px;
	--card-hover-duration: 0.35s;

	/* Homepage typography */
	--home-text-eyebrow: 13px;
	--home-text-body: 17px;
	--home-text-body-sm: 15px;
	--home-text-ui: 14px;
	--home-text-card-title: 17px;
	--home-text-feature-title: 21px;
	--madira-reveal-distance: 24px;
	--madira-reveal-duration: 0.55s;
	--btn-hover-scale: 1.04;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.6;
	color: var(--color-text-dark);
	background-color: var(--color-cream);
}

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

a {
	color: inherit;
	text-decoration: none;
}

ul,
ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

button {
	font-family: inherit;
	cursor: pointer;
	border: none;
	background: none;
}

.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: 0;
}

.screen-reader-text:focus {
	position: static;
	width: auto;
	height: auto;
	margin: 0;
	overflow: visible;
	clip: auto;
	white-space: normal;
}

@media (max-width: 767px) {
	:root {
		--site-gutter: 20px;
	}
}
