/*=- /Content/Layouts/Clean/stylesheets/site-header.css -=*/

@charset "UTF-8";
/* =========================
   DESKTOP 
========================= */

.design-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.site-menu,
.site-links {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
}
/* Hide close button on desktop */

.menu-close-btn {
  display: none;
}
/* =========================
   MOBILE
========================= */

@media (max-width: 991px) {
  .design-header {
    flex-wrap: wrap;
  }
  /* Hamburger toggle */
  
  .menu-toggle {
    display: block;
    order: 2;
    margin-left: 15px;
  }
  /* Keep login/signup visible */
  
  .site-links {
    order: 3;
    display: flex !important;
    gap: 15px;
    margin-left: auto;
    flex-wrap: wrap;
  }
  /* Mobile menu dropdown */
  
  .site-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100vw;
    /* full width */
    flex-direction: column;
    background: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 0;
    max-height: 0;
    /* overflow: hidden; */
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    order: 4;
    z-index: 999;
  }
  /* Show menu when toggled */
  
  .design-header.menu-open .site-menu {
    max-height: 1000px;
    /* enough to show all items */
    opacity: 1;
  }
  .site-menu li {
    margin-bottom: 15px;
  }
  .site-menu a {
    display: block;
    width: 100%;
    text-decoration: none;
    color: #333333;
    font-weight: 500;
    font-size: 16px;
  }
  /* Close button inside menu */
  
  .menu-close-btn {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 15px;
  }
  .menu-close-btn button {
    background: none;
    border: none;
    font-size: 26px;
    cursor: pointer;
    color: #333333;
  }
}
.design-header {
  height: 40px;
  padding: 0 1em;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  background-color: white;
  box-shadow: none/*rgba(0,0,0, .07) 0 1px 0*/;
  position: relative;
  z-index: 2;
}
.design-header .site-id img {
  width: 215px;
}
.design-header .site-id span {
  display: none;
}
.design-header .site-menu {
  display: flex;
  margin-bottom: 10px;
  list-style-type: none;
  margin-right: 36px;
}
.design-header .site-menu li {
  color: #115fa4;
  font-size: 18px;
  margin-left: 2em;
}
.design-header a {
  color: #115fa4;
}
.design-header a:visited {
  color: #115fa4;
}
.design-header a:hover {
  color: #0099ff;
}
.login-flyout {
  display: none;
  position: absolute;
  right: 40px;
  /* adjust to align under Login */
  top: 80px;
  /* below header */
  z-index: 999999;
}
.flyout-box {
  width: 340px;
  background: white;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  border-radius: 4px;
  position: relative;
}
.flyout-box h3 {
  margin-bottom: 15px;
}
.flyout-box input {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border: 1px solid #cccccc;
}
.flyout-btn {
  width: 100%;
  padding: 12px;
  background: #d91c2c;
  color: white;
  border: none;
  font-weight: bold;
  cursor: pointer;
}
.flyout-links {
  margin-top: 10px;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
}
.flyout-close {
  position: absolute;
  right: 10px;
  top: 8px;
  cursor: pointer;
}
