/* 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: 0.75rem;
  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: 0.5rem; }

/* 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; }
}

/* Logo displayed below the navbar */
.nav-logo{ text-align:center; margin:0.25rem 0 0.75rem; }
.site-logo{
  display:inline-block;
  width: min(95%, 1100px); /* responsive width, capped to avoid excessive scaling */
  max-width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: contain;
  border-radius:6px;
}
@media (max-width:576px){
  .site-logo{ height:80px; width: 90%; max-height: 120px; }
}

/* Menu image styling */
.menu-image-wrap{ text-align:center; margin:0.5rem 0 1rem; }
.menu-image{ width: min(95%, 1100px); max-width:100%; height:auto; border-radius:6px; box-shadow: 0 6px 18px rgba(0,0,0,0.35); }
@media (max-width:576px){ .menu-image{ width:92%; } }

/* --- End of consolidated site-wide rules --- */

/* If you had other custom rules in the original Brickyard.css, add them below. */

/* ...custom project rules here... */