/*
 * Global Footer Styles - Digitale Menomale
 * Used site-wide across all pages
 */

/* CSS Variables - Global */
:root {
  --y: #FFB800;
  --yd: #e6a000;
  --yl: #fff8e1;
  --p: #5B21B6;
  --pm: #7C3AED;
  --pd: #3B0764;
  --white: #fff;
  --dark: #0f0720;
}

.site-footer {
  border-top: none;
}

/* ── FOOTER ── */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,184,0,0.15);
  padding: 4rem 5% 2rem;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 1.5rem;
}

.footer-logo-block .logo {
  display: inline-flex;
  margin-bottom: 1rem;
}

.footer-logo-block .logo a {
  display: inline-block;
}

.footer-logo-block .logo img.site-logo {
  max-width: 150px;
  height: auto;
}

.footer-logo-block .custom-logo-link {
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-logo-block .custom-logo {
  max-width: 200px;
  height: auto;
}

.footer-info {
  font-size: 0.8rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.4);
  border-bottom: none !important;
}

.footer-info-certification {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.footer-namirial {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,184,0,0.1);
  border: 1px solid rgba(255,184,0,0.25);
  padding: 0.4rem 0.9rem;
  border-radius: 8px;
  font-size: 0.78rem;
  color: var(--y);
  font-weight: 700;
}

.footer-col h4 {
  font-weight: 900;
  font-size: 0.9rem;
  color: var(--y);
  margin-bottom: 1rem;
}

.footer-info p {
  margin-bottom: 0;
  width: 100%;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-left: 0;
}

.footer-col ul li a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--y);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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