/* ── Public CSS ────────────────────────── */
:root {
  --gold: #b8860b;
  --gold-light: #ffd700;
}

/* Navbar */
.navbar-brand { font-size: 1.3rem; letter-spacing: .5px; }
.nav-link.active { font-weight: 600; }

/* Hover glow for service cards */
.hover-glow { transition: all .3s; }
.hover-glow:hover { border-color: var(--gold) !important; box-shadow: 0 0 20px rgba(184,134,11,.3) !important; transform: translateY(-4px); }

/* Hero overlay */
.carousel-caption { text-shadow: 0 2px 8px rgba(0,0,0,.6); }

/* Smooth scroll */
html { scroll-behavior: smooth; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-thumb { background: #888; border-radius: 3px; }

/* Cards hover */
.card { transition: box-shadow .2s; }
.card:hover { box-shadow: 0 6px 20px rgba(0,0,0,.1); }

/* Footer links */
footer a:hover { color: var(--gold-light) !important; }
