/*
 Theme Name:  Global Header Footer (Child of Hello Elementor)
 Theme URI:   https://example.com/
 Description: Minimal child theme that adds a global header and footer without extra plugins.
 Author:      ChatGPT
 Version:     1.0.0
 Template:    hello-elementor
 Text Domain: ghe-child
*/
:root{
  --container-width: 1200px;
  --gap: 16px;
}
.container { max-width: var(--container-width); margin: 0 auto; padding: 0 20px; }
.site-header, .site-footer { padding: 16px 0; }
.menu { list-style: none; margin: 0; padding: 0; display: flex; gap: var(--gap); flex-wrap: wrap; }
.menu a { text-decoration: none; }
.site-main { padding: 24px 0; }
.branding .site-title { font-weight: 700; font-size: 1.25rem; }
.site-tagline { margin: 0; opacity: .7; }