/* Minimal shared utilities used by header/footer */

*,
*::before,
*::after { box-sizing: border-box; }

body { margin: 0;  font-family: 'Roboto', sans-serif; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; padding: 0; margin: 0; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}


.site-footer {
  background-color: #050716;
  color: #9ca3c9;
  padding-top: 40px;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(0, 2fr);
  gap: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  text-align:left;
}

.footer-about p {
  font-size: 13px;
  max-width: 420px;
  margin-top: 10px;
}

.footer-logo .logo-mark {
  background: linear-gradient(135deg, #2563eb, #7c3aed);
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.footer-column h4 {
  margin: 0 0 10px 0;
  font-size: 14px;
  color: #e5e7ff;
}

.footer-column li {
  margin-bottom: 4px;
}

.footer-column a {
  font-size: 13px;
  color: #a5b0e5;
}

.footer-column a:hover {
  color: #ffffff;
}

.footer-bottom {
  padding: 10px 0 14px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #6b7287;
}

/* Footer Responsive (from style.css) */
@media (max-width: 1024px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer-columns {
    grid-template-columns: 1fr;
  }
}


/* Footer logo (dark/light) */
.footer-site-logo{
  height: 50px;
  width: auto;
  max-width: 250px;
  object-fit: contain;
}

/* default show light */
.footer-site-logo--dark{ display:none; }

/* dark theme switch */
html[data-theme="dark"] .footer-site-logo--light{ display:none; }
html[data-theme="dark"] .footer-site-logo--dark{ display:block; }


.footer-logo-link{
  display:inline-flex;
  text-decoration:none;
  color:inherit;
}

.footer-logo-link:focus-visible{
  outline: 3px solid rgba(80,176,208,.35);
  outline-offset: 4px;
  border-radius: 12px;
}


/* Footer heart animation */
.heart{
  display:inline-block;
  margin: 0 4px;
  animation: heartPop 1.4s ease-in-out infinite;
  transform-origin: center;
}

@keyframes heartPop{
  0%, 100%{
    transform: scale(1);
  }
  40%{
    transform: scale(1.25);
  }
}

 /* Footer social icons */
.social-icons{
  list-style:none;
  padding:0;
  margin:10px 0 0;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
 
.social-icon{
  width:40px;
  height:40px;
  border-radius:12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
 
.social-icon svg{
  width:18px;
  height:18px;
  fill: currentColor;
}
 
.social-icon:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.28);
}
