/*
Theme Name: Plumber
Theme URI: https://example.com
Author: Wichita Plumbing Pro
Author URI: https://example.com
Description: A professional plumbing company WordPress theme with a modern landing page design. Features custom post types for services and testimonials, WordPress Customizer support, and a fully responsive layout.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: plumber
Tags: one-column, custom-background, custom-logo, custom-menu, featured-images, full-width-template, theme-options
*/

/* --- CSS Variables --- */
:root {
  --primary-navy: #0a2556;
  --primary-navy-light: #0c2c66;
  --primary-navy-dark: #071d42;
  --orange-cta: #f26512;
  --orange-cta-hover: #ff7a18;
  --orange-light: #fff7ed;
  --blue-cta: #2563eb;
  --blue-cta-hover: #1d4ed8;
  --light-section-bg: #f0f4f8;
  --white: #ffffff;
  --text-dark: #1e293b;
  --text-medium: #475569;
  --text-light: #94a3b8;
  --star-yellow: #f59e0b;
  --green-check: #16a34a;
  --green-bg: #dcfce7;
  --card-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  --card-shadow-md: 0 4px 24px rgba(0, 0, 0, 0.08);
  --card-shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
  --footer-bg: #061833;
  --font-main: 'Inter', Arial, Helvetica, sans-serif;
  --max-width: 1280px;
  --section-padding: 100px 0;
}

/* --- Reset --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-main);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  background: var(--white);
}

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

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

ul {
  list-style: none;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- WordPress Alignment Classes --- */
.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.alignleft {
  float: left;
  margin-right: 1.5em;
}

.alignright {
  float: right;
  margin-left: 1.5em;
}

.wp-caption {
  max-width: 100%;
}

.wp-caption-text {
  font-size: 13px;
  color: var(--text-medium);
  text-align: center;
  padding: 8px 0;
}

/* --- Selection --- */
::selection {
  background: rgba(242, 101, 18, 0.2);
  color: var(--text-dark);
}
