/* 20-layout.css - structural layout rules shared across pages */

.breed-section { 
  padding: 20px 0; 
}

/* =========================================================
   FOOTER
   Background: #5C4A3A
========================================================= */

footer {
  background-color: #5C4A3A;
  color: #E8DCCB;
  padding: 3rem 0 2rem;
  margin-top: 60px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 2rem;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.footer-section h3 {
  color: #E8DCCB;
  margin-bottom: 20px;
  font-size: 1.1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(232, 220, 203, 0.3);
  padding-bottom: 10px;
}

.footer-section p {
  color: rgba(232, 220, 203, 0.85);
  line-height: 1.8;
  margin: 0;
}

/* ===============================
   FOOTER LINKS — Neutral Beige
   (Removes blue & purple links)
=============================== */

footer a {
  color: #E8DCCB;
  text-decoration: none;
  transition: all 0.2s ease;
  border-bottom: 1px solid transparent;
}

footer a:visited {
  color: #E8DCCB; /* Prevent purple visited links */
}

footer a:hover,
footer a:focus {
  color: #F4E9DA;
  border-bottom-color: rgba(232, 220, 203, 0.7);
}

footer a:focus-visible {
  outline: 1px solid #E8DCCB;
  outline-offset: 2px;
}

/* Footer bottom / copyright area */
.
