/* FOOTER */

/* ADMIN BUTTON */
.admin-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-top:16px;
  padding:10px 18px;
  border-radius:12px;
  background:#ff7a00;
  color:#fff;
  text-decoration:none;
  font-size:14px;
  font-weight:600;
  transition:0.25s ease;
  box-shadow:0 4px 12px rgba(255,122,0,0.25);
}

.admin-btn:hover{
  background:#ff922e;
  transform:translateY(-2px);
}

.footer-logo {
  width: 180px;
  height: auto;
  transition: transform 0.2s ease;
}

.footer-logo:hover {
  transform: scale(1.05);
}

.site-footer {
  background: #111;
  color: #fff;
  margin-top: 60px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 55px 25px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-brand h2 {
  font-size: 28px;
  margin-bottom: 12px;
}

.footer-brand p {
  color: #bbb;
  line-height: 1.6;
}

.footer-links h3,
.footer-socials h3 {
  margin-bottom: 18px;
  font-size: 18px;
}

.footer-links {
  display: flex;
  flex-direction: column;
}

.footer-links a {
  color: #bbb;
  text-decoration: none;
  margin-bottom: 12px;
  transition: 0.25s ease;
}

.footer-links a:hover {
  color: #ff7b00;
}

.social-icons {
  display: flex;
  gap: 16px;
}

.social-icons a {
  width: 44px;
  height: 44px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;

  background: rgba(255,255,255,0.08);
  color: #fff;

  transition: 0.25s ease;
}

.social-icons a:hover {
  background: #ff7b00;
  transform: translateY(-3px);
}

.social-icons svg {
  width: 22px;
  height: 22px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);

  text-align: center;

  padding: 18px;
  font-size: 14px;
  color: #999;
}

/* MOBILE */
@media (max-width: 768px) {

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links {
    align-items: center;
  }

  .social-icons {
    justify-content: center;
  }

}
