/* Restore menu visibility */
#main-navigation,
#main-navigation ul,
#main-navigation li,
.navbar-collapse,
.navbar-nav,
.primary-menu,
.main-navigation {
  display: block;
  visibility: visible;
  opacity: 1;
}

/* Hide cart only, not full nav */
#main-navigation .nav-cart > a,
#main-navigation .responsive-nav-cart > a,
.nav-cart a,
.responsive-nav-cart a {
  display: none !important;
}

/* Also hide empty cart list item spacing if needed */
#main-navigation li.nav-cart:empty,
#main-navigation li.responsive-nav-cart:empty {
  display: none !important;
}
/* --- DESKTOP CTA BUTTON (Screens wider than 768px) --- */
@media (min-width: 769px) {
  .menu-cta a {
    background-color: #e91e63;
    color: #ffffff !important;
    padding: 8px 18px !important;
    border-radius: 4px;
    line-height: 1.2 !important;
    margin-top: -2px;
    display: inline-block;
    transition: all 0.3s ease;
  }
  .menu-cta a:hover {
    background-color: #333333;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }
}

/* --- MOBILE CTA BUTTON (Screens 768px and down) --- */
@media (max-width: 768px) {
  .menu-cta {
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: center;
  }
  .menu-cta a {
    background-color: #e91e63;
    color: #ffffff !important;
    display: inline-block;
    padding: 10px 25px !important;
    border-radius: 4px;
  }
}




/* === ENTERPRISE HEADER (Albert) === */
/* Brand palette: navy #0f2747, green #4ade80 */

/* Solid white header, clean separation */
.navbar.navbar-default {
  background-color: #ffffff !important;
  box-shadow: 0 1px 4px rgba(15,39,71,0.10);
  min-height: 70px;
  padding: 0;
}
.navbar.navbar-default .container { min-height: 70px; }

/* Logo: constrain size, kill the giant image */
.navbar .navbar-brand {
  height: 70px !important;
  width: auto !important;
  display: flex !important;
  align-items: center;
  padding: 12px 0 !important;
}
.navbar .navbar-brand img,
.navbar .navbar-brand .custom-logo {
  max-height: 44px !important;
  width: auto !important;
  height: auto !important;
}
/* Hide any duplicate/second logo image in header */
.navbar .navbar-brand img ~ img,
.navbar .navbar-brand .custom-logo ~ img { display: none !important; }

/* Desktop: show inline menu, no full-screen hamburger */
@media (min-width: 769px) {
  .navbar.full-screen-menu .navbar-toggle,
  .navbar .navbar-toggle { display: none !important; }
  .navbar.full-screen-menu .navbar-collapse,
  .navbar .navbar-collapse {
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
    position: static !important;
    height: auto !important;
    width: auto !important;
    background: transparent !important;
    transform: none !important;
    visibility: visible !important;
    opacity: 1 !important;
    overflow: visible !important;
  }
  .navbar .navbar-nav {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    float: none !important;
    position: static !important;
    background: transparent !important;
  }
  .navbar .navbar-nav > li { float: none !important; }
  .navbar .navbar-nav > li > a {
    color: #0f2747 !important;
    font-weight: 600;
    font-size: 15px;
    padding: 10px 16px !important;
    line-height: 1.4 !important;
    transition: color .2s ease;
  }
  .navbar .navbar-nav > li > a:hover,
  .navbar .navbar-nav > li.active > a {
    color: #16a34a !important;
    background: transparent !important;
  }
}

/* CTA button -> brand green (override off-brand pink) */
@media (min-width: 769px) {
  .menu-cta a {
    background-color: #16a34a !important;
    color: #ffffff !important;
    border-radius: 6px !important;
  }
  .menu-cta a:hover {
    background-color: #0f2747 !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(15,39,71,0.18);
  }
}


/* === THIN BAR + REMOVE STRAY LOGO (Albert) === */
/* Remove stray loose image sitting in the header background */
header.header img.wp-image-9887,
.navbar img.wp-image-9887 { display: none !important; }

/* Force a thin, compact nav bar (~56px) */
header.header { min-height: 0 !important; height: auto !important; }
.navbar.navbar-default,
.navbar.navbar-default .container {
  min-height: 56px !important;
  height: 56px !important;
}
.navbar.navbar-default {
  display: flex !important;
  align-items: center;
}
.navbar .navbar-brand {
  height: 56px !important;
  padding: 8px 0 !important;
}
.navbar .navbar-brand img,
.navbar .navbar-brand .custom-logo {
  max-height: 36px !important;
}
.navbar .navbar-header { display: flex; align-items: center; height: 56px; }
@media (min-width: 769px) {
  .navbar .navbar-toggle { display: none !important; }
  .navbar .navbar-collapse {
    display: flex !important;
    align-items: center !important;
    height: 56px !important;
    min-height: 56px !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  .navbar .navbar-nav { display: flex !important; flex-direction: row !important; align-items: center; height: 56px; }
  .navbar .navbar-nav > li { display: flex; align-items: center; }
  .navbar .navbar-nav > li > a { padding: 8px 14px !important; line-height: 1.2 !important; }
}


/* === BAR ALIGN FIX (Albert) === */
@media (min-width: 769px) {
  /* Single-row flex header so menu sits beside the logo, vertically centered */
  .navbar.navbar-default > .container {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    height: 60px !important;
    min-height: 60px !important;
    flex-wrap: nowrap !important;
  }
  .navbar.navbar-default,
  .navbar.navbar-default .navbar-header {
    height: 60px !important;
    min-height: 60px !important;
  }
  .navbar .navbar-header { float: none !important; display: flex; align-items: center; }
  .navbar .navbar-collapse {
    float: none !important;
    flex: 1 1 auto !important;
    height: 60px !important;
    padding: 0 !important;
  }
  .navbar .navbar-nav {
    height: 60px !important;
    margin: 0 0 0 auto !important;
    float: none !important;
  }
}

/* === NOWRAP MENU FIX (Albert) === */
@media (min-width: 769px) {
  .navbar .navbar-collapse {
    max-height: 60px !important;
    overflow: visible !important;
    flex-wrap: nowrap !important;
  }
  .navbar .navbar-nav {
    max-height: 60px !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
  }
  .navbar .navbar-nav > li { white-space: nowrap; }
  .navbar .navbar-nav > li > a {
    white-space: nowrap !important;
    height: auto !important;
  }
  /* tighten spacing so all 6 items + CTA fit one row */
  .navbar .navbar-nav > li > a { padding: 8px 12px !important; font-size: 14px !important; }
}

/* === KILL NAV PADDING-TOP (Albert) === */
/* Hestia pushes the menu down with padding-top:100px (built for tall header). Zero it. */
@media (min-width: 769px) {
  .navbar .navbar-nav,
  .navbar.navbar-default .navbar-nav { padding-top: 0 !important; padding-bottom: 0 !important; }
}

/* === NAV POLISH (Albert) === */
/* Remove the "boring HTML" underlines on nav links */
.navbar .navbar-nav > li > a,
.navbar .navbar-nav > li > a:hover,
.navbar .navbar-nav > li > a:focus { text-decoration: none !important; }

@media (min-width: 769px) {
  /* Refined link styling with animated underline on hover */
  .navbar .navbar-nav > li > a {
    color: #0f2747 !important;
    font-weight: 600 !important;
    letter-spacing: .2px;
    position: relative;
    
  }
  .navbar .navbar-nav > li > a::after {
    content: "";
    position: absolute;
    left: 12px; right: 12px; bottom: 6px;
    height: 2px;
    background: #16a34a;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .2s ease;
  }
  .navbar .navbar-nav > li > a:hover { color: #16a34a !important; }
  .navbar .navbar-nav > li > a:hover::after,
  .navbar .navbar-nav > li.active > a::after { transform: scaleX(1); }

  /* CTA: real solid green pill button (target the btn list item too) */
  .navbar .navbar-nav > li.btn,
  .navbar .navbar-nav > li.menu-cta { display: flex; align-items: center; margin-left: 8px; }
  .navbar .navbar-nav > li.btn > a,
  .navbar .navbar-nav > li.menu-cta > a,
  .navbar .navbar-nav > li.btn-primary > a {
    background-color: #16a34a !important;
    color: #ffffff !important;
    border-radius: 8px !important;
    padding: 9px 20px !important;
    font-weight: 700 !important;
    box-shadow: 0 2px 6px rgba(22,163,74,0.25);
    transition: background-color .2s ease, transform .15s ease, box-shadow .2s ease;
    line-height: 1.1 !important;
  }
  .navbar .navbar-nav > li.btn > a::after,
  .navbar .navbar-nav > li.menu-cta > a::after { display: none !important; }
  .navbar .navbar-nav > li.btn > a:hover,
  .navbar .navbar-nav > li.menu-cta > a:hover,
  .navbar .navbar-nav > li.btn-primary > a:hover {
    background-color: #0f2747 !important;
    color: #ffffff !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(15,39,71,0.28);
  }
}

/* === CTA BG SPECIFICITY FIX (Albert) === */
@media (min-width: 769px) {
  .navbar.navbar-default .navbar-nav > li.btn > a,
  .navbar.navbar-default .navbar-nav > li.btn-primary > a,
  .navbar.navbar-default .navbar-nav > li.menu-cta > a,
  .navbar.navbar-default .navbar-nav > li.btn.active > a,
  .navbar.navbar-default .navbar-nav > li.btn > a:focus {
    background: #16a34a !important;
    background-color: #16a34a !important;
    color: #ffffff !important;
  }
  .navbar.navbar-default .navbar-nav > li.btn > a:hover,
  .navbar.navbar-default .navbar-nav > li.btn-primary > a:hover,
  .navbar.navbar-default .navbar-nav > li.menu-cta > a:hover {
    background: #0f2747 !important;
    background-color: #0f2747 !important;
    color: #ffffff !important;
  }
}

/* === GLOBAL FOOTER (Albert) === */
footer.footer,
footer.footer-big {
  background-color: #082868 !important;
  color: rgba(255,255,255,0.85) !important;
  padding: 40px 20px !important;
}
footer.footer .container {
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1250px;
  margin: 0 auto;
}
/* Link list: horizontal, no bullets */
footer.footer ul {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}
footer.footer ul li { margin: 0 !important; padding: 0 !important; list-style: none !important; }
footer.footer ul li::before { display: none !important; content: none !important; }
footer.footer a {
  color: rgba(255,255,255,0.85) !important;
  text-decoration: none !important;
  font-weight: 600;
  font-size: 15px;
  transition: color .2s ease;
}
footer.footer a:hover { color: #16a34a !important; }
/* Copyright */
footer.footer .copyright,
footer.footer p,
footer.footer .text-right {
  color: rgba(255,255,255,0.6) !important;
  font-size: 14px !important;
  margin: 0 !important;
}
@media (max-width: 768px){
  footer.footer .container { flex-direction: column; text-align: center; gap: 18px; }
  footer.footer ul { justify-content: center; gap: 16px; }
}

/* footer applied */