:root{
  --navy:#233876;
  --navy-deep:#1a2a5e;
  --gold:#e8a13c;
}

.ecl-site,
.ecl-site *{
  font-family:'DM Sans', 'Segoe UI', sans-serif;
  box-sizing:border-box;
  min-width:0;
}

.site-header{
  position:fixed;
  top:0; left:0; right:0;
  z-index:1000;
}

.admin-bar .site-header{
  top:32px;
}
@media screen and (max-width:782px){
  .admin-bar .site-header{
    top:46px;
  }
}

/* Push page content below the fixed header. Real height is measured in JS (site-header.js)
   and written to --ecl-header-h; 118px is only the fallback for the moment before JS runs.
   Applied to #page (an ID selector) rather than body, because Elementor writes a per-page
   "body.elementor-page-{ID}{padding:0}" rule whose class selector would otherwise win. */
#page{
  padding-top:var(--ecl-header-h, 118px);
}

/* ---------- Top ticker bar ---------- */
.header-topbar{
  background:#000;
  max-height:42px;
  overflow:hidden;
  transition:max-height .3s ease;
}
.header-topbar.is-hidden{ max-height:0; }

.topbar-inner{
  height:42px;
  display:flex;
  align-items:center;
  padding:0 24px;
  gap:20px;
}
.topbar-latest{
  flex:0 0 auto;
  display:flex;
  align-items:center;
  gap:6px;
  color:#fff;
  font-size:13px;
  font-weight:700;
  text-decoration:none;
  padding-right:20px;
  border-right:1px solid rgba(255,255,255,0.2);
}
.topbar-latest span.arrow{
  display:inline-block;
  width:7px; height:7px;
  border-top:2px solid #fff;
  border-right:2px solid #fff;
  transform:rotate(45deg);
  margin-left:1px;
}

.topbar-ticker{
  flex:1;
  min-width:0;
  overflow:hidden;
}
.topbar-ticker-track{
  display:flex;
  align-items:center;
  white-space:nowrap;
  width:max-content;
  animation:eclTicker 24s linear infinite;
}
.topbar-ticker-track .ticker-set{
  display:flex;
  align-items:center;
}
.topbar-ticker-track span.item{
  color:rgba(255,255,255,0.85);
  font-size:13px;
  padding:0 20px;
}
.topbar-ticker-track span.dot{
  color:var(--gold);
  font-size:10px;
}
@keyframes eclTicker{
  from{ transform:translateX(0); }
  to{ transform:translateX(-50%); }
}

.topbar-follow{
  flex:0 0 auto;
  display:flex;
  align-items:center;
  gap:12px;
  padding-left:20px;
  border-left:1px solid rgba(255,255,255,0.2);
}
.topbar-follow span{
  color:#fff;
  font-size:13px;
  font-weight:600;
  white-space:nowrap;
}
.topbar-socials{
  display:flex;
  align-items:center;
  gap:8px;
}
.social-icon{
  width:22px; height:22px;
  border-radius:5px;
  background:rgba(255,255,255,0.12);
  color:#fff !important;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:11px;
  font-weight:700;
  text-decoration:none;
  flex:0 0 auto;
}

/* ---------- Nav bar ---------- */
.header-navbar{
  background:var(--navy);
  height:76px;
  position:relative;
  overflow:hidden;
}
.navbar-inner{
  height:100%;
  display:flex;
  align-items:center;
  padding:0 24px;
  gap:32px;
  position:relative;
  z-index:1;
}

.navbar-decor{
  position:absolute;
  left:0;
  top:0;
  height:100%;
  width:auto;
  max-width:140px;
  object-fit:cover;
  z-index:0;
  pointer-events:none;
}

.navbar-logo{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  flex:0 0 auto;
}
.navbar-logo img{
  height:44px;
  width:auto;
  display:block;
}
.navbar-logo-mark{
  width:38px; height:38px;
  border-radius:8px;
  background:var(--gold);
  color:var(--navy-deep);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  font-size:14px;
}
.navbar-logo-text b{
  display:block;
  color:#fff;
  font-size:19px;
  font-weight:800;
  line-height:1.1;
}
.navbar-logo-text small{
  display:block;
  color:rgba(255,255,255,0.65);
  font-size:9px;
  font-weight:600;
  letter-spacing:.4px;
}

.navbar-links{
  display:flex;
  align-items:center;
  gap:26px;
  flex:1;
  list-style:none;
  margin:0;
  padding:0;
}
.navbar-links li{
  list-style:none;
  margin:0;
  padding:0;
}
.navbar-links a{
  color:rgba(255,255,255,0.85);
  text-decoration:none;
  font-size:14.5px;
  font-weight:600;
  padding:6px 0;
  position:relative;
  white-space:nowrap;
}
.navbar-links a:hover{ color:#fff; }
.navbar-links a.active,
.navbar-links li.current-menu-item > a,
.navbar-links li.current_page_item > a{ color:#fff; }
.navbar-links a.active::after,
.navbar-links li.current-menu-item > a::after,
.navbar-links li.current_page_item > a::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:0;
  height:2px;
  background:var(--gold);
  border-radius:2px;
}

.navbar-right{
  display:flex;
  align-items:center;
  gap:18px;
  flex:0 0 auto;
}
.navbar-divider{
  width:1px; height:22px;
  background:rgba(255,255,255,0.25);
}
.navbar-phone{
  display:flex;
  align-items:center;
  gap:8px;
  color:#fff;
  text-decoration:none;
  font-size:14.5px;
  font-weight:700;
  white-space:nowrap;
}
.navbar-contact{
  background:#fff;
  color:var(--navy-deep);
  padding:11px 26px;
  border-radius:999px;
  font-size:14px;
  font-weight:700;
  text-decoration:none;
  white-space:nowrap;
}
.navbar-contact:hover{ background:#f0f0f4; }

.navbar-burger{
  display:flex;
  width:40px; height:40px;
  border-radius:8px;
  border:1.5px solid rgba(255,255,255,0.35);
  align-items:center;
  justify-content:center;
  cursor:pointer;
  flex:0 0 auto;
}
.navbar-burger-lines{
  width:18px; height:13px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.navbar-burger-lines span{
  display:block;
  height:2px;
  background:#fff;
  border-radius:2px;
}

.navbar-mobile-actions{
  display:none;
  align-items:center;
  gap:10px;
  flex:0 0 auto;
}

@media (max-width:1100px){
  .header-navbar{ height:auto; }
  .navbar-inner{
    justify-content:space-between;
    padding-top:16px;
    padding-bottom:16px;
  }
  .navbar-links,
  .navbar-right{ display:none; }
  .navbar-mobile-actions{ display:flex; }
  .topbar-follow span{ display:none; }
}
@media (max-width:768px){
  .topbar-inner{ padding:0 14px; gap:10px; }
  .topbar-latest{ font-size:12px; padding-right:12px; gap:4px; }
  .topbar-ticker-track span.item{ font-size:12px; padding:0 14px; }
  .topbar-follow{ padding-left:12px; gap:8px; }
  .social-icon{ width:20px; height:20px; font-size:10px; }
  .topbar-socials{ gap:6px; }
  .navbar-inner{ padding:0 16px; gap:16px; }
  .navbar-logo-text small{ display:none; }
}
@media (max-width:640px){
  .topbar-latest{ padding-right:12px; }
  .navbar-phone span{ display:none; }
  .navbar-divider{ display:none; }
}
@media (max-width:520px){
  .topbar-follow{ display:none; }
  .topbar-latest{ border-right:none; padding-right:0; }
}
@media (max-width:380px){
  .topbar-latest span.arrow{ display:none; }
}

/* ---------- Full-screen mobile menu ---------- */
.mobile-menu{
  position:fixed;
  inset:0;
  z-index:2000;
  background:var(--navy);
  overflow-y:auto;
  -webkit-overflow-scrolling:touch;
  transform:translateX(100%);
  transition:transform .35s ease;
  padding:24px;
}
.mobile-menu.is-open{ transform:translateX(0); }

.mobile-menu-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:12px;
}
.mobile-menu-close{
  width:32px; height:32px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:none;
  border:none;
  color:#fff;
  font-size:26px;
  line-height:1;
  cursor:pointer;
  flex:0 0 auto;
}

.mobile-menu-links{
  list-style:none;
  margin:0;
  padding:0;
}
.mobile-menu-links li{
  border-bottom:1px solid rgba(255,255,255,0.15);
}
.mobile-menu-links a{
  display:block;
  padding:18px 4px;
  color:#fff;
  text-decoration:none;
  font-size:19px;
  font-weight:500;
}
.mobile-menu-links a.active{ color:var(--gold); }

.mobile-menu-hours{
  margin:28px 0 16px;
  color:#fff;
  font-size:13.5px;
  font-weight:700;
}

.mobile-menu-socials{
  display:flex;
  align-items:center;
  gap:10px;
  padding-bottom:20px;
  border-bottom:1px solid rgba(255,255,255,0.2);
  margin-bottom:20px;
}

.mobile-menu-copyright{
  color:rgba(255,255,255,0.85);
  font-size:13px;
  margin:0 0 8px;
}
.mobile-menu-tagline{
  color:rgba(255,255,255,0.65);
  font-size:13px;
  line-height:1.6;
  margin:0;
  max-width:420px;
}

.mobile-menu-decor{
  position:absolute;
  right:-20px;
  bottom:-10px;
  width:180px;
  height:auto;
  pointer-events:none;
  z-index:-1;
}

/* ---------- Breadcrumb strip (below header, all pages except Home/Gallery) ---------- */
.ecl-breadcrumb-strip{
  background:#16265c;
}
.ecl-breadcrumb-strip-inner{
  display:flex;
  align-items:center;
  gap:10px;
  padding:16px 40px;
}
.ecl-breadcrumb-strip-inner a{
  color:#fff;
  font-weight:600;
  font-size:15px;
  text-decoration:none;
  white-space:nowrap;
}
.ecl-breadcrumb-strip-inner a:hover{ text-decoration:underline; }
.ecl-breadcrumb-sep{
  color:rgba(255,255,255,0.4);
  font-size:15px;
}
.ecl-breadcrumb-current{
  color:#fff;
  font-weight:600;
  font-size:15px;
  white-space:nowrap;
}

@media (max-width:900px){
  .ecl-breadcrumb-strip-inner{ padding:14px 20px; }
}
@media (max-width:560px){
  .ecl-breadcrumb-strip-inner{ padding:14px 16px; gap:8px; }
}
