/* ==========================================================================
   Minimal Footer Styles
   ========================================================================== */

.dd-footer {
  background: var(--dark, #111);
  color: var(--light, #fff);
  width: 100%;
  /* Extra gap at the bottom using 80px padding */
  padding: 5px 20px 5px 20px; 
  margin-top: 50px;
   margin-bottom: 50px;
  border-top: 2px solid var(--accent, #444);
  font-size: 12px; /* Small text as requested */
  text-align: center;
}

.dd-container {
  max-width: 1000px;
  margin: 0 auto;
   display: flex;
  flex-direction: column;
  align-items: center;
}

/* Keeps all the links grouped together in the center */
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1px 25px;
  margin-bottom: 1px;
}

.footer-links a, 
.legal-links a {
  color: var(--light, #fff);
  text-decoration: none;
  transition: color 0.2s ease;
  white-space: nowrap; /* Prevents text from breaking weirdly */
}

.footer-links a:hover, 
.legal-links a:hover {
  color: var(--accent, #007bff);
}

.dd-divider {
  width: 75%;
  height: 1px;
  background: var(--light, #fff);
  opacity: 1.1;
  margin: 5px 0;
}

.legal p {
  margin: 5px 0;
  line-height: 1.5;
  opacity: 0.8;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.legal-links span {
  opacity: 0.5;
}
