﻿/*
Theme Name: Deeds Autobody And Recovery
Theme URI: https://example.com/deeds-autobody-theme
Author: Codex
Author URI: https://example.com
Description: Custom classic PHP theme for Deeds Autobody And Recovery with Elementor full-width template support.
Version: 1.0.0
Text Domain: deeds-autobody
Tags: custom-theme, auto-repair, towing, elementor
*/

:root {
  --bg: #f5f5f5;
  --bg-alt: #ffffff;
  --ink: #111827;
  --muted: #6b7280;
  --accent: #d24a3a;
  --accent-dark: #a83a2d;
  --border: #e5e7eb;
  --radius: 18px;
  --shadow: 0 18px 34px rgba(17, 24, 39, 0.12);
  --font-sans: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-serif: "Source Serif 4", "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.site-container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 10px;
  background: #000;
  color: #fff;
  padding: 8px 12px;
  z-index: 999;
}

.skip-link:focus {
  left: 10px;
}

.top-bar {
  background: #111827;
  color: #f9fafb;
  font-size: 0.85rem;
}

.top-bar .site-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
}

.top-bar-links {
  display: flex;
  gap: 14px;
  font-weight: 600;
}

.site-header {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 20;
}

.site-header .site-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
}

.site-logo {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.5rem;
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.header-actions {
  display: flex;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn.primary {
  background: var(--accent);
  color: #fff;
}

.btn.primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn.ghost {
  border-color: var(--border);
  color: var(--ink);
  background: #fff;
}

.hero {
  padding: 80px 0 40px;
}

.hero-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.5vw, 3.6rem);
  line-height: 1.1;
  margin: 0 0 16px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--accent-dark);
  font-weight: 700;
}

.section {
  padding: 60px 0;
}

.section-title {
  margin-bottom: 28px;
}

.section-title h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 2.8vw, 2.8rem);
  margin: 10px 0 0;
}

.grid {
  display: grid;
  gap: 22px;
}

.grid.cols-3 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.card h3 {
  margin-top: 0;
  font-family: var(--font-serif);
}

.cta-slab {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: var(--shadow);
}

.site-footer {
  padding: 40px 0 70px;
  background: #111827;
  color: #e5e7eb;
}

.site-footer .site-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}

.page-content {
  padding: 60px 0;
}

.elementor-fullwidth .site-container {
  width: 100%;
  max-width: none;
  padding: 0 24px;
}

@media (max-width: 900px) {
  .site-nav {
    display: none;
  }

  .header-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
  }
}
