/* 
// Author: Alberto Gonzalez
// Started:  03/06/2025
// Updated:  09/26/2025
// Filename: BCstylesheet.css
*/

/* ===== General Page Styling ===== */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #222;
  color: #f2f2f2;
}

h1 { font-size: 32px; color: #39FF14; }
p  { font-size: 18px; line-height: 1.6; max-width: 800px; margin: 0 auto; color: #f2f2f2; }

/* ===== Header, Desktop Nav, Burger ===== */
.site-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 20px; background-color: #2b2b2b; border-bottom: 3px solid #39FF14;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo img { max-height: 80px; width: auto; height: auto; filter: drop-shadow(0 0 6px rgba(57,255,20,0.5)); }
.brand { font-weight: bold; font-size: 20px; color: #f2f2f2; }

.primary-nav .nav-list {
  display: none; list-style: none; gap: 18px; padding: 0; margin: 0;
}
.primary-nav .nav-list li { display: inline-block; }
.primary-nav .nav-list a {
  color: #f2f2f2; text-decoration: none; font-size: 18px; font-weight: bold; padding: 8px 12px;
  border-radius: 6px; transition: all 0.3s;
}
.primary-nav .nav-list a:hover { background-color: #39FF14; color: #000; }

.burger {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 4px;
  width: 42px; height: 42px; border: 1px solid #3a3a3a; border-radius: 10px;
  background: #1f1f1f; cursor: pointer;
}
.burger-bar { display: block; height: 2px; width: 22px; background: #fff; margin: 0 auto; }

@media (min-width: 900px) {
  .primary-nav .nav-list { display: flex; }
  .burger { display: none; }
}

/* ===== Overlay Menu ===== */
.site-menu { position: fixed; inset: 0; display: none; z-index: 10000; }
.site-menu.is-open { display: block; }
.site-menu__bg { position: absolute; inset: 0; background: rgba(0,0,0,0.65); backdrop-filter: blur(2px); }
.site-menu__panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(86vw, 360px);
  background: #121212; border-left: 1px solid #39FF14; box-shadow: -20px 0 60px rgba(0,0,0,0.55);
  padding: 18px 16px; display: flex; flex-direction: column; gap: 16px;
}
.site-menu__close {
  align-self: flex-end; width: 42px; height: 42px; border: none; border-radius: 999px;
  background: rgba(255,255,255,0.12); color: #fff; font-size: 26px; font-weight: 700; line-height: 42px; cursor: pointer;
}
.site-menu__links { list-style: none; padding: 8px 0 0; margin: 0; display: grid; gap: 10px; }
.site-menu__links a {
  display: block; padding: 12px 10px; border-radius: 10px; text-decoration: none;
  color: #f2f2f2; background: #1b1b1b; border: 1px solid #2c2c2c;
}
.site-menu__links a[aria-current="page"] { border-color: #39FF14; box-shadow: 0 0 0 2px rgba(57,255,20,0.18); }

/* Lock background when overlays open (also used by lightbox) */
body.no-scroll { overflow: hidden; }

/* ===== Hero / Banner (unchanged aside from being kept) ===== */
#hero {
  min-height: 48vh; display: grid; place-items: center; text-align: center; padding: 40px 16px;
  background: radial-gradient(1200px 400px at 50% -20%, rgba(57,255,20,0.06), transparent 65%), linear-gradient(180deg, #2b2b2b 0%, #222 60%);
  border-bottom: 3px solid #39FF14;
}
#hero .kicker { color: #39FF14; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; font-size: 0.9rem; margin-bottom: 8px; }
#hero h1 { margin: 6px 0 8px; font-size: 34px; color: #39FF14; }
#hero .hero-subtitle { color: #d8d8d8; max-width: 820px; margin: 0 auto; }
.hero-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 16px; }

/* ===== Hero media switcher (kept) ===== */
.hero-media { position: relative; width: min(100%, 980px); margin: 16px auto 8px; aspect-ratio: 16 / 9; border-radius: 14px; overflow: hidden; background: #111;
  box-shadow: 0 0 0 2px rgba(57,255,20,0.12), 0 20px 50px rgba(0,0,0,0.5); }
.hero-media__item { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: none; }
.hero-media__item.is-active { display: block; }
.hero-media__controls {
  position: absolute; left: 50%; bottom: 10px; transform: translateX(-50%);
  display: flex; gap: 8px; padding: 6px; background: rgba(17,17,17,0.6); border: 1px solid #3a3a3a; border-radius: 999px; backdrop-filter: blur(6px);
}
.hero-media__controls .pill {
  appearance: none; border: 1.5px solid #39FF14; background: transparent; color: #39FF14; font-weight: 600; font-size: 0.9rem;
  padding: 6px 10px; border-radius: 999px; cursor: pointer; transition: background-color .18s, color .18s, box-shadow .18s, transform .08s;
}
.hero-media__controls .pill:hover { transform: translateY(-1px); }
.hero-media__controls .pill.is-active { background: #39FF14; color: #111; box-shadow: 0 0 0 3px rgba(57,255,20,0.14); }
@media (prefers-reduced-motion: reduce) { .hero-media__item { animation: none !important; } }

/* ===== Buttons ===== */
.btn {
  --btn-green: #39FF14;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 8px 12px; border-radius: 10px; font-weight: 600; font-size: 0.95rem; line-height: 1.1; text-decoration: none;
  border: 1.5px solid var(--btn-green); color: var(--btn-green); background: transparent;
  transition: transform .12s, background-color .18s, color .18s, box-shadow .18s, border-color .18s;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 0 0 3px rgba(57,255,20,0.12); }
.btn:focus-visible { outline: 2px solid var(--btn-green); outline-offset: 2px; }
.btn.primary { background: var(--btn-green); color: #111; border-color: var(--btn-green); }
.btn.primary:hover { box-shadow: 0 0 0 3px rgba(57,255,20,0.15), 0 6px 22px rgba(57,255,20,0.18); }
.btn--sm { padding: 6px 10px; font-size: 0.9rem; border-radius: 8px; }
.btn--lg { padding: 12px 18px; font-size: 1rem;  border-radius: 12px; }
.service-card .btn { margin-top: 8px; }

/* ===== Services Preview, CTA, Footer ===== */
#services-preview { padding: 36px 16px; }
#services-title { text-align: center; }
.services-grid { display: grid; gap: 16px; margin: 18px auto 0; max-width: 1100px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.service-card { background: #2b2b2b; border: 1px solid #3a3a3a; border-radius: 10px; padding: 16px; }
.service-card h3 { color: #39FF14; margin-top: 0; }
.service-card .bullets { margin: 8px 0; padding-left: 18px; }
.service-card .bullets li { margin: 4px 0; color: #f2f2f2; }
.service-card p { color: #bdbdbd; }

#why-us, #cta { padding: 36px 16px; max-width: 1100px; margin: 0 auto; text-align: center; }

footer { margin-top: 40px; padding: 18px; text-align: center; color: #bdbdbd; border-top: 1px solid #3a3a3a; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  #hero { min-height: 42vh; }
  #hero h1 { font-size: 28px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) { .logo img { max-height: 60px; } }
@media (max-width: 640px) { .services-grid { grid-template-columns: 1fr; } }
