
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;500&display=swap');

.footer {
  position: relative;
  background: linear-gradient(to bottom, rgba(58,58,58,0) 0%,rgba(58,58,58,0.25) 25%,rgba(58,58,58,0.5) 50%,rgba(58,58,58,0.75) 75%, #3a3a3a 60%, #3a3a3a 100%);
  color: #f1f1f1;
  font-family: 'Raleway', sans-serif;
  padding: 60px 30px 30px;
  box-sizing: border-box;
}


.footer-inner {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.footer-center {
  text-align: center;
}

.footer-name {
  letter-spacing: 6px;
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 12px;
  color: #ffffff;
}

.footer-line {
  width: 60px;
  height: 1px;
  background: #bbb;
  margin: 0 auto;
}

.footer-contact {
  text-align: right;
  font-size: 14px;
  line-height: 1.7;
}

.footer-contact a {
  color: #f1f1f1;
  text-decoration: none; 
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  margin-top: 50px;
  padding-top: 15px;
  border-top: 1px solid #555;
  font-size: 12px;
  color: #ccc;
}

/* RESPONSYWNOŚĆ */
@media(max-width:768px){
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .footer-right {
    text-align: center;
  }
}
