/*clean*/
.site-footer {
    background: #111;
    top: 0;
    z-index: 100;
    color: #fff;
    padding: 2rem;
    font-size: 0.9rem;
}

.site-footer .menu {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer .menu-item {
  position: relative;
}

.site-footer .menu a {
  text-decoration: none;
  color: rgb(255, 255, 255);
  font-weight: 500;
}

/*flexbox*/

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center; /* vertically center logo & menu */
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.footer-logo a,
.footer-copyright {
    color: #fff;
    text-decoration: none;
}

.footer-nav {
    display: flex;
    gap: 1.5rem;
}

.footer-nav a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: #00aaff;
}

/* Mobile */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
