/* V31 – West Lothian Gas: header positioning fix (desktop + mobile) */

/* Prevent any horizontal scroll caused by header pills/images */
html, body { overflow-x: hidden; }

/* Header wrapper */
.site-header{
  background:#1f3f8a;
  color:#fff;
  width:100%;
  overflow:hidden;
}

.header-top{
  padding:22px 16px 18px;
}

.header-inner{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns: 180px 1fr 180px;
  align-items:center;
  gap:20px;
}

/* Left logo (business logo) */
.header-logo-left{
  justify-self:start;
  display:flex;
  align-items:center;
}
.header-logo-left img{
  width:160px;
  height:auto;
  max-height:140px;
  object-fit:contain;
  display:block;
}

/* Center text + contact pills */
.header-center{
  text-align:center;
  min-width:0;
}
.header-title{
  margin:0;
  font-size:64px;
  line-height:1.05;
  font-weight:800;
  letter-spacing:0.5px;
}
.header-subtitle{
  margin:8px 0 0;
  font-size:22px;
  opacity:0.95;
  line-height:1.35;
}

/* Contact pills row */
.header-contact{
  margin-top:16px;
  display:flex;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
  gap:12px;
}
.contact-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 18px;
  border-radius:999px;
  background:rgba(255,255,255,0.12);
  border:1px solid rgba(255,255,255,0.18);
  color:#fff;
  text-decoration:none;
  font-weight:700;
  white-space:nowrap;
  max-width:100%;
}

/* Right image (gas-safe photo) */
.header-logo-right{
  justify-self:end;
  display:flex;
  align-items:center;
  justify-content:flex-end;
}
.header-logo-right img{
  width:150px;
  height:auto;
  max-height:170px;
  object-fit:cover;
  border-radius:12px;
  display:block;
}

/* Tablet + mobile: stack neatly, no sideways layout */
@media (max-width: 900px){
  .header-title{ font-size:54px; }
  .header-subtitle{ font-size:20px; }
  .header-inner{ grid-template-columns: 150px 1fr 150px; }
  .header-logo-left img{ width:140px; }
  .header-logo-right img{ width:140px; }
}

@media (max-width: 768px){
  .header-inner{
    grid-template-columns: 1fr;
    justify-items:center;
    text-align:center;
    gap:14px;
  }
  .header-logo-left{ justify-self:center; }
  .header-logo-right{ justify-self:center; }
  .header-title{ font-size:44px; }
  .header-subtitle{ font-size:18px; }
  .header-contact{
    width:100%;
  }
  .contact-pill{
    width:100%;
    max-width:360px;
    white-space:normal;
  }
  .header-logo-right img{
    width:190px;
    max-height:220px;
  }
}

/* Small phones */
@media (max-width: 420px){
  .header-title{ font-size:38px; }
  .header-logo-left img{ width:130px; }
  .header-logo-right img{ width:170px; }
}

/* === West Lothian Gas Header === */
.site-header{
  position: relative;
  height: 80px;
  background: royalblue;
  overflow: visible;
}
.header-logo{
  position: absolute;
  left: 20px;
  top: 50%;
  height: 100px;
  transform: translateY(-50%);
}
.header-title{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  color: #f7f6f2;
  font-weight: 700;
  font-size: 28px;
  white-space: nowrap;
}
@media (max-width: 768px){
  .site-header{height:70px;}
  .header-logo{height:85px;left:12px;}
  .header-title{font-size:20px;}
}


/* ===== West Lothian 2: Gas Safe logo in header (right) ===== */
.simple-header{
  position:relative;
  padding-right:110px; /* space for Gas Safe logo */
}
.gas-safe-header{
  position:absolute;
  right:16px;
  top:50%;
  transform:translateY(-50%);
  height:64px;
  width:auto;
  background:transparent;
}
@media (max-width: 640px){
  .simple-header{ padding-right:90px; }
  .gas-safe-header{ right:12px; height:52px; }
}
