/* ================================
   HEADER VISIBILITY CONTROL
================================ */
.header-mobile {
  display: none;
}

.header-desktop {
  display: block;
}

/*************************************************
  TOP BAR (DESKTOP ONLY)
*************************************************/
.header-desktop .top-bar {
  width: 100%;
  background: #fff;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  font-size: 15px;
}

.header-desktop .top-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 12px;
  height: 40px;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-desktop .top-bar a {
  color: #000;
  text-decoration: none;
}

.header-desktop .top-bar a:hover {
  text-decoration: underline;
}

.header-desktop .top-bar-left,
.header-desktop .top-bar-right {
  display: flex;
  align-items: center;
  gap: 6px;
}

.header-desktop .icon {
  font-size: 15px;
  line-height: 1;
  color: #000;
}

.header-desktop .divider {
  margin: 0 6px;
  color: #999;
}

/*************************************************
  SOCIAL ICONS (DESKTOP ONLY)
*************************************************/
.header-desktop .social-icons {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-desktop .social-item {
  width: 24px;
  height: 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #000;
  text-decoration: none;
}

.header-desktop .social-item i {
  font-size: 15px;
  line-height: 1;
}

.header-desktop .social-item .fa-stack {
  width: 15px;
  height: 15px;
  line-height: 15px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.header-desktop .social-item .fa-stack .fa-circle {
  font-size: 15px;
}

.header-desktop .social-item .fa-stack .fa-facebook-f {
  font-size: 9px;
}

/*************************************************
  MAIN NAVIGATION (DESKTOP ONLY)
*************************************************/
.header-desktop .main-nav {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #ccc;
}

.header-desktop .main-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 12px;
  min-height: 100px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-desktop .nav-logo img {
  height: 75px;
  width: auto;
  display: block;
}

.header-desktop .nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;

  display: flex;
  align-items: center;
  gap: 24px;
}

.header-desktop .nav-menu li {
  position: relative;
}

.header-desktop .nav-menu a {
  display: flex;
  align-items: center;

  padding: 8px 0;
  font-size: 15px;
  white-space: nowrap;

  color: #000;
  text-decoration: none;
}

.header-desktop .nav-menu a:hover {
  text-decoration: underline;
}

.header-desktop .has-dropdown > a {
  gap: 6px;
}

/*************************************************
  DROPDOWNS (DESKTOP ONLY)
*************************************************/
.header-desktop .dropdown {
  position: absolute;
  top: 100%;
  left: 0;

  min-width: 180px;
  background: #fff;
  border: 1px solid #ccc;

  display: none;
  z-index: 1000;
}

.header-desktop .dropdown li a {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
}

.header-desktop .dropdown li a:hover {
  background: #f5f5f5;
}

.header-desktop .has-dropdown:hover > .dropdown {
  display: block;
}

/*************************************************
  LEGAL LINK
*************************************************/
.header-desktop .nav-legal a {
  font-size: 13px;
  color: #555;
}

/*************************************************
  HAMBURGER (DESKTOP DISABLED)
*************************************************/
.header-desktop .nav-toggle {
  display: none;
}

.member-login-btn {
  margin-left: 20px;            /* 🔑 distance from YouTube icon */
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;

  background-color: #5a3a1e;    /* matches your footer tone */
  border-radius: 4px;
  text-decoration: none;
  white-space: nowrap;

  transition: background-color 0.2s ease;
}

.member-login-btn:hover {
  background-color: #3f2814;
}
.header-desktop .top-bar a.member-login-btn {
  color: #fff;
}






/*******************************************************************







                    MOBILE










******************************************************************/




/* ================================
   MOBILE VISIBILITY SWITCH
================================ */
@media (max-width: 768px) {
  .header-desktop {
    display: none;
  }

  .header-mobile {
    display: block;
  }
}

@media (max-width: 768px) {
    
 .header-mobile {
    border: 1px solid rgba(90, 58, 30, 0.5);
    border-radius: 3px;
  }

/* =========================================================
   MOBILE HEADER WRAPPER (SCOPED)
========================================================= */
.header-mobile {
  width: 100%;
  background: #fff;
}

/* =========================================================
   MAIN NAV (LOGO + HAMBURGER)
========================================================= */
.header-mobile .main-nav {
  width: 100%;
  border-bottom: 1px solid #ccc;
}

.header-mobile .main-nav-inner {
  min-height: 64px;
  padding: 0 16px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.header-mobile .nav-logo img {
  height: 45px;
  display: block;
}

/* Hamburger */
.header-mobile .nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;

  background: none;
  border: none;
  cursor: pointer;
}

.header-mobile .nav-toggle span {
  width: 26px;
  height: 3px;
  background: #000;
  display: block;
}

/* =========================================================
   COLLAPSIBLE TOP BAR
========================================================= */
.header-mobile .top-bar {
  display: none;
  border-bottom: 1px solid #ccc;
}

.header-mobile.open .top-bar {
  display: block;
}

.header-mobile .top-bar-inner {
  padding: 16px;

  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}

.header-mobile .top-bar-left,
.header-mobile .top-bar-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.header-mobile .top-bar a {
  text-decoration: none;
  color: #000;
}

/* Remove desktop divider */
.header-mobile .divider {
  display: none;
}

/* Social icons */
.header-mobile .social-icons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

/* Mobile HR */
.header-mobile .mobile-hr {
  width: 60%;
  height: 1px;
  background: #ccc;
  border: none;
  margin: 10px auto;
}

/* =========================================================
   COLLAPSIBLE NAV MENU
========================================================= */
.header-mobile .nav-menu {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;

  background: #fff;
  border-top: 1px solid #ccc;
}

.header-mobile.open .nav-menu {
  display: block;
}

.header-mobile .nav-menu li {
  border-bottom: 1px solid #eee;
}

.header-mobile .nav-menu li:last-child {
  border-bottom: none;
}

.header-mobile .nav-menu a {
  display: block;
  padding: 14px 16px;
  color: #000;
  text-decoration: none;
}

/* =========================================================
   DROPDOWNS (TAP ONLY)
========================================================= */
.header-mobile .dropdown {
  display: none;
  background: #f9f9f9;
}

.header-mobile .has-dropdown.open > .dropdown {
  display: block;
}

.header-mobile .dropdown a {
  padding-left: 36px;
}

.header-mobile .nav-toggle {
  position: relative;
  z-index: 1001;
}

.header-mobile .main-nav {
  position: relative;
  z-index: 1000;
}

/* ================================
   MEMBER LOGIN – MOBILE
================================ */

.header-mobile .mobile-login-btn {
  margin-left: auto;              /* push toward the right */
  margin-right: 19px;

  padding: 6px 12px;
  font-size: 13px;
  font-weight: 600;

  color: #fff;
  background-color: #5a3a1e;
  border-radius: 4px;
  text-decoration: none;
  white-space: nowrap;
}

.header-mobile .mobile-login-btn:hover {
  background-color: #3f2814;
}


}

