
/* AUTOMATIC DOOR REPAIR UK - GREEN THEME */
:root {
    --primary: #3a6b35;
    --secondary: #67a03a;
    --bg-header: #d0e8c1;
    --bg-body: #f3f6f4;
    --text: #2b3a2e;
    --white: #ffffff;
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font-main); background-color: var(--bg-body); color: var(--text); line-height: 1.6; }

/* HEADER */
header { background: var(--primary); color: var(--bg-header); padding: 30px 20px; text-align: center; box-shadow: 0 4px 10px rgba(58,107,53,0.4); }
header h1 { margin: 0; font-size: 2.4rem; font-weight: 700; }
header p { margin: 8px 0 0; font-size: 1.3rem; font-weight: 600; }
a.phone-number { color: var(--primary); text-decoration: none; font-weight: 700; background-color: var(--bg-header); padding: 10px 22px; border-radius: 30px; display: inline-block; margin-top: 14px; transition: 0.3s; box-shadow: 0 3px 8px rgba(58,107,53,0.3); }
a.phone-number:hover { background-color: #accb85; color: #1c2e12; }

.nav-menu { list-style: none; padding: 0; margin: 20px 0 0 0; display: flex; justify-content: center; gap: 20px; }
.nav-menu a { color: var(--bg-header); text-decoration: none; font-weight: 600; font-size: 1.1rem; }
.nav-menu a:hover { color: var(--white); text-decoration: underline; }

/* MAIN CONTENT */
main { max-width: 1200px; margin: 40px auto; background-color: var(--white); border-radius: 14px; box-shadow: 0 8px 25px rgba(38,58,25,0.1); padding: 36px 36px 48px; }
.container { width: 100%; margin: 0 auto; }

/* HERO & SECTIONS */
.hero { text-align: center; padding: 4rem 2rem; background: linear-gradient(135deg, var(--bg-body), #fff); border-radius: 14px; margin-bottom: 2rem; border: 1px solid var(--bg-header); }
.hero h1 { color: var(--primary); font-size: 3rem; margin-bottom: 1rem; }
.hero p { font-size: 1.3rem; margin-bottom: 2rem; color: var(--text); }
.hero-image { width: 100%; max-width: 800px; height: auto; border-radius: 14px; margin: 20px auto; display: block; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }

.section { padding: 3rem 0; }
.section-title { text-align: center; margin-bottom: 2rem; }
.section-title h2 { color: var(--primary); font-size: 2.2rem; border-bottom: 4px solid var(--secondary); display: inline-block; padding-bottom: 10px; }

.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.service-card { background: var(--bg-body); padding: 2rem; border-radius: 12px; border-top: 5px solid var(--secondary); transition: transform 0.3s; }
.service-card:hover { transform: translateY(-5px); }
.service-card h3 { color: var(--primary); margin-bottom: 1rem; }
.service-img { background: var(--primary); color: var(--white); padding: 5px 15px; border-radius: 20px; display: inline-block; margin-bottom: 15px; font-weight: bold; font-size: 0.9rem; }

/* CONTENT BLOCKS (Long Text) */
.content-block { margin-bottom: 40px; border-bottom: 1px solid var(--bg-header); padding-bottom: 30px; }
.content-block:last-child { border-bottom: none; }
.content-block h2, .content-block h3 { color: var(--primary); margin-bottom: 15px; }
.content-block p { font-size: 1.1rem; margin-bottom: 20px; line-height: 1.8; text-align: justify; }

/* CTA */
.btn { text-decoration: none; background-color: var(--primary); color: white; padding: 18px 46px; border-radius: 34px; font-weight: 800; font-size: 1.28rem; box-shadow: 0 6px 18px rgba(58,107,53,0.45); transition: 0.3s; display: inline-block; }
.btn:hover { background-color: #2a4d24; }

/* FOOTER */
footer { background-color: #e7f0d6; text-align: center; padding: 40px 20px; color: #63733e; margin-top: 60px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; max-width: 1200px; margin: 0 auto; text-align: left; }
.footer-column h3 { color: var(--primary); margin-bottom: 15px; }
.copyright { margin-top: 30px; font-weight: bold; border-top: 1px solid #b0c281; padding-top: 20px; }

/* DIRECTORY GRID */
.directory-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 15px; margin-top: 30px; }
.city-link { display: block; padding: 12px; background: #fff; color: var(--primary); text-decoration: none; border-radius: 8px; text-align: center; border: 1px solid #c6d8b7; font-weight: 600; transition: 0.2s; }
.city-link:hover { background: var(--primary); color: var(--white); }

@media(max-width: 768px) { .nav-menu { flex-direction: column; gap: 10px; } }
