/* /web/css/heather.css */
:root{
  --thx-navy:#0A1A2F;
  --thx-gold:#C79A00;
  --thx-cream:#F7EFE6;
  --thx-ink:#111827;
  --thx-shadow:rgba(10,26,47,.18);
  --thx-border:rgba(10,26,47,.12);
  --thx-radius:16px;
}

.thx-header{
  width:100%;
  background:var(--thx-cream);
  border-bottom:1px solid var(--thx-border);
  box-shadow:0 10px 22px var(--thx-shadow);
}

.thx-header-inner{
  max-width:1200px;
  margin:0 auto;
  padding:14px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}

.thx-brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  color:var(--thx-navy);
  min-width:260px;
}

.thx-logo-wrap{
  width:62px;
  height:62px;
  border-radius:14px;
  background:rgba(10,26,47,.04);
  border:1px solid rgba(10,26,47,.10);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.thx-logo{
  width:56px;
  height:56px;
  object-fit:contain;
  image-rendering:auto;
}

.thx-brand-text{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}

.thx-brand-title{
  font-family:Georgia, "Times New Roman", serif;
  font-weight:700;
  font-size:18px;
  letter-spacing:.2px;
}

.thx-brand-subtitle{
  font-family:Georgia, "Times New Roman", serif;
  font-size:12px;
  opacity:.72;
  margin-top:3px;
}

.thx-nav{
  display:flex;
  align-items:center;
  gap:6px;
  flex-wrap:wrap;
  justify-content:center;
}

.thx-nav-link{
  display:inline-flex;
  align-items:center;
  gap:9px;
  padding:10px 12px;
  border-radius:14px;
  text-decoration:none;
  color:var(--thx-navy);
  font-family:Georgia, "Times New Roman", serif;
  font-weight:700;
  font-size:14px;
  letter-spacing:.15px;
  border:1px solid transparent;
  transition:transform .12s ease, background .12s ease, border-color .12s ease;
  user-select:none;
}

.thx-nav-link:hover{
  background:rgba(199,154,0,.10);
  border-color:rgba(199,154,0,.25);
  transform:translateY(-1px);
}

.thx-nav-link.is-active{
  background:rgba(199,154,0,.16);
  border-color:rgba(199,154,0,.42);
}

.thx-ico{
  width:18px;
  height:18px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.thx-ico svg{
  width:18px;
  height:18px;
  fill:none;
  stroke:var(--thx-gold);
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.thx-logout .thx-ico svg{
  stroke:var(--thx-gold);
}

.thx-right{
  display:flex;
  align-items:center;
  gap:10px;
}

.thx-lang{
  position:relative;
}

.thx-lang-btn{
  border:1px solid rgba(10,26,47,.14);
  background:#fff;
  border-radius:14px;
  padding:9px 10px;
  cursor:pointer;
  display:flex;
  align-items:center;
  gap:8px;
  box-shadow:0 6px 16px rgba(10,26,47,.10);
}

.thx-lang-pill{
  font-family:Georgia, "Times New Roman", serif;
  font-weight:800;
  font-size:13px;
  color:var(--thx-navy);
  letter-spacing:.4px;
}

.thx-lang-caret{
  width:0;height:0;
  border-left:5px solid transparent;
  border-right:5px solid transparent;
  border-top:6px solid var(--thx-gold);
}

.thx-lang-menu{
  position:absolute;
  top:calc(100% + 10px);
  right:0;
  min-width:160px;
  background:#fff;
  border:1px solid rgba(10,26,47,.12);
  border-radius:14px;
  box-shadow:0 14px 28px rgba(10,26,47,.18);
  padding:8px;
  display:none;
  z-index:9999;
}

.thx-lang-menu.open{
  display:block;
}

.thx-lang-item{
  width:100%;
  text-align:left;
  border:0;
  background:transparent;
  padding:10px 10px;
  border-radius:10px;
  cursor:pointer;
  font-family:Georgia, "Times New Roman", serif;
  font-weight:700;
  color:var(--thx-navy);
}

.thx-lang-item:hover{
  background:rgba(199,154,0,.12);
}

.thx-nav-toggle{
  display:none;
  width:46px;
  height:46px;
  border-radius:14px;
  border:1px solid rgba(10,26,47,.14);
  background:#fff;
  box-shadow:0 6px 16px rgba(10,26,47,.10);
  cursor:pointer;
  padding:0;
}

.thx-nav-toggle span{
  display:block;
  width:22px;
  height:2px;
  background:var(--thx-navy);
  margin:5px auto;
  border-radius:2px;
}

@media (max-width: 980px){
  .thx-brand{min-width:auto;}
  .thx-nav-toggle{display:inline-block;}
  .thx-nav{
    display:none;
    width:100%;
    margin-top:10px;
    padding-top:10px;
    border-top:1px dashed rgba(10,26,47,.16);
    justify-content:flex-start;
  }
  .thx-nav.open{display:flex;}
  .thx-header-inner{
    flex-wrap:wrap;
    align-items:flex-start;
  }
  .thx-right{margin-left:auto;}
}
