/**
 * OGA Mini App v110004 · assets/css/oga-marketing-framework.css
 * ============================================================================
 * Marketing Framework Styling
 * - Header hook with highlight color (like logo)
 * - 8 Pillars grid layout
 * - WooCommerce shop hero
 * - Customizer-driven accent colors
 * - Logo-inspired visual hierarchy
 * ============================================================================
 */

/* ── HEADER HOOK: Marketing Framework Tagline ────────────────────────────── */
.oga-marketing-header-hook {
	background: linear-gradient(135deg, rgba(216, 90, 48, 0.02), rgba(216, 90, 48, 0.01));
	border-bottom: 1px solid rgba(216, 90, 48, 0.1);
	padding: 12px 0;
	margin: 0;
	font-family: 'Syne', sans-serif;
}

.oga-marketing-hook-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.oga-marketing-tagline {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.8px;
	text-transform: uppercase;
	opacity: 0.85;
	margin: 0;
}

.oga-marketing-subtagline {
	font-size: 18px;
	font-weight: 700;
	line-height: 1.3;
	color: #0A0A0F;
	margin: 0;
	letter-spacing: -0.3px;
}

.oga-highlight {
	display: inline;
	padding-bottom: 3px;
	position: relative;
	transition: all 0.3s ease;
}

.oga-highlight:hover {
	opacity: 0.8;
	letter-spacing: 0.5px;
}

/* Mobile */
@media (max-width: 768px) {
	.oga-marketing-hook-container {
		padding: 0 16px;
	}
	
	.oga-marketing-tagline {
		font-size: 11px;
	}
	
	.oga-marketing-subtagline {
		font-size: 14px;
	}
}

/* ── MARKETING FRAMEWORK CONTAINER ──────────────────────────────────────── */
.oga-marketing-framework-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px 20px;
}

.oga-marketing-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 16px;
	margin: 0;
	padding: 0;
}

/* ── PILLAR CARDS ────────────────────────────────────────────────────────── */
.oga-marketing-pillar {
	background: #FAFAFA;
	border: 1px solid #E8E8E8;
	border-radius: 8px;
	padding: 24px 16px;
	text-align: center;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.oga-marketing-pillar::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--oga-pillar-color, #D85A30);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.oga-marketing-pillar:hover {
	border-color: var(--oga-pillar-color, #D85A30);
	box-shadow: 0 8px 20px rgba(216, 90, 48, 0.12);
	transform: translateY(-4px);
}

.oga-marketing-pillar:hover::before {
	opacity: 1;
}

.oga-pillar-icon {
	font-size: 36px;
	margin-bottom: 12px;
	display: block;
}

.oga-pillar-name {
	font-family: 'Syne', sans-serif;
	font-size: 16px;
	font-weight: 700;
	margin: 0 0 8px;
	letter-spacing: -0.3px;
	transition: all 0.3s ease;
}

.oga-marketing-pillar:hover .oga-pillar-name {
	letter-spacing: 0;
	font-weight: 800;
}

.oga-pillar-description {
	font-size: 13px;
	color: #666;
	line-height: 1.5;
	margin: 0;
	font-family: 'DM Sans', sans-serif;
}

/* ── STYLE VARIANTS ─────────────────────────────────────────────────────── */
.oga-marketing-style-list .oga-marketing-grid {
	grid-template-columns: 1fr;
	gap: 12px;
}

.oga-marketing-style-list .oga-marketing-pillar {
	display: flex;
	align-items: center;
	gap: 16px;
	text-align: left;
	padding: 16px 20px;
}

.oga-marketing-style-list .oga-pillar-icon {
	font-size: 28px;
	margin: 0;
	flex-shrink: 0;
}

.oga-marketing-style-list .oga-pillar-name {
	margin: 0 0 4px;
}

.oga-marketing-style-list .oga-pillar-description {
	margin: 0;
}

/* ── CTA BUTTON ──────────────────────────────────────────────────────────── */
.oga-marketing-cta {
	display: inline-block;
	font-family: 'Syne', sans-serif;
	font-weight: 600;
	font-size: 14px;
	padding: 14px 28px;
	border-radius: 6px;
	text-decoration: none;
	transition: all 0.3s ease;
	letter-spacing: 0.3px;
	border: 2px solid;
	position: relative;
	overflow: hidden;
}

.oga-marketing-cta::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: inherit;
	opacity: 0.05;
	transition: left 0.3s ease;
	z-index: -1;
}

.oga-marketing-cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(216, 90, 48, 0.2);
	letter-spacing: 0.5px;
}

.oga-marketing-cta:hover::before {
	left: 0;
}

.oga-marketing-cta-button {
	background: inherit;
}

.oga-marketing-cta-text {
	background: transparent;
}

.oga-marketing-cta-icon::after {
	content: ' ↗';
	margin-left: 6px;
}

/* ── WOOCOMMERCE SHOP HERO ───────────────────────────────────────────────── */
.oga-wc-shop-hero {
	background: linear-gradient(
		135deg,
		rgba(216, 90, 48, 0.04),
		rgba(55, 138, 221, 0.02)
	);
	border-bottom: 2px solid rgba(216, 90, 48, 0.15);
	padding: 40px 20px;
	margin: 0 0 30px;
	text-align: center;
}

.oga-wc-shop-hero-heading {
	font-family: 'Syne', sans-serif;
	font-size: 32px;
	font-weight: 800;
	color: #0A0A0F;
	margin: 0 0 12px;
	letter-spacing: -0.5px;
}

.oga-wc-shop-hero-subheading {
	font-size: 16px;
	color: #666;
	line-height: 1.6;
	max-width: 600px;
	margin: 0 auto;
	font-family: 'DM Sans', sans-serif;
}

/* ── RESPONSIVE GRID BREAKPOINTS ────────────────────────────────────────── */
@media (max-width: 1024px) {
	.oga-marketing-grid {
		grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
		gap: 12px;
	}
}

@media (max-width: 768px) {
	.oga-marketing-framework-container {
		padding: 30px 16px;
	}

	.oga-marketing-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}

	.oga-pillar-icon {
		font-size: 28px;
	}

	.oga-pillar-name {
		font-size: 14px;
	}

	.oga-pillar-description {
		font-size: 12px;
	}

	.oga-wc-shop-hero-heading {
		font-size: 24px;
	}

	.oga-wc-shop-hero-subheading {
		font-size: 14px;
	}
}

@media (max-width: 480px) {
	.oga-marketing-grid {
		grid-template-columns: 1fr;
	}

	.oga-marketing-framework-container {
		padding: 24px 12px;
	}

	.oga-marketing-cta {
		width: 100%;
		text-align: center;
	}

	.oga-wc-shop-hero {
		padding: 30px 16px;
	}

	.oga-wc-shop-hero-heading {
		font-size: 20px;
	}

	.oga-wc-shop-hero-subheading {
		font-size: 13px;
	}
}

/* ── DARK MODE SUPPORT ────────────────────────────────────────────────────── */
@media (prefers-color-scheme: dark) {
	.oga-marketing-header-hook {
		background: linear-gradient(135deg, rgba(216, 90, 48, 0.08), rgba(216, 90, 48, 0.04));
		border-bottom-color: rgba(216, 90, 48, 0.2);
	}

	.oga-marketing-subtagline {
		color: #F5F5F5;
	}

	.oga-marketing-pillar {
		background: #1A1A1F;
		border-color: #2A2A2F;
	}

	.oga-pillar-description {
		color: #AAA;
	}

	.oga-wc-shop-hero {
		background: linear-gradient(
			135deg,
			rgba(216, 90, 48, 0.1),
			rgba(55, 138, 221, 0.05)
		);
		border-bottom-color: rgba(216, 90, 48, 0.25);
	}

	.oga-wc-shop-hero-heading {
		color: #F5F5F5;
	}

	.oga-wc-shop-hero-subheading {
		color: #BBB;
	}
}

/* ── PRINT STYLES ────────────────────────────────────────────────────────── */
@media print {
	.oga-marketing-header-hook {
		page-break-inside: avoid;
		border: 1px solid #999;
	}

	.oga-marketing-pillar {
		page-break-inside: avoid;
		border: 1px solid #999;
		background: #FFF;
	}

	.oga-marketing-cta {
		color: inherit !important;
		border-color: #999 !important;
		background: #FFF !important;
	}
}

/* ── ACCESSIBILITY ────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
	.oga-marketing-pillar,
	.oga-highlight,
	.oga-marketing-cta {
		transition: none;
	}
}

/* ── FOCUS STATES (KEYBOARD NAVIGATION) ─────────────────────────────────── */
.oga-marketing-cta:focus-visible {
	outline: 2px solid #D85A30;
	outline-offset: 2px;
}

.oga-marketing-pillar:focus-within {
	outline: 2px solid #D85A30;
	outline-offset: 2px;
	border-radius: 8px;
}

/* ── COLOR ACCENT TOKENS (used by inline styles) ──────────────────────────── */
:root {
	--oga-pillar-color: #D85A30; /* Coral (default) */
	--oga-accent-teal: #1D9E75;
	--oga-accent-blue: #378ADD;
	--oga-accent-amber: #BA7517;
	--oga-accent-coral: #D85A30;
	--oga-accent-darkblue: #185FA5;
	--oga-accent-red: #E24B4A;
	--oga-accent-green: #639922;
	--oga-accent-purple: #534AB7;
}

/* ── ANIMATION: Fade-in on scroll ────────────────────────────────────────– */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.oga-marketing-pillar {
	animation: fadeInUp 0.6s ease backwards;
}

.oga-marketing-pillar:nth-child(1) { animation-delay: 0.1s; }
.oga-marketing-pillar:nth-child(2) { animation-delay: 0.15s; }
.oga-marketing-pillar:nth-child(3) { animation-delay: 0.2s; }
.oga-marketing-pillar:nth-child(4) { animation-delay: 0.25s; }
.oga-marketing-pillar:nth-child(5) { animation-delay: 0.3s; }
.oga-marketing-pillar:nth-child(6) { animation-delay: 0.35s; }
.oga-marketing-pillar:nth-child(7) { animation-delay: 0.4s; }
.oga-marketing-pillar:nth-child(8) { animation-delay: 0.45s; }
