/* Brickyard.css - consolidated and cleaned
   This file replaces previous inline styles and fixes syntax/lint issues.
   If you had other rules, merge them into the section marked below.
*/

/* --- Base / utility rules (keep any project-specific rules below) --- */
*{ box-sizing: border-box; }
html, body { height: 100%; margin: 0; padding: 0; }

:root{
  --bg: #071a13;         /* deep pool green */
  --panel: #0b2f1f;      /* panel background */
  --text: #f3efe6;       /* warm cream */
  --accent: #80b96b;     /* felt green */
  --accent-2: #d6a04f;   /* wood/gold accent */
  --muted: #cfd8ce;      /* muted light */
}

body{
  font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Page wrapper */
#wrapper{
  background: rgba(0,0,0,0.18);
  padding: 1rem;
  min-height: 100%;
  border-radius: 6px;
}

/* Typography */
header h1{
  margin: 0 0 0.5rem 0;
  color: var(--accent-2);
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 600;
  letter-spacing: 0.8px;
}

h2{ color: var(--accent); margin-top: 0.5rem; }

p, main { color: var(--muted); }
a { color: var(--accent); }
a:hover { color: var(--accent-2); text-decoration: underline; }

/* Navbar tweaks */
.navbar{ background: rgba(0,0,0,0.20); }
.navbar-brand{ color: var(--accent-2) !important; font-weight: 700; }
.nav-link{ color: var(--muted) !important; }
.nav-link:hover{ color: var(--accent) !important; }

/* Phone styling */
.phone{ color: var(--accent); font-weight: 700; }

/* Decorative figure placeholder */
.figure{ height: 200px; border-radius: 6px; background: linear-gradient(135deg, rgba(0,0,0,0.2), rgba(0,0,0,0.35)); margin-bottom: 1rem; }

/* Make tables and content readable */
table { color: var(--text); border-collapse: collapse; }

footer { margin-top: 1.5rem; color: var(--muted); font-size: 0.9rem; }

@media (max-width: 576px) {
  header h1 { font-size: 1.25rem; }
}

/* --- End of consolidated site-wide rules --- */

/* If you had other custom rules in the original Brickyard.css, add them below. */

/* ...custom project rules here... */