/* FOOTER (BouncyCastleSales) */
.footer-wrap{
  position: relative;
  overflow: hidden;
  /* Optional photo background */
    background: url("https://www.bouncycastlesales.com/gifs/footerbck.jpg") center/cover no-repeat;
}

/* dark overlay so text & pills are readable 7ced65*/
.footer-wrap::before{
  content:"";
  position:absolute;
  inset:0;
  background: #7ced65;
  pointer-events:none;
}

.footer-inner{
  position: relative; /* above overlay */
  padding: 26px 14px 18px;
}

.footer-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-title{
  margin: 0 0 10px;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: #000;
}

.footer-pills{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-pills a{
  display: inline-block;
  padding: 9px 12px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.96rem;
  line-height: 1;
  color: #ffffff;
  background: rgba(26, 153, 83, 0.92);        /* green pill */
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 6px 16px rgba(0,0,0,0.18);
  transition: transform .16s ease, background .16s ease, box-shadow .16s ease;
}

.footer-pills a:hover{
  transform: translateY(-2px);
  background: rgba(38, 175, 98, 0.98);
  box-shadow: 0 10px 22px rgba(0,0,0,0.24);
}

.footer-pills a:focus{
  outline: 2px solid rgba(255,255,255,0.65);
  outline-offset: 2px;
}

/* Bottom brand strip */
.footer-bottom{
  max-width: 1100px;
  margin: 22px auto 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.18);
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-badge{
  flex: 0 0 auto;
  border-radius: 10px;
  background: rgba(255,255,255,0.92);
  padding: 6px;
}

.footer-brand{
  color: rgba(255,255,255,0.92);
}

.footer-brand-name{
  font-weight: 700;
  letter-spacing: .2px;
  color:black;
}

.footer-brand-copy{
  margin-top: 4px;
  font-size: 0.95rem;
  opacity: 0.92;
  color:black;
}

.footer-logo img{
  display: block;
  margin-top: 10px;
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,0.35));
}

/* Responsive */
@media (max-width: 920px){
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px){
  .footer-grid{ grid-template-columns: 1fr; }
  .footer-bottom{
    flex-direction: column;
    align-items: flex-start;
  }
}

/* FOOTER LINK COLOUR OVERRIDE (legacy safety net) */
.footer-wrap a,
.footer-wrap a:link,
.footer-wrap a:visited,
.footer-wrap a:hover,
.footer-wrap a:active{
  color: #ffffff !important;
}

.footer-wrap,
.footer-wrap *{
  box-sizing: border-box;
}
