/* PowerPlay HPC - Theme Styles */
:root {
  --navy: #002b5c;
  --gold: #ffcc00;
  --text: #222;
  --muted: #6c757d;
}

html, body {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
  color: var(--text);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', Arial, sans-serif;
}

.navbar {
  background: var(--navy);
}
.navbar .nav-link, .navbar .navbar-brand {
  color: white !important;
}
.navbar .nav-link.active, .navbar .nav-link:hover {
  color: var(--gold) !important;
}

.btn-gold {
  background: var(--gold);
  color: #000;
  border: none;
}
.btn-gold:hover {
  filter: brightness(0.95);
}

.hero-caption {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}
.hero-caption .inner {
  background: rgba(0,0,0,0.45);
  color: #fff;
  padding: 1.25rem 1.5rem;
  border-radius: 0.75rem;
  max-width: 900px;
}
.hero-caption h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: .5rem;
}
.hero-caption p {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.section {
  padding: 4rem 0;
}

.lead-badge {
  display: inline-block;
  background: var(--gold);
  color: #000;
  padding: .25rem .6rem;
  border-radius: .5rem;
  font-weight: 600;
}

.footer {
  background: #0c2649;
  color: #e7eef9;
  padding: 2rem 0;
}
.footer a {
  color: var(--gold);
  text-decoration: none;
}
.footer a:hover { text-decoration: underline; }

.map-embed {
  width: 100%;
  height: 360px;
  border: 0;
  border-radius: 0.75rem;
  filter: saturate(0.95);
}

.card {
  border-radius: 1rem;
}
