/* (VIKTIGT) Se till att sidan inte har default-margins */
html, body{
  margin: 0;
  padding: 0;
}

/* Footer: alltid kant-i-kant */
.site-footer{
  width: 100%;
  background:
    radial-gradient(900px 420px at 20% 0%, rgba(218,165,32,0.10), transparent 55%),
    radial-gradient(900px 420px at 80% 10%, rgba(0,0,0,0.18), transparent 60%),
    #0b0c0f;
  color: rgba(255,255,255,0.86);
}

/* Om din sida har wrapper med padding/margins: detta tvingar full-bleed */
.site-footer{
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

/* Innehållet ligger snyggt i container */
.site-footer__inner{
  padding-top: 56px;
  padding-bottom: 18px;
}

/* Grid */
.site-footer__top{
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.site-footer__title{
  margin: 0 0 12px 0;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,0.92);
}

.site-footer__text{
  margin: 12px 0 0 0;
  color: rgba(255,255,255,0.70);
  line-height: 1.75;
}

/* Logo */
.site-footer__logo{
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.site-footer__logoimg{
  height: 46px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 14px 30px rgba(0,0,0,0.45));
}

/* Rows */
.site-footer__rows{
  display: grid;
  gap: 10px;
}

.site-footer__rows--tight{
  gap: 8px;
}

.site-footer__row{
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: baseline;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(12px);
}

.site-footer__label{
  color: rgba(255,255,255,0.70);
  font-size: 13px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.site-footer__value{
  color: rgba(255,255,255,0.90);
  text-decoration: none;
  font-weight: 800;
}

.site-footer__value:hover{
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.35);
  text-underline-offset: 3px;
}

/* Social */
.site-footer__social{
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.site-footer__social-label{
  color: rgba(255,255,255,0.70);
  font-size: 13px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.site-footer__social-icons{
  display: flex;
  gap: 10px;
}

.site-footer__icon{
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  transition: transform 200ms ease, background 200ms ease, border-color 200ms ease;
}

.site-footer__icon svg{
  width: 20px;
  height: 20px;
}

.site-footer__icon:hover{
  transform: translateY(-2px);
  background: rgba(218,165,32,0.14);
  border-color: rgba(218,165,32,0.22);
}

/* Bottom */
.site-footer__bottom{
  padding-top: 16px;
}

.site-footer__bottom-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255,255,255,0.68);
  font-size: 14px;
}

.site-footer__bottom-links{
  display: flex;
  gap: 14px;
}

.site-footer__bottom-links a{
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  padding-bottom: 2px;
}

.site-footer__bottom-links a:hover{
  border-bottom-color: rgba(255,255,255,0.40);
}

/* FORCE logo size (override Bootstrap) */
.hero-nav .navbar-brand{
  padding: 0 !important;
  margin: 0 !important;
  line-height: 0 !important;
}

.hero-nav .navbar-brand img.hero-nav__logoimg{
  height: 92px !important;     /* TESTA 92–120 */
  width: auto !important;
  max-height: none !important;
  max-width: none !important;
  display: block !important;
}

.hero-nav__logoimg{
  transform: scale(1.35);
  transform-origin: left center;
}

/* Desktop ännu större */
@media (min-width: 992px){
  .hero-nav .navbar-brand img.hero-nav__logoimg{
    height: 110px !important;
  }
}

/* Mobil */
@media (max-width: 575px){
  .hero-nav .navbar-brand img.hero-nav__logoimg{
    height: 64px !important;
  }
}

/* Responsive */
@media (max-width: 991.98px){
  .site-footer__top{
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .site-footer__logoimg{
    height: 42px;
  }
  .site-footer__bottom-inner{
    flex-direction: column;
    align-items: flex-start;
  }
}
