/* BYOBO$$ Consulting — Base Stylesheet
   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;
}

/* -----------------------------
   Header Image Banner
------------------------------*/
.hero {
  position: relative;
  padding: 0;
  background: #0b1220 url("../img/header.png?v=20260217") center / cover no-repeat;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(11, 18, 32, 0.65) 0%,
    rgba(11, 18, 32, 0.35) 50%,
    rgba(11, 18, 32, 0.1) 100%
  );
}

.hero .head {
  position: relative;
  padding: 3rem 0 2.5rem;
  color: #ffffff;
}

.hero .h1,
.hero .h2 {
  color: #ffffff;
  text-shadow: 0 2px 18px rgba(0,0,0,0.35);
}

/* -----------------------------
   Buttons
------------------------------*/
.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;
}
.btn.primary {
  background: #ffffff;
  color: #0f172a;
}

/* -----------------------------
   Responsive
------------------------------*/
@media (max-width: 980px) {
  .hero .head {
    padding: 2rem 0 1.75rem;
  }
}


/* --- Banner Image Size Fix --- */
img {
    max-width: 100%;
    height: auto;
}

.hero img,
.header img,
.banner img {
    max-width: 100%;
    height: auto;
    display: block;
}


/* --- Banner Height Constraint Fix --- */
.hero img,
.header img,
.banner img {
    max-height: 420px;
    object-fit: contain;
}


/* --- BYOBO$$ Header Banner Scaling (reduce height by reducing width) --- */
.byoboss-hero {
  text-align: center;
}

.byoboss-hero img {
  width: 82%;
  max-width: 1200px;
  height: auto;
  display: block;
  margin: 0 auto;
}


/* --- Ensure BYOBO$$ banner is perfectly centered --- */
.byoboss-hero {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.byoboss-hero img {
  width: 82%;
  max-width: 1200px;
  height: auto;
}
