/* Bakes by S - Footer styles (extracted from home.css) */
/* Simple footer with dark background and subtle border.
  Layout ensures the footer stays at the bottom on short pages.
  Social icons are round buttons for a friendly look.*/

/* Sticky footer layout: ensures footer sits at bottom on short pages and variables */

html, body { height: 100%; }
body { min-height: 100vh; display: flex; flex-direction: column; }
main { flex: 1; }
.site-footer { margin-top: auto; }

/* Border Variable*/
.site-footer {
  padding: 24px 16px;
  background: rgb(56, 2, 40);
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
/*Border variable */
.footer-logo {
  height: 34px;
  width: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
}

.footer-name {
  font-family: 'Pacifico', cursive;
}
/* surface variable */
.social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  width: 36px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
}

.social a:hover {
  background: #1c1c22;
}

.social img {
  height: 20px;
  width: 20px;
  object-fit: contain;
}
 /*Muted Variable */
.copyright {
  max-width: 1100px;
  margin: 8px auto 0;
  text-align: center;
  color: var(--muted);
  
}