/* ================================================
   SOLDERFLOW RECYCLING - FULL USER.CSS
================================================ */

:root{
  --sf-primary:#84cc16;
  --sf-primary-dark:#65a30d;
  --sf-orange:#f59e0b;
  --sf-orange-dark:#d97706;
  --sf-dark:#020817;
  --sf-dark-2:#07111f;
  --sf-text:#dbe4ee;
}

/* ================================================
   GLOBAL
================================================ */

html,
body{
  overflow-x:hidden;
}

body{
  font-family:Poppins,sans-serif;
  line-height:1.7;
  color:#222;
  background:#fff;
}

.container,
.container-component,
.site-grid,
.grid-child{
  max-width:100%;
}

main{
  padding:0;
}

/* ================================================
   HEADER
================================================ */

.container-header{
  background:
  linear-gradient(
  90deg,
  #020817 0%,
  #04132a 100%
  ) !important;

  width:100%;
  margin:0;
  padding:0;

  position:relative !important;
  top:auto !important;
  transform:none !important;

  z-index:999;
}

/* REMOVE STICKY */

header.header,
.container-header.position-sticky,
.container-header.sticky-top{
  position:relative !important;
  top:auto !important;
  transform:none !important;
}

/* ================================================
   TOPBAR
================================================ */

.container-topbar{
  width:100%;
  padding:0;
  margin:0;
}

.sf-topbar{
  width:100%;
  padding:14px 40px 10px;
}

.sf-topbar-inner{
  max-width:1450px;
  margin:0 auto;

  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:25px;
}

.sf-topbar-contact{
  display:flex;
  align-items:center;
  gap:22px;
  flex-wrap:wrap;
}

.sf-topbar-contact span{
  color:#fff;
  font-size:13px;
  font-weight:700;
  letter-spacing:.2px;
}

.sf-topbar-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  background:#f59e0b;
  color:#fff !important;

  height:48px;
  padding:0 28px;

  border-radius:3px;

  font-size:13px;
  font-weight:900;

  text-transform:uppercase;
  text-decoration:none;

  transition:.3s ease;
}

.sf-topbar-btn:hover{
  background:#d97706;
  color:#fff !important;
}

/* ================================================
   LOGO + MENU ROW
================================================ */

.container-header .grid-child{
  max-width:1450px;
  margin:0 auto;

  padding:0 40px;
  box-sizing:border-box;
}

.navbar-brand{
  margin:0;
  padding:10px 0 6px;
}

.navbar-brand img{
  max-height:88px;
  width:auto;
}

/* ================================================
   NAVIGATION
================================================ */

.container-nav{
  padding:0 0 18px !important;

  display:flex;
  justify-content:center;
  align-items:center;
}

.mod-menu{
  display:flex;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;

  gap:14px;

  list-style:none;

  margin:0;
  padding:0;
}

/* REMOVE JOOMLA STYLING */

.container-header .mod-menu li a{
  background:none !important;
  border:none !important;
  box-shadow:none !important;
}

/* MENU LINKS */

.container-header .mod-menu > li > a{
  position:relative;

  color:#fff !important;

  font-size:15px;
  font-weight:800;

  text-transform:none;

  padding:12px 14px;

  border-radius:0;

  text-decoration:none;

  transition:.25s ease;
}

/* HOVER */

.container-header .mod-menu > li > a:hover{
  color:#f59e0b !important;
}

/* ACTIVE */

.container-header .mod-menu .current > a,
.container-header .mod-menu .active > a,
.container-header .mod-menu > li.active > a{
  color:#fff !important;
}

/* ORANGE LINE */

.container-header .mod-menu .current > a:after,
.container-header .mod-menu .active > a:after,
.container-header .mod-menu > li.active > a:after{
  content:"";

  position:absolute;
  left:0;
  bottom:-8px;

  width:100%;
  height:3px;

  background:#f59e0b;
}

/* ================================================
   HERO CLEANUP
================================================ */

.banner,
.container-banner,
.container-top-a,
.container-top-b{
  padding:0 !important;
  margin:0 !important;
}

.item-page{
  padding-top:0 !important;
}

.item-page > *:first-child{
  margin-top:0 !important;
}

/* ================================================
   FOOTER FIX
================================================ */

.container-footer,
.footer{
  width:100%;
  margin:0;
  padding:0;

  background:
  linear-gradient(
  135deg,
  #07101d 0%,
  #030712 100%
  ) !important;
}

.container-footer .grid-child{
  width:100%;
  max-width:100%;
  margin:0;
  padding:0;
}

/* THIS FIXES THE BROKEN WIDTH */

.sf-footer{
  position:relative;

  width:100%;
  margin:0 !important;

  background:
  linear-gradient(
  135deg,
  #07101d 0%,
  #030712 100%
  );

  overflow:hidden;

  color:#fff;
}

/* KEEP INNER CONTENT ALIGNED */

.sf-footer-top-inner,
.sf-footer-inner,
.sf-footer-bottom-inner{
  max-width:1450px;
  margin:0 auto;

  padding-left:40px;
  padding-right:40px;

  box-sizing:border-box;
}

/* ================================================
   REMOVE BROKEN WIDTH RULES
================================================ */

.full-width{
  width:100%;
  margin-left:0;
}

.container-footer *{
  box-sizing:border-box;
}

/* ================================================
   MOBILE
================================================ */

@media (max-width:991px){

  .sf-topbar{
    padding:14px 20px;
  }

  .sf-topbar-inner{
    flex-direction:column;
    justify-content:center;
    text-align:center;
  }

  .sf-topbar-contact{
    justify-content:center;
  }

  .container-header .grid-child{
    padding:0 20px;
  }

  .navbar-brand{
    text-align:center;
  }

  .navbar-brand img{
    max-height:72px;
  }

  .container-nav{
    padding-bottom:18px !important;
  }

  .mod-menu{
    gap:10px;
  }

  .container-header .mod-menu > li > a{
    font-size:14px;
    padding:10px 10px;
  }

  .sf-footer-top-inner,
  .sf-footer-inner,
  .sf-footer-bottom-inner{
    padding-left:20px;
    padding-right:20px;
  }

}

@media (max-width:768px){

  .sf-topbar-contact{
    flex-direction:column;
    gap:8px;
  }

  .sf-topbar-btn{
    width:100%;
  }

  .mod-menu{
    flex-direction:column;
    width:100%;
  }

  .container-header .mod-menu > li{
    width:100%;
    text-align:center;
  }

  .container-header .mod-menu > li > a{
    display:block;
    width:100%;
  }

}
/* CASSIOPEIA FOOTER BREAKOUT FIX */

.container-footer{
  max-width:100% !important;
  width:100% !important;
  padding:0 !important;
}

.container-footer .grid-child{
  max-width:100% !important;
  padding:0 !important;
}
/* =========================================
   REMOVE WHITE GAP AROUND CONTACT STRIP
========================================= */

.moduletable:has(.sf-contact-strip),
.mod-custom:has(.sf-contact-strip){

  margin:0 !important;
  padding:0 !important;
  border:none !important;
  background:transparent !important;
}

.moduletable:has(.sf-contact-strip) .module-inner,
.mod-custom:has(.sf-contact-strip) .module-inner{

  margin:0 !important;
  padding:0 !important;
}

.sf-contact-strip{

  margin-top:0 !important;
  margin-bottom:0 !important;
}

/* kills spacing from neighbouring modules */

.moduletable + .moduletable{
  margin-top:0 !important;
}
/* =========================================
   CONTACT STRIP GAP FIX
========================================= */

.sf-contact-strip{
  position:relative;
  z-index:5;

  margin-top:-18px !important;
  margin-bottom:-18px !important;
}

/* REMOVE JOOMLA WRAPPER SPACING */

.moduletable:has(.sf-contact-strip),
.mod-custom:has(.sf-contact-strip){

  margin:0 !important;
  padding:0 !important;

  background:none !important;
  border:none !important;
  box-shadow:none !important;
}

/* =========================================
   REMOVE CARD-BODY GAPS
========================================= */

.container-bottom-a .card-body,
.container-bottom-b .card-body{

  padding:0 !important;
}

/* remove card spacing */

.container-bottom-a .card,
.container-bottom-b .card{

  margin:0 !important;
  border:none !important;
  background:none !important;
  box-shadow:none !important;
}

/* tiny tighten */

.sf-contact-strip{
  margin-top:-2px;
}
