                     /* Mobile - Tablet (Below 992px) */
@media (max-width: 992px) {



  /* Hide desktop nav */
  .husak-nav-menu {
    display: none !important;
  }

  .husak-nav-toggle {
    display: flex !important;
    position: absolute;
    left: 20px;
    top: 18px;
    font-size: 32px !important;
    z-index: 10002 !important;
  }

  .husak-navbar {
    background: #000 !important;
  }

  /* SLIDE MENU */
  .husak-mobile-menu {
    position: fixed !important;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.95);
    padding-top: 100px;
    transition: left 0.4s ease;
    z-index: 10001 !important;
    overflow-y: auto;
  }

  .husak-mobile-menu.open {
    left: 0;
  }

  .husak-mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .husak-mobile-menu ul li {
    padding: 18px 25px;
    text-align: left;
  }

  .husak-mobile-menu ul li a {
    color: #c9a485;
    font-size: 18px;
    text-decoration: none;
    font-weight: 600;
  }

  /* Logo centered */
  .husak-nav-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10004;
  }

  body.menu-open {
    overflow: hidden;
  }
}

/* DESKTOP (993px and above) */
@media (min-width: 993px) {
  .husak-nav-menu {
    display: flex !important;
  }
  
  .husak-nav-toggle,
  .husak-mobile-menu {
    display: none !important;
  }
}

/* Base Navbar */
.husak-navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 9999;
  background-color: rgba(0,0,0,0.55);
  transition: background-color .3s ease;
}

/* Scroll Effect */
.husak-navbar.scrolled {
  background-color: #000 !important;
}

/* Navbar Container */
.husak-nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 50px;
  padding: 0 40px;
}

/* Logo */
.husak-nav-logo img {
  height: 52px;
}

/* Desktop Menu */
.husak-nav-menu {
  display: flex;
}

.husak-nav-links {
  display: flex;
  gap: 35px;
}

.husak-nav-item a {
  color: #c9a485;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: .08em;
}

/* Hamburger Toggle Updated */
.husak-nav-toggle {
  display: none;
  width: 58px;
  height: 45px;
  justify-content: space-between;
  flex-direction: column;
  cursor: pointer;
  z-index: 10005;
  padding: 10px 12px;
  margin-left: -10px;
  margin-top: 5px;
}

/* Hamburger Lines */
.husak-nav-toggle span {
  width: 100%;
  height: 3px;
  background: #c9a485;
  border-radius: 2px;
  transition: 0.35s ease;
}

/* Turn into X when active */
.husak-nav-toggle.active span:nth-child(1) {
  transform: translateY(13px) rotate(45deg);
}

.husak-nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.husak-nav-toggle.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}
          
                   /* Desktop WhatsApp Floating */
.wp-desktop {
  position: fixed;
  right: 28px;
  bottom: 28px;
  background: #4b4b4b;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 45px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  z-index: 99999;
}

.wp-desktop:hover { background: #3c3c3c; }

/* Mobile Bottom Bar */
.bottom-bar {
  display: none;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 56px;
  background: #4b4b4b;
  z-index: 99999;
  display: flex;
}

.bar-btn {
  flex: 1;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-right: 1px solid rgba(255,255,255,0.3);
}

.bar-btn:last-child {
  border-right: none;
}

.bar-btn:hover {
  background: #3c3c3c;
}

/* Icons */
.icon {
  width: 18px;
  height: 18px;
  /*filter: brightness(0) invert(1);*/
}

/* Show/Hide Rules */
@media (max-width: 992px) {
  .wp-desktop { display: none !important; }
  .bottom-bar { display: flex !important; }
}

@media (min-width: 993px) {
  .bottom-bar { display: none !important; }
  .wp-desktop { display: flex !important; }
}
                   /* Desktop WhatsApp Floating */
.wp-desktop {
  position: fixed;
  right: 28px;
  bottom: 28px;
  background: #4b4b4b;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 45px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  z-index: 99999;
}

.wp-desktop:hover { background: #3c3c3c; }

/* Mobile Bottom Bar */
.bottom-bar {
  display: none;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 56px;
  background: #4b4b4b;
  z-index: 99999;
  display: flex;
}

.bar-btn {
  flex: 1;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-right: 1px solid rgba(255,255,255,0.3);
}

.bar-btn:last-child {
  border-right: none;
}

.bar-btn:hover {
  background: #3c3c3c;
}

/* Icons */
.icon {
  width: 18px;
  height: 18px;
  /*filter: brightness(0) invert(1);*/
}

/* Show/Hide Rules */
@media (max-width: 992px) {
  .wp-desktop { display: none !important; }
  .bottom-bar { display: flex !important; }
}

@media (min-width: 993px) {
  .bottom-bar { display: none !important; }
  .wp-desktop { display: flex !important; }
}
          
    
/* Base footer styling */
.husak-footer {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #000;
    font-size: 14px;
}

.husak-footer-logo {
    max-width: 250px;
}

/* Section titles */
.husak-footer-title {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
}

/* About text (gold tone) */
.husak-footer-about {
    color: #C9A485;
    line-height: 1.8;
    margin-bottom: 16px;
}

/* Links */
.husak-footer a {
    color: #C9A485;
    text-decoration: none;
    transition: color 0.25s ease;
}

.husak-footer a:hover {
    color: #fff;
}

/* Communities list */
.husak-footer-list li {
    margin-bottom: 8px;
    font-weight: 500;
}

/* Social icons */
.husak-footer-social img {
    display: inline-block;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.husak-footer-social a:hover img {
    transform: scale(1.15);
    filter: brightness(1.4);
}

/* Contact info */
.husak-footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.husak-footer-contact i {
    color: #C9A485;
    font-size: 18px;
    margin-top: 2px;
}

/* Divider */
.husak-footer-divider {
/*    border-color: #C9A485;*/
}

/* Bottom bar */
.husak-footer-bottom a {
    font-size: 13px;
    font-weight: 500;
}

.husak-footer-bottom span {
    font-size: 13px;
}

/* Mobile tweaks */
/* ---- MOBILE FOOTER FIX ---- */
/* STACK FOOTER COLUMNS ON SMALL SCREENS */
@media (max-width: 767.98px) {

  /* This is the row that has the 3 columns (About / Communities / Contact) */
  .husak-footer .row.gy-4 {
      display: block !important;          /* kill flex row */
  }

  .husak-footer .row.gy-4 > div {
      float: none !important;
      width: 100% !important;
      max-width: 100% !important;
      flex: 0 0 100% !important;
      margin-bottom: 40px;               /* space between blocks */
  }

  /* Nice spacing + alignment for mobile */
  .husak-footer-title {
      margin-bottom: 15px;
  }

  .husak-footer-social {
      justify-content: flex-start !important;
      margin-top: 10px;
  }

  .husak-footer-contact li {
      align-items: flex-start;
  }

  .husak-footer-bottom {
      text-align: center !important;
      margin-top: 10px;
  }

  .husak-footer-bottom .col-12,
  .husak-footer-bottom .col-md-4 {
      justify-content: center !important;
  }
}



