/*
Theme Name: IncubeSocial
Theme URI: https://incubesocial.com
Author: Alpha Resolution Inc
Author URI: https://alphares.net
Description: Standalone lightweight theme for IncubeSocial — "Get Your Mondays Back. You run your business. We manage your social media." Brand tokens (colors, gradient, type) live in design-tokens.css.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: incubesocial-theme
*/

/* Base reset — minimal, theme is intentionally lightweight (Phase 1). */
* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-heading);
	color: var(--color-navy-dark);
	line-height: 1.2;
	margin-top: 0;
}

a {
	color: var(--color-purple-primary);
	text-decoration: none;
}

a:hover {
	color: var(--color-pink-accent);
}

/* Signature gradient — reserved for mark / hero / CTAs ONLY, never a full-page flood. */
.is-signature-gradient {
	background: var(--gradient-signature);
}

.button,
button,
input[type="submit"] {
	font-family: var(--font-body);
	font-weight: 600;
	border: none;
	border-radius: 999px;
	padding: 0.75em 1.75em;
	cursor: pointer;
	background: var(--gradient-signature);
	color: #fff;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.button:hover,
button:hover,
input[type="submit"]:hover {
	transform: translateY(-1px);
	box-shadow: 0 6px 18px rgba(108, 58, 237, 0.25);
}

.site-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 2rem 1.5rem;
}
