/* BYOBO$$ Consulting — Base Stylesheet
   Drop-in replacement for the placeholder file.
   Path expected: assets/css/style.css
*/

/* -----------------------------
   CSS Reset / Base
------------------------------*/
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  color: #0f172a;
  background: #ffffff;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }
:focus-visible { outline: 2px solid #2563eb; outline-offset: 3px; }

.container {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.section { padding: 3.25rem 0; }
.hr { border: 0; border-top: 1px solid #e5e7eb; margin: 1.5rem 0; }
.muted { color: #475569; }
.smallprint { font-size: 0.9rem; color: #64748b; }

/* Typography helpers used in the HTML */
.h1 { font-size: clamp(2rem, 2.8vw, 3rem); line-height: 1.1; margin: 0 0 .75rem; letter-spacing: -0.02em; }
.h2 { font-size: clamp(1.35rem, 1.8vw, 1.75rem); line-height: 1.2; margin: 0 0 .75rem; letter-spacing: -0.01em; }
.lead { font-size: 1.05rem; color: #334155; margin: 0; }
.kicker { font-weight: 700; text-transform: uppercase; letter-spacing: .08em; font-size: .82rem; color: #0f172a; margin: 0 0 .5rem; }
.p { margin: 0.6rem 0; }
.ul { margin: .75rem 0 0; padding-left: 1.1rem; color: #334155; }
.ul li { margin: .35rem 0; }

/* -----------------------------
   Skip link
------------------------------*/
.skip-link {
  position: absolute;
  left: -999px;
  top: 0.5rem;
  background: #0f172a;
  color: #fff;
  padding: .6rem .8rem;
  border-radius: .5rem;
  z-index: 1000;
}
.skip-link:focus { left: 0.75rem; }

/* -----------------------------
   Topbar / Navigation
------------------------------*/
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e5e7eb;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .85rem 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.brand-img {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid #e5e7eb;
}

.navlinks {
  display: flex;
  align-items: center;
  gap: .9rem;
  flex-wrap: wrap;
}
.navlinks a {
  font-weight: 600;
  color: #0f172a;
  padding: .4rem .55rem;
  border-radius: .65rem;
}
.navlinks a.active,
.navlinks a:hover {
  background: #f1f5f9;
  text-decoration: none;
}

/* Mobile panel (shown/hidden via JS) */
.mobile-panel { display: none; border-top: 1px solid #e5e7eb; background: #ffffff; }
.mobile-panel .inner { padding: 1rem 0 1.25rem; display: grid; gap: .35rem; }
.mobile-panel a { padding: .55rem .6rem; border-radius: .65rem; font-weight: 600; color: #0f172a; }
.mobile-panel a:hover { background: #f1f5f9; text-decoration: none; }
.mobile-panel .row { display: flex; gap: .6rem; flex-wrap: wrap; margin-top: .5rem; }

/* If your JS adds .open to #mobile-panel */
.mobile-panel.open { display: block; }

/* -----------------------------
   Buttons / Badges
------------------------------*/
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  border-radius: .9rem;
  padding: .8rem 1rem;
  border: 1px solid #cbd5e1;
  background: #ffffff;
  color: #0f172a;
  font-weight: 700;
  text-decoration: none;
}
.btn:hover { background: #f8fafc; text-decoration: none; }
.btn.primary {
  background: #0f172a;
  border-color: #0f172a;
  color: #ffffff;
}
.btn.primary:hover { background: #111827; }
.btn.small { padding: .55rem .75rem; font-size: .95rem; border-radius: .8rem; }

.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: .25rem .6rem;
  font-size: .8rem;
  font-weight: 700;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  color: #0f172a;
}

/* -----------------------------
   Hero
------------------------------*/
.hero {
  padding: 3.25rem 0 2rem;
  background: radial-gradient(1200px 400px at 50% 0%, #f1f5f9 0%, #ffffff 60%);
}
.hero .head {
  display: grid;
  gap: 1rem;
  align-items: start;
}
.cta-row { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: .75rem; }

/* -----------------------------
   Cards / Grids / Panels
------------------------------*/
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.cols {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 1.25rem;
  align-items: start;
}
.card, .panel {
  border: 1px solid #e5e7eb;
  border-radius: 1.25rem;
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.04);
}
.card { padding: 1.15rem; }
.panel { padding: 1.15rem; background: #f8fafc; }
.feature { display: grid; gap: .35rem; }
.row { display: flex; gap: .75rem; flex-wrap: wrap; align-items: center; }

/* -----------------------------
   Footer
------------------------------*/
.footer {
  border-top: 1px solid #e5e7eb;
  padding: 2.25rem 0;
  background: #0b1220;
  color: #e2e8f0;
}
.footer a { color: #e2e8f0; }
.footer a:hover { text-decoration: underline; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.25rem;
  align-items: start;
}
.footer .muted { color: #cbd5e1; }
.footer .brand { color: #ffffff; }
.footer .badge { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); color: #e2e8f0; }

/* -----------------------------
   Responsive
------------------------------*/
@media (max-width: 980px) {
  .grid-3 { grid-template-columns: 1fr; }
  .cols { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .navlinks { display: none; } /* rely on mobile panel */
  /* If you have a hamburger button in other pages, keep it visible there */
}


/* -----------------------------
   BYOBOSS Header Hero Image
   (Put Up or Shut Up banner)
------------------------------*/
.byoboss-hero{
  width:100%;
  margin:0;
}
.byoboss-hero img{
  width:100%;
  height: clamp(220px, 34vw, 460px);
  object-fit: cover;
  display:block;
}

