footer{
    background-color: black;
    width: 100vw;
    padding: 3rem 2rem 6rem 2rem;
    min-height: 30vh;
    position: relative;
    background: linear-gradient(135deg, #0b0b0b,#3a2a20);
    display: grid;
    grid-template-columns: auto auto;
}
.copyright{
    width: 100vw;
    left: 0;
    bottom: 0;
    height: 20px;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    color: rgba(255, 255, 255, 0.539);
    border-top: 1px solid rgba(255, 255, 255, 0.292);
    /* display: flex; */
}
.left-footer-logo{
    display: flex;
    align-items: center;
}
.left-footer-logo img{
    width: 10rem;
}
.left-footer-logo p{
    font-size: 1.3rem;
    color: white;
}
.right-footer-section{
    display: grid;
    grid-template-columns: auto auto;
}
.right-footer-section div ul{
    padding-top: 20px;
}
.links_footer li, .location_footer li{
    font-size: .8rem;
    list-style: none;
    padding-bottom: 15px;
    color: white;
}
.links_footer li a{
    color: white;
    text-decoration: none;
}
.links_footer li a:hover{
    color: rgb(79, 168, 246);
}

/* Responsive Footer */
@media (max-width: 850px) {
  footer {
    padding: 3rem 1rem 6rem 1rem;
  }
  
  .left-footer-logo {
    flex-direction: column;
    text-align: center;
  }
  
  .left-footer-logo img {
    width: 7rem;
    margin-bottom: 10px;
  }
  
  .left-footer-logo p {
    font-size: 1.1rem;
  }
}

@media (max-width: 600px) {
  footer {
    padding: 2rem 0.8rem 6rem 0.8rem;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 2rem;
  }
  
  .left-footer-logo {
    justify-self: center;
  }
  
  .left-footer-logo img {
    width: 6rem;
  }
  
  .left-footer-logo p {
    font-size: 1rem;
  }
  
  .right-footer-section {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    justify-self: center;
  }
  
  .right-footer-section div {
    text-align: center;
  }
  
  .right-footer-section h3 {
    margin-bottom: 10px;
  }
  
  .copyright {
    text-align: center;
    justify-content: center;
  }
}