/* Bohollander IT Solutions — Public Theme */
:root {
  --brand: #0a3d45;
  --brand-deep: #062a30;
  --brand-soft: #124e58;
  --accent: #e85d04;
  --accent-hover: #d45203;
  --sand: #f3efe6;
  --mist: #e8f1f2;
  --ink: #1a2426;
  --muted: #5c6b6e;
  --line: rgba(10, 61, 69, 0.12);
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 18px 50px rgba(6, 42, 48, 0.12);
  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.bh-body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--accent); }

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

/* Nav */
.bh-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
  background: rgba(243, 239, 230, 0.88);
  border-bottom: 1px solid var(--line);
}

.bh-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 1rem;
}

.bh-brand {
  display: flex;
  flex-direction: column;
  gap: .1rem;
  font-family: var(--font-display);
  color: var(--brand-deep);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.bh-brand span {
  font-size: .72rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.bh-menu {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.bh-menu a {
  color: var(--ink);
  font-weight: 600;
  font-size: .95rem;
}

.bh-menu a.active,
.bh-menu a:hover { color: var(--accent); }

.bh-nav-actions { display: flex; align-items: center; gap: .6rem; }

.bh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .75rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .92rem;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.bh-btn:hover { transform: translateY(-1px); }

.bh-btn-primary {
  background: var(--accent);
  color: var(--white);
}
.bh-btn-primary:hover { background: var(--accent-hover); color: var(--white); }

.bh-btn-dark {
  background: var(--brand);
  color: var(--white);
}
.bh-btn-dark:hover { background: var(--brand-deep); color: var(--white); }

.bh-btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--brand);
}
.bh-btn-ghost:hover { border-color: var(--brand); color: var(--brand); }

.bh-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 1.5rem;
  color: var(--brand);
  cursor: pointer;
}

/* Hero / Slideshow */
.bh-hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
  background: var(--brand-deep);
}

.bh-slides {
  position: absolute;
  inset: 0;
}

.bh-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1s ease, transform 6s ease;
}

.bh-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.bh-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(6, 42, 48, 0.88) 15%, rgba(10, 61, 69, 0.55) 55%, rgba(232, 93, 4, 0.28) 100%);
  z-index: 1;
}

.bh-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 120px;
  background: linear-gradient(to top, var(--sand), transparent);
  pointer-events: none;
  z-index: 2;
}

.bh-hero-content {
  position: relative;
  z-index: 3;
  padding: 7rem 0 5rem;
  max-width: 720px;
}

.bh-btn-on-dark {
  border-color: rgba(255,255,255,.35) !important;
  color: #fff !important;
}

.bh-slide-dots {
  display: flex;
  gap: .55rem;
  margin-top: 1.75rem;
}

.bh-slide-dots button {
  width: 2.25rem;
  height: .35rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.35);
  cursor: pointer;
  padding: 0;
  transition: background .2s ease, width .2s ease;
}

.bh-slide-dots button.is-active {
  width: 3rem;
  background: var(--accent);
}

.bh-hero .bh-brand-mark {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 0 0 1rem;
}

.bh-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 500;
  line-height: 1.35;
  margin: 0 0 1rem;
  max-width: 34ch;
}

.bh-hero p {
  font-size: 1.05rem;
  opacity: .92;
  max-width: 48ch;
  margin: 0 0 1.75rem;
}

.bh-hero-cta { display: flex; flex-wrap: wrap; gap: .75rem; }

/* Sections */
.bh-section { padding: 5rem 0; }
.bh-section-alt { background: linear-gradient(180deg, #efe9dd 0%, var(--mist) 100%); }

.bh-kicker {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .75rem;
}

.bh-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  letter-spacing: -0.03em;
  margin: 0 0 .75rem;
  color: var(--brand-deep);
}

.bh-lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 58ch;
  margin: 0 0 2.5rem;
}

.bh-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.bh-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.bh-service {
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
}

.bh-service h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 .5rem;
  color: var(--brand);
}

.bh-service p {
  margin: 0;
  color: var(--muted);
  font-size: .97rem;
}

.bh-service-img {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1rem;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.bh-service-img img {
  width: 120px;
  height: 90px;
  object-fit: cover;
  border-radius: 10px;
}

.bh-card-media {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(6, 42, 48, 0.06);
  transition: transform .25s ease, box-shadow .25s ease;
}

.bh-card-media:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.bh-card-media > img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.bh-card-media-body {
  padding: 1.15rem 1.25rem 1.35rem;
}

.bh-card-media-body h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 .45rem;
  color: var(--brand);
}

.bh-card-media-body p {
  margin: 0;
  color: var(--muted);
  font-size: .97rem;
}

.bh-media-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--mist);
}

.bh-media-frame img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.bh-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.bh-panel {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.bh-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.bh-stat {
  text-align: left;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}

.bh-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--brand);
  letter-spacing: -0.03em;
}

.bh-stat span { color: var(--muted); font-size: .9rem; }

/* News */
.bh-post {
  display: block;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .25s ease, box-shadow .25s ease;
  color: inherit;
}

.bh-post:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  color: inherit;
}

.bh-post > img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}
.bh-post-body { padding: 1.25rem; }
.bh-post-meta {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .4rem;
}
.bh-post h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0 0 .5rem;
  color: var(--brand-deep);
}
.bh-post p { margin: 0; color: var(--muted); font-size: .95rem; }

/* Pricing */
.bh-price {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  overflow: hidden;
}
.bh-price-img {
  width: calc(100% + 3.5rem);
  max-width: none;
  height: 140px;
  object-fit: cover;
  margin: -1.75rem -1.75rem 1.1rem;
}
.bh-price.featured {
  background: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}
.bh-price h3 {
  font-family: var(--font-display);
  margin: 0 0 .35rem;
}
.bh-price .amount {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  margin: .75rem 0;
}
.bh-price ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
}
.bh-price li {
  padding: .45rem 0;
  border-top: 1px solid rgba(255,255,255,.15);
}
.bh-price:not(.featured) li { border-top-color: var(--line); }

/* Forms */
.bh-form label {
  display: block;
  font-weight: 600;
  margin-bottom: .35rem;
  font-size: .9rem;
}
.bh-form .form-control,
.bh-form input,
.bh-form textarea,
.bh-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: .75rem .9rem;
  font: inherit;
  background: var(--white);
  margin-bottom: 1rem;
}
.bh-form textarea { min-height: 140px; resize: vertical; }

.bh-alert {
  padding: .9rem 1rem;
  border-radius: 10px;
  margin-bottom: 1rem;
}
.bh-alert-success { background: #e4f6ea; color: #146c2e; }
.bh-alert-error { background: #fde8e4; color: #9b1c1c; }

/* Map */
#bh-map {
  width: 100%;
  height: 360px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--mist);
}

/* Page banner */
.bh-page-banner {
  padding: 4.5rem 0 3rem;
  background-color: var(--brand-deep);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--white);
}
.bh-page-banner h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 .5rem;
  letter-spacing: -0.03em;
}
.bh-page-banner p { margin: 0; opacity: .9; max-width: 50ch; }

/* Auth */
.bh-auth {
  max-width: 460px;
  margin: 3rem auto;
}

/* Footer */
.bh-footer {
  background: var(--brand-deep);
  color: rgba(255,255,255,.82);
  padding: 3.5rem 0 1.5rem;
}
.bh-skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--brand);
  color: #fff;
  padding: .75rem 1rem;
  z-index: 2000;
  border-radius: 0 0 8px 0;
}
.bh-skip-link:focus {
  left: 0;
}
.bh-footer-heading {
  font-family: var(--font-display);
  color: var(--white);
  margin: 0 0 1rem;
  font-size: 1.05rem;
}
.bh-breadcrumb {
  font-size: .9rem;
  margin-bottom: 1rem;
  opacity: .9;
}
.bh-breadcrumb a { color: #fff; text-decoration: underline; }
.bh-footer a { color: rgba(255,255,255,.82); }
.bh-footer a:hover { color: var(--accent); }
.bh-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.bh-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .9rem;
}

.bh-prose h2, .bh-prose h3 { font-family: var(--font-display); color: var(--brand-deep); }
.bh-prose p { color: var(--muted); }

@media (max-width: 960px) {
  .bh-grid-3, .bh-grid-2, .bh-split, .bh-footer-grid, .bh-stat-row {
    grid-template-columns: 1fr;
  }
  .bh-service-img {
    grid-template-columns: 1fr;
  }
  .bh-service-img img {
    width: 100%;
    height: 160px;
  }
  .bh-toggle { display: block; }
  .bh-menu {
    display: none;
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: 74px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1rem;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: var(--shadow);
  }
  .bh-menu.open { display: flex; }
  .bh-nav-actions .bh-btn-ghost { display: none; }
}
