/*
Theme Name: Conway & Partners
Theme URI: https://conwaypartners.co.uk
Author: Conway & Partners Ltd
Author URI: https://conwaypartners.co.uk
Description: Custom WordPress theme for Conway & Partners Ltd - Expert accountants in Oxford providing strategic financial guidance for growing businesses.
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: conwaypartners
Tags: accountancy, business, professional, one-column, custom-menu, featured-images
*/

/* ========================================
   CSS VARIABLES
   ======================================== */
:root {
  --background: #ffffff;
  --foreground: #0f172a;
  --primary: #2563eb;
  --primary-dark: #1e40af;
  --primary-light: #3b82f6;
  --accent: #06b6d4;
  --accent-dark: #0891b2;
  --accent-light: #22d3ee;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-900: #0f172a;
}

/* ========================================
   BASE OVERRIDES
   ======================================== */
* {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: #0f172a;
  background: #ffffff;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* WordPress admin bar fix */
.admin-bar nav.sticky {
  top: 32px;
}

@media screen and (max-width: 782px) {
  .admin-bar nav.sticky {
    top: 46px;
  }
}

/* Contact form spinner animation */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.animate-spin {
  animation: spin 1s linear infinite;
}
