/**
 * Heaven Four - Footer Styles
 * Max-width matches content (1100px)
 */

.h4-footer {
  background: #2D2D2D;
  padding: 50px 20px 0 20px;
  color: #fff;
}

/* ===== CONSTRAIN WIDTH TO MATCH CONTENT (1100px) ===== */
.h4-footer-main,
.h4-footer-brands,
.h4-footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
}

.h4-footer-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 35px;
  padding-bottom: 35px;
}

.h4-footer-logo {
  max-width: 140px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.h4-footer h4 {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #E3967E;
  margin: 0 0 12px 0;
  font-family: var(--h4-font-sans);
  font-weight: 500;
}

.h4-footer p {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  margin: 0 0 5px 0;
  line-height: 1.6;
}

.h4-footer a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.2s;
}

.h4-footer a:hover {
  color: #E3967E;
}

.h4-footer strong {
  color: #fff;
  font-weight: 500;
}

.h4-btn-footer {
  display: inline-block;
  background: #E3967E;
  color: #fff !important;
  padding: 10px 24px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 0;
  transition: background 0.2s;
  font-weight: 500;
  margin-bottom: 12px;
}

.h4-btn-footer:hover {
  background: #D4856D;
  color: #fff !important;
}

.h4-social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.h4-social a {
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}

.h4-social a:hover {
  color: #E3967E;
}

/* ===== BRANDS SECTION ===== */
.h4-footer-brands {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
  padding: 30px 0 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.h4-footer-brands img {
  height: 35px;
  filter: brightness(0) invert(1);
}

.h4-footer-brands .h4-brand-text {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  font-weight: 400;
}

/* ===== BOTTOM BAR ===== */
.h4-footer-bottom {
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

.h4-footer-bottom-row {
  margin-bottom: 8px;
}

.h4-footer-bottom a {
  margin-left: 15px;
  color: rgba(255,255,255,0.5);
}

.h4-footer-bottom a:hover {
  color: #E3967E;
}

/* Made by Rankamsterdam - centered, same font as footer */
.h4-footer-made-by {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  text-align: center;
  margin-top: 8px;
}

.h4-footer-made-by a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  margin-left: 0;
}

.h4-footer-made-by a:hover {
  color: #E3967E;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (min-width: 600px) {
  .h4-footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  
  .h4-footer-brands {
    gap: 30px;
  }
  
  .h4-footer-brands img {
    height: 38px;
  }
}

@media (min-width: 900px) {
  .h4-footer {
    padding: 60px 40px 0 40px;
  }
  
  .h4-footer-main {
    grid-template-columns: 1.2fr 1.2fr 1.2fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
  }
  
  .h4-footer-brands {
    gap: 35px;
  }
  
  .h4-footer-brands img {
    height: 40px;
  }
}
