/*
Theme Name: Plumbing Geeks
Theme URI: https://plumbinggeeks.ca
Author: Plumbing Geeks
Author URI: https://plumbinggeeks.ca
Description: Custom theme for PlumbingGeeks.ca based on Figma design.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: plumbinggeeks
*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  --pg-primary: #0077c8;
  --pg-secondary: #ffb400;
  --pg-dark: #0f172a;
  --pg-light: #f5f7fb;
  --pg-border: #e2e8f0;
  --pg-radius-lg: 18px;
  --pg-radius: 10px;
  --pg-shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: #ffffff;
  color: var(--pg-dark);
  line-height: 1.6;
}

a {
  color: var(--pg-primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

.container {
  width: min(1120px, 100% - 2.5rem);
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-primary {
  background: var(--pg-primary);
  color: #fff;
  box-shadow: var(--pg-shadow-soft);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.25);
}

.btn-outline {
  background: transparent;
  color: var(--pg-primary);
  border: 1px solid var(--pg-primary);
}

.section {
  padding: 4rem 0;
}

.section--light {
  background: var(--pg-light);
}

.section-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 0.95rem;
  color: #6b7280;
  max-width: 480px;
}
