@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&display=swap');

:root {
  --black: #000000;
  --silver: #cfcfcf; /* light silver background */
  --gold: #ffd700;
  --muted: #6b7280;
}

/* Base */
html, body { height: 100%; }
body {
  background: var(--silver);
  color: var(--black);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Brand lockup: logo + wordmark */
.brand-name {
  font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-weight: 800;
  line-height: 1;
  /* ~2x typical header size, responsive */
  font-size: clamp(1.75rem, 4.5vw, 2.5rem);
  color: #ffffff; /* base white, can be overridden by variants */
}

.brand-logo {
  height: 44px; /* match visual cap height of the brand-name at common viewports */
  width: auto;
}

@media (min-width: 1024px) {
  .brand-logo { height: 48px; }
}

/* Tri-color brand text (black, silver, gold) with readable outline on dark header */
.brand-name--tri {
  /* Fallback if text-clip unsupported */
  color: var(--gold);
  background: linear-gradient(
    90deg,
    var(--gold) 0%,
    var(--silver) 35%,
    var(--black) 55%,
    var(--gold) 80%,
    var(--silver) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  /* Subtle stroke to keep black segments legible on dark header */
  -webkit-text-stroke: 0.6px rgba(255,255,255,0.35);
  text-shadow: 0 0 0 rgba(0,0,0,0); /* ensures consistent subpixel rendering */
}

/* Black/Gold duo gradient wordmark */
.brand-name--duo {
  color: var(--gold);
  /* Option B: mostly black with a very subtle gold sheen at the far left/right */
  background: linear-gradient(
    90deg,
    var(--gold) 0%,     /* subtle left edge */
    var(--gold) 2%,
    #141414 6%,         /* near-black for contrast against pure black header */
    #1b1b1b 50%,
    #141414 94%,
    var(--gold) 98%,    /* subtle right edge */
    var(--gold) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 0.6px rgba(255,255,255,0.35);
}

/* White lettering with gold (left) and black (right) side edging */
.brand-name--edge {
  color: #000000 !important;
  -webkit-text-fill-color: #000000;
  text-shadow:
    -2px 0 0 var(--gold),
    -1.5px 0 0 var(--gold),
    -1px 0 0 var(--gold),
     1px 0 0 #000,
     1.5px 0 0 #000,
     2px 0 0 #000;
}

/* Nav link styling: Playfair Display, black text on light pill with gold accents */
.site-nav {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  color: var(--black) !important;
  background: linear-gradient(180deg, #ffffff, #f7f7f7);
  border: 1px solid var(--gold);
  padding: .4rem .85rem;
  border-radius: 9999px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: .2px;
  transition: transform .15s ease, box-shadow .15s ease, background-color .2s ease, color .2s ease;
}

header a.site-nav { color: var(--black) !important; }

.site-nav:hover, .site-nav:focus {
  background: var(--gold);
  color: var(--black) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(212,175,55,.25);
  outline: none;
}

.site-nav.active {
  background: var(--gold);
  color: var(--black) !important;
}

/* Headings */
h1,h2,h3,h4,h5,h6{ color:var(--black); }

/* Links */
a { color: var(--gold); text-decoration: none; }
a:hover, a:focus { color: var(--black); background-color: var(--gold); }
/* Active nav link helper */
.active { border-bottom: 2px solid var(--gold); }

/* Primary CTA button styles */
.btn-primary, .site-btn-gold, .btn-cta { background: var(--gold); color: var(--black); border: none; }
.btn-primary:hover, .site-btn-gold:hover, .btn-cta:hover { background: var(--black); color: var(--gold); }

/* Contact button utility requested */
.contact-button { display:inline-block; padding:.6rem 1rem; border-radius:.375rem; font-weight:600; text-decoration:none; background:var(--gold); color:var(--black); }
.contact-button:hover, .contact-button:focus { background:var(--black); color:var(--gold); }

/* Generic site button variants (preserve existing markup) */
.site-btn { display: inline-block; padding: .6rem 1rem; border-radius: .375rem; font-weight: 600; text-decoration: none; }
.site-btn-gold { background: var(--gold); color: var(--black); }
.site-btn-dark { background: var(--black); color: var(--silver); border: 2px solid var(--gold); }
.site-btn-dark:hover { background: var(--gold); color: var(--black); }

/* Sections & cards */
.site-section, .map-card, .card, .testimonial { background: var(--silver); }

/* Header & footer */
header { background: var(--black); color: var(--silver); }
header a { color: var(--silver); }
footer { background: var(--black); color: var(--silver); }

/* Minimal overrides for legacy 'blue' utility classes used in templates - map these to the gold/black theme */
.text-blue-600 { color: var(--gold) !important; }
.bg-blue-600 { background: var(--gold) !important; color: var(--black) !important; }
.bg-blue-600:hover { background: var(--black) !important; color: var(--gold) !important; }
.border-blue-600 { border-color: var(--gold) !important; }
.bg-gradient-to-r.from-blue-600.to-blue-700 { background: linear-gradient(90deg, var(--black), #111111) !important; }

/* Map / placeholder */
.map-placeholder { background: #e6e6e8; border-radius: .5rem; height: 320px; display:flex; align-items:center; justify-content:center; color:var(--muted); }
.map-responsive { position: relative; width: 100%; padding-bottom: 56.25%; overflow: hidden; border-radius: .5rem; box-shadow: 0 6px 18px rgba(0,0,0,0.06); background: var(--silver); }
.map-responsive iframe { position: absolute; top:0; left:0; width:100%; height:100%; border:0 }

.site-link { color: var(--gold); text-decoration: none; }
.site-link:hover { opacity: .95; }

/* Focus outlines */
.site-btn-gold:focus, .site-btn-dark:focus, .contact-button:focus { outline: 3px solid rgba(255,215,0,0.18); outline-offset: 2px; }

/* Team page styles */
.team-photo{width:96px;height:96px;border-radius:9999px;object-fit:cover;border:4px solid rgba(255,215,0,0.08)}
.text-gold-500{color:var(--gold)}

/* Border utilities */
.border-gold{border-color:var(--gold) !important}

/* Hero gradient using black and subtle highlight */
.site-hero{background:linear-gradient(90deg, var(--black), #111111); color:var(--silver)}

