/* =========================================================
   Footer
   ========================================================= */
footer {
    background: linear-gradient(180deg, #04060b 0%, /* deep navy */ #111827eb 50%, /* charcoal */ #0000004a 100% /* near-black */);
    color: #ffffff;
    padding: 50px 20px;
    text-align: center;
    width: 100%;
    overflow: hidden;
}
/* =========================================================
   Footer Containers
   ========================================================= */
.footer-content,
.footer-footnotes {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* =========================================================
   Text & Links
   ========================================================= */
footer p,
footer nav a {
  color: #e5e7eb; /* soft white */
  font-size: 16px;
  line-height: 1.5;
  margin: 10px 0;
}

footer p a {
  text-decoration: none;
  color: #e5e7eb;
  margin: 0 10px;
  transition: color 0.3s ease, transform 0.3s ease;
}

footer p a:hover {
  color: #60a5fa; /* muted blue accent */
  transform: scale(1.05);
}

/* =========================================================
   Footer Notes
   ========================================================= */
.footer-note {
  font-style: italic;
  color: #9ca3af;
  margin: 10px 0 20px;
}

/* =========================================================
   Footnotes
   ========================================================= */
.footer-footnotes > p {
  font-family: 'Fira Code', monospace;
  font-size: 12px;
  font-weight: 300;
  color: #9ca3af;
  line-height: 1.4;
  padding-top: 5px;
  text-align: left;
}

.footer-footnotes p {
  margin: 5px 0;
}

.footer-footnotes sup {
  font-size: 8px;
  vertical-align: super;
  color: #9ca3af;
}

.footer-footnotes a {
  color: #9ca3af;
  text-decoration: none;
}

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

/* =========================================================
   Divider Line
   ========================================================= */
.custom-line {
  border: none;
  height: 1px;
  width: 80%;
  margin: 20px auto;
  background: linear-gradient(
    to right,
    transparent,
    #374151,
    transparent
  );
}

/* =========================================================
   Footer Navigation
   ========================================================= */
footer nav {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 15px;
}

/* =========================================================
   Logos Section
   ========================================================= */
.website-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
}

.website-logo {
  width: 65px;
  height: auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.website-logo:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.5);
}

/* =========================================================
   Footer Logo
   ========================================================= */
.footer-logo {
  margin-top: 10px;
  opacity: 0;
  animation: fadeIn 1.5s ease-out forwards;
}

.footer-logo .image_logo {
  width: 75px;
  height: auto;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.6));
}

.footer-logo-bottom {
  width: 95px;
  height: auto;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
}

.footer-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.2em;
  font-weight: 500;
  color: #f9fafb;
  margin: 0;
}

/* =========================================================
   Responsive Adjustments
   ========================================================= */
@media (max-width: 768px) {
  .website-logo {
    width: 60px;
  }
}
