/* ================= FOOTER ================= */
.site-footer{
  background: radial-gradient(circle at top, #1a237e, #0b0f3f);
  color:#ffffff;
  font-family:'Open Sans',system-ui,-apple-system,Segoe UI,Roboto,sans-serif;
}

/* CONTAINER */
.footer-container{
  max-width:1200px;
  margin:0 auto;
  padding:70px 20px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:40px;
}

/* HEADINGS */
.site-footer h3{
  color:#ffeb3b;
  font-size:18px;
  margin-bottom:16px;
}

/* TEXT */
.site-footer p{
  font-size:15px;
  line-height:1.6;
  color:#e0e0e0;
}

/* LINKS */
.site-footer a{
  color:#ffffff;
  text-decoration:none;
}

.site-footer a:hover{
  color:#ffeb3b;
}

/* LISTS */
.site-footer ul{
  list-style:none;
  padding:0;
}

.site-footer li{
  margin-bottom:10px;
}

/* CONTACT */
.footer-contact{
  margin-bottom:12px;
}

.footer-contact span{
  color:#ffeb3b;
  font-weight:600;
}

/* BOTTOM BAR */
.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.15);
  text-align:center;
  padding:18px 10px;
  font-size:14px;
  color:#cfcfcf;
}

/* ACCESSIBILITY */
.visually-hidden{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

/* RESPONSIVE */
@media(max-width:992px){
  .footer-container{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:600px){
  .footer-container{
    grid-template-columns:1fr;
    text-align:center;
  }
}
