/* ================================================================
   BATHOS — DIVISIONS DROPDOWN NAV
   Add this block at the END of css/style.css
   ================================================================ */

/* ── Dropdown container ── */
.bh-nav__item--drop {
  position: relative;
}

/* The caret icon after Divisions */
.dd-chevron {
  display: inline-block;
  width: 0; height: 0;
  border-left:  4px solid transparent;
  border-right: 4px solid transparent;
  border-top:   4px solid currentColor;
  margin-left:  5px;
  vertical-align: middle;
  transition: transform 0.25s;
}
.bh-nav__item--drop:hover .dd-chevron {
  transform: rotate(180deg);
}

/* ── Dropdown panel ── */
.bh-nav__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: rgba(11,21,32,0.97);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  list-style: none;
  padding: 14px 0 8px; /* 14px top bridges the hover gap, 8px bottom for inner spacing */
  box-shadow: 0 16px 48px rgba(0,0,0,0.45);
  /* Hidden by default */
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  z-index: 999;
  pointer-events: none;
}

/* Arrow tip at top */
.bh-nav__dropdown::before {
  content: '';
  position: absolute;
  top: 8px; /* adjusted for padding-top bridge */
  left: 50%;
  transform: translateX(-50%);
  border-left:  6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid rgba(255,255,255,0.08);
}

/* Show on hover */
.bh-nav__item--drop:hover .bh-nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%);
  pointer-events: auto;
}

/* Dropdown links */
.bh-nav__dropdown li a {
  display: block;
  padding: 10px 20px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s, background 0.2s, padding-left 0.2s;
  white-space: nowrap;
}
.bh-nav__dropdown li a:hover {
  color: var(--gold-lt);
  background: rgba(255,255,255,0.04);
  padding-left: 26px;
}
.bh-nav__dropdown li a::after { display: none !important; }

/* Active item in dropdown */
.bh-nav__dropdown .dd-active {
  color: var(--gold-lt) !important;
}

/* Divider line between "All" and individual divisions */
.dd-divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin: 6px 16px;
}

/* Division icons in dropdown */
.bh-nav__dropdown .dd-icon {
  margin-right: 8px;
  font-style: normal;
}

/* ── Light nav dropdown (inner pages) ── */
.bh-nav--light .bh-nav__dropdown {
  background: rgba(255,255,255,0.98);
  border-color: rgba(11,21,32,0.08);
  box-shadow: 0 16px 48px rgba(11,21,32,0.12);
}
.bh-nav--light .bh-nav__dropdown::before {
  border-bottom-color: rgba(11,21,32,0.08);
}
.bh-nav--light .bh-nav__dropdown li a {
  color: var(--stone);
}
.bh-nav--light .bh-nav__dropdown li a:hover {
  color: var(--gold);
  background: var(--cream);
}
.bh-nav--light .bh-nav__dropdown .dd-active {
  color: var(--gold) !important;
}
.bh-nav--light .dd-divider {
  background: var(--line);
}
.bh-nav--light .dd-chevron {
  border-top-color: var(--stone);
}
.bh-nav--light .bh-nav__item--drop:hover > a {
  color: var(--gold);
}

/* ── Mobile nav — add divisions list ── */
.bh-mobile-nav .mob-div-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 100%;
}
.bh-mobile-nav .mob-div-list a {
  font-family: var(--sans, 'Outfit', sans-serif);
  font-size: 14px !important;
  font-weight: 400;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.45) !important;
}
.bh-mobile-nav .mob-div-list a:hover {
  color: var(--gold-lt) !important;
}
.bh-mobile-nav .mob-divider {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.1);
}

/* ── Division page hero colour bands ── */
.bh-page-hero--seafood    { background: linear-gradient(135deg, #071824 0%, #0d2535 100%); }
.bh-page-hero--petroleum  { background: linear-gradient(135deg, #0f1c0a 0%, #1a2e10 100%); }
.bh-page-hero--minerals   { background: linear-gradient(135deg, #12100a 0%, #231e0f 100%); }
.bh-page-hero--fertilizers{ background: linear-gradient(135deg, #0a1408 0%, #152210 100%); }
.bh-page-hero--chemicals  { background: linear-gradient(135deg, #110a18 0%, #1e1028 100%); }
.bh-page-hero--polymers   { background: linear-gradient(135deg, #0a1018 0%, #101828 100%); }

/* ── Back-to-divisions nav strip ── */
.bh-div-breadcrumb {
  background: var(--ink);
  padding: 14px 6%;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.bh-div-breadcrumb a {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s;
}
.bh-div-breadcrumb a:hover { color: var(--gold-lt); }
.bh-div-breadcrumb__sep {
  color: rgba(255,255,255,0.2);
  font-size: 10px;
}
.bh-div-breadcrumb__current {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-lt);
}

/* ── Division page: next/prev strip ── */
.bh-div-nav-strip {
  background: var(--ink);
  display: flex;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.bh-div-nav-btn {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 6%;
  text-decoration: none;
  transition: background 0.3s;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.bh-div-nav-btn:last-child { border-right: none; justify-content: flex-end; }
.bh-div-nav-btn:hover { background: rgba(255,255,255,0.03); }
.bh-div-nav-btn__label {
  font-size: 9.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  display: block;
  margin-bottom: 4px;
}
.bh-div-nav-btn__name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
}
.bh-div-nav-btn__icon { font-size: 24px; }
.bh-div-nav-btn--right { text-align: right; }
.bh-div-nav-btn--right .bh-div-nav-btn__arrow { order: 1; }
