/*
Theme Name: Thuisbatterij Vergelijken NL
Description: A premium WordPress block theme for comparing home batteries and generating quote requests.
Author: Antigravity
Version: 1.1.0
Requires at least: 6.2
Tested up to: 6.4
Requires PHP: 7.4
License: GPLv2 or later
Text Domain: thuisbatterij-vergelijken
Tags: block-theme, full-site-editing, energy, clean, modern
*/

/* Reset & Basics */
:root {
	--aaa-navy: #0f172a;
	--aaa-blue: #0ea5e9; /* Energy Blue */
	--aaa-accent: #f59e0b; /* Solar Yellow/Amber */
	--aaa-green: #10b981; /* Soft Green */
	--aaa-light: #f8fafc;
	--aaa-grey: #64748b;
	--aaa-border: #e2e8f0;
	--aaa-radius: 12px;
}

body {
	font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
	background-color: var(--aaa-light);
	color: var(--aaa-navy);
}

/* Avatar Circle */
.avatar-circle {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background-color: var(--aaa-navy);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	font-weight: bold;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .wp-block-group {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .premium-header {
    flex-direction: column !important;
    align-items: center !important;
    gap: 1rem;
  }
  img {
    max-width: 100%;
    height: auto;
  }
}
