/*
Theme Name: Golden Proportions
Author: WordPress Telex
Description: A bold, tech-forward dental marketing agency theme with deep navy tones, electric blue and violet gradient accents, and hexagonal geometric motifs. Built for Golden Proportions — an award-winning dental marketing agency.
Version: 0.1.0
Requires at least: 6.4
Tested up to: 6.8
Requires PHP: 7.4
License: GPLv2 or later
Text Domain: golden-proportions
Tags: block-theme, full-site-editing, dark, modern

Golden Proportions — DNA Discovery Engine theme.
*/

.equal-cards > .wp-block-column {
	display: flex;
	flex-direction: column;
	flex-grow: 0;
}

.equal-cards > .wp-block-column > .wp-block-group {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.equal-cards .cta-bottom {
	margin-top: auto;
	justify-content: center;
}

.wp-site-blocks > footer {
	margin-block-start: 0;
}

/* Gradient text utility */
.has-gradient-text {
	background: linear-gradient(135deg, #3A8EF6 0%, #7B5CF5 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* Glow button effect */
.glow-btn .wp-block-button__link {
	background: linear-gradient(135deg, #3A8EF6, #7B5CF5) !important;
	color: #fff !important;
	border: none !important;
	border-radius: 8px !important;
	box-shadow: 0 4px 24px rgba(58, 142, 246, 0.3), 0 1px 3px rgba(0,0,0,0.3);
	transition: box-shadow 0.3s ease, transform 0.2s ease;
	font-family: 'Space Grotesk', sans-serif;
	font-weight: 600;
	letter-spacing: -0.01em;
}

.glow-btn .wp-block-button__link:hover {
	box-shadow: 0 8px 36px rgba(58, 142, 246, 0.5), 0 2px 6px rgba(0,0,0,0.4);
	transform: translateY(-1px);
}

/* Outline button */
.outline-btn .wp-block-button__link {
	background: transparent !important;
	color: #A8C4E8 !important;
	border: 1px solid rgba(168, 196, 232, 0.25) !important;
	border-radius: 8px !important;
	transition: border-color 0.3s ease, color 0.3s ease;
	font-family: 'Space Grotesk', sans-serif;
	font-weight: 600;
	letter-spacing: -0.01em;
}

.outline-btn .wp-block-button__link:hover {
	border-color: rgba(168, 196, 232, 0.5) !important;
	color: #fff !important;
}

/* Card hover lift */
.dna-card {
	border: 1px solid rgba(58, 142, 246, 0.12);
	border-radius: 16px;
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.dna-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 48px rgba(58, 142, 246, 0.15);
	border-color: rgba(58, 142, 246, 0.25);
}

/* Stat card accent border */
.stat-card {
	border: 1px solid rgba(123, 92, 245, 0.15);
	border-radius: 16px;
	position: relative;
	overflow: hidden;
}

.stat-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #3A8EF6, #7B5CF5);
}

/* Hero section background overlay */
.hero-cover .wp-block-cover__inner-container {
	z-index: 10;
}

/* Eyebrow label style */
.eyebrow-label {
	letter-spacing: 0.2em;
}

/* Hexagonal decorative separator */
.hex-separator {
	position: relative;
}

.hex-separator::after {
	content: '';
	display: block;
	width: 60px;
	height: 3px;
	background: linear-gradient(90deg, #3A8EF6, #7B5CF5);
	border-radius: 2px;
	margin: 0 auto;
}

/* Process step number styling */
.step-number {
	font-family: 'Space Grotesk', sans-serif;
	font-weight: 700;
	background: linear-gradient(135deg, #3A8EF6 0%, #7B5CF5 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* Subtle background patterns */
.bg-pattern-subtle {
	background-image:
		radial-gradient(ellipse at 20% 50%, rgba(58, 142, 246, 0.06) 0%, transparent 60%),
		radial-gradient(ellipse at 80% 50%, rgba(123, 92, 245, 0.05) 0%, transparent 60%);
}

.bg-pattern-left {
	background-image:
		radial-gradient(ellipse at 10% 30%, rgba(58, 142, 246, 0.08) 0%, transparent 55%);
}

.bg-pattern-right {
	background-image:
		radial-gradient(ellipse at 90% 70%, rgba(123, 92, 245, 0.07) 0%, transparent 55%);
}

/* Nav link styles */
.nav-style a {
	color: #A8C4E8;
	text-decoration: none;
	font-size: 0.875rem;
	font-weight: 500;
	transition: color 0.2s ease;
	position: relative;
}

.nav-style a:hover {
	color: #fff;
}

.nav-style a::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, #3A8EF6, #7B5CF5);
	border-radius: 1px;
	transition: width 0.3s ease;
}

.nav-style a:hover::after {
	width: 100%;
}

/* Scroll animation */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(24px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.fade-in-up {
	animation: fadeInUp 0.7s ease both;
}

/* Footer credit link styling */
.footer-credit a {
	color: #3A8EF6;
	text-decoration: none;
	transition: color 0.2s ease;
}

.footer-credit a:hover {
	color: #7B5CF5;
}

/* Image card consistent heights */
.service-image img {
	height: 200px;
	object-fit: cover;
	width: 100%;
	border-radius: 10px 10px 0 0;
}

/* Divider gradient line */
.gradient-divider {
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(58, 142, 246, 0.2), rgba(123, 92, 245, 0.2), transparent);
	border: none;
}

/* CTA section glow */
.cta-glow-section {
	position: relative;
	overflow: hidden;
}

.cta-glow-section::before {
	content: '';
	position: absolute;
	top: -40%;
	left: 30%;
	width: 40%;
	height: 180%;
	background: radial-gradient(ellipse at center, rgba(58, 142, 246, 0.1) 0%, transparent 65%);
	pointer-events: none;
}

/* Sticky header support */
.sticky-header {
	position: sticky;
	top: 0;
	z-index: 100;
}