/* einfach-arzt.de Theme Styles */

/* Header */
.ea-header {
	border-bottom: 1px solid var(--wp--preset--color--slate-300);
	z-index: 50;
}

.ea-site-title {
	letter-spacing: -0.5px;
}

/* Cart + Account Icons in Nav */
.ea-cart-icon a,
.ea-account-icon a {
	font-size: 18px !important;
	padding: 4px 8px !important;
	opacity: 0.6;
	transition: opacity 0.2s;
	text-decoration: none !important;
}
.ea-cart-icon a:hover,
.ea-account-icon a:hover {
	opacity: 1;
}

/* Hero Section */
.ea-hero {
	background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 100%);
	color: #ffffff;
	padding: 100px 48px 80px;
	position: relative;
	overflow: hidden;
}

.ea-hero::after {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(245,158,11,0.15) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}

.ea-hero h1 {
	color: #ffffff;
	font-size: 48px;
	font-weight: 800;
	line-height: 1.15;
}

.ea-hero .ea-highlight {
	color: var(--wp--preset--color--accent);
}

.ea-hero p {
	color: rgba(255, 255, 255, 0.85);
	font-size: 19px;
	line-height: 1.6;
}

/* Trust Bar */
.ea-trust-bar {
	border-bottom: 1px solid var(--wp--preset--color--slate-300);
}

.ea-trust-item {
	text-align: center;
}

.ea-trust-icon {
	font-size: 28px;
	margin-bottom: 6px;
}

.ea-trust-label {
	font-size: 13px;
	color: var(--wp--preset--color--slate-500);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* DNA Helix Section */
.ea-dna-section {
	background: var(--wp--preset--color--dark-navy);
	position: relative;
}

/* Feature Cards */
.ea-feature-card {
	background: #ffffff;
	border-radius: 12px;
	padding: 32px;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
	border: 1px solid var(--wp--preset--color--slate-300);
	transition: transform 0.2s, box-shadow 0.2s;
}

.ea-feature-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

/* CTA Section */
.ea-cta {
	background: linear-gradient(135deg, #1e3a5f 0%, #1d4ed8 100%);
	color: #ffffff;
	text-align: center;
}

.ea-cta h2 {
	color: #ffffff;
}

.ea-cta p {
	color: rgba(255, 255, 255, 0.85);
}

/* Product Page */
.ea-product-hero {
	background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 100%);
	color: #ffffff;
	padding: 80px 48px;
}

.ea-screenshot {
	border-radius: 12px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
	border: 1px solid var(--wp--preset--color--slate-300);
}

/* Footer — remove WP block-theme gap between content and footer */
.wp-block-template-part:last-child {
	margin-top: 0 !important;
}

.ea-footer a {
	color: var(--wp--preset--color--slate-300) !important;
	text-decoration: none;
}

.ea-footer a:hover {
	color: #ffffff !important;
}

/* Responsive */
@media (max-width: 768px) {
	.ea-hero h1 {
		font-size: 36px;
	}

	.ea-hero {
		padding: 60px 24px 48px;
	}

	.ea-header {
		padding-left: 16px !important;
		padding-right: 16px !important;
	}
}