/*
Theme Name: Permitted Development Extension
Theme URI: https://permitteddevelopmentextension.co.uk
Author: Your Name
Description: Lightweight custom theme for UK planning and permitted development authority lead generation.
Version: 1.0
License: GPLv2 or later
Text Domain: permitteddevelopmentextension
*/

:root {
  --container-width: 1200px;
  --primary: #0b3d2e;
  --text: #222;
  --light-gray: #f5f5f5;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: #fff;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 80px 0;
}

h1, h2, h3 {
  font-weight: 600;
  margin-bottom: 20px;
}

.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  text-align: center;
  color: #fff;
  padding: 160px 20px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.30;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.button {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  margin-top: 20px;
}

.cta-section {
  background: var(--light-gray);
  text-align: center;
}

footer {
  background: #111;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
  font-size: 14px;
}
