/*
Theme Name: ACT
Theme URI: https://example.com/act
Author: Your Name
Author URI: https://example.com
Description: A custom WordPress theme built from scratch following modern standards.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: act
Tags: custom-theme, responsive, accessibility-ready
*/

/* Base styles live here. Enqueue in functions.php to allow WordPress overrides. */

/* :root {
  --color-primary: #1e3a8a;
  --color-secondary: #0ea5e9;
  --color-dark: #0f172a;
  --color-light: #f8fafc;
  --font-body: "Helvetica Neue", Arial, sans-serif;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-dark);
  background: var(--color-light);
}

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

a:hover,
a:focus {
  color: var(--color-secondary);
  text-decoration: underline;
}


.site-header,
.site-footer {
  background: var(--color-primary);
  color: #fff;
  padding: 1.5rem 0;
}

.nav-primary {
  display: flex;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-primary a {
  color: #fff;
  font-weight: 600;
}

.site-main {
  padding: 2rem 0;
}

.site-sidebar {
  background: #fff;
  padding: 1rem;
  border: 1px solid #e2e8f0;
}

.site-footer {
  text-align: center;
  font-size: 0.875rem;
} */
