/* ========================================== */
/* SITE FOOTER COMPONENT                      */
/* ========================================== */
.site-footer {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 60px 20px 20px 20px;
  margin-top: 80px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.footer-column h3, 
.footer-column h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.footer-column p, 
.footer-column address,
.footer-column ul li a {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.85;
}

/* Address Column Styling */
.footer-address {
  font-style: normal;
  margin-bottom: 15px;
}

.footer-hours {
  font-weight: bold;
  color: #ffb703; /* Pop alert color for accessibility */
}

/* Navigation Links Column */
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: var(--color-white);
  text-decoration: none;
  transition: opacity 0.2s ease, padding-left 0.2s ease;
  display: inline-block;
  border-bottom: none;
}

.footer-links ul li a:hover {
  opacity: 1;
  padding-left: 5px;
  color: #ffb703;
}

/* Newsletter Input Layout Row */
.newsletter-form {
  display: flex;
  margin-top: 15px;
  width: 100%;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border: none;
  border-radius: var(--radius-button) 0 0 var(--radius-button);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #333;
}

.newsletter-form button {
  background-color: #ffb703;
  color: #111;
  border: none;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  padding: 0 20px;
  cursor: pointer;
  border-radius: 0 var(--radius-button) var(--radius-button) 0;
  transition: opacity 0.2s ease;
}

.newsletter-form button:hover {
  opacity: 0.9;
}

/* Font Awesome Social Row */
.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  text-decoration: none;
  font-size: 1.1rem;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.social-icons a:hover {
  background-color: #ffb703;
  color: #111;
  transform: translateY(-3px);
}

/* Bottom Bar Offset line */
.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0 auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  font-family: var(--font-body);
  font-size: 0.8rem;
  opacity: 0.6;
}

.design-credit a {
  font-family: "DM Serif Display", serif;
  font-size: 1.05rem; /* Slight bump since serifs can look smaller */
  font-style: italic;
  color: #ffffff; /* Bright white so it pops */
  text-decoration: none;
  transition: color 0.3s ease;
}

.design-credit a:hover {
  color: #ffb704; /* Matches your ConvertKit button gold */
}

/* ========================================== */
/* RESPONSIVE LAYOUT RESPONSES                */
/* ========================================== */
@media screen and (min-width: 600px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr); /* 2x2 grid on small tablets */
  }
}

@media screen and (min-width: 1024px) {
  .footer-container {
    grid-template-columns: repeat(4, 1fr); /* 4-column unified row on desktops */
    gap: 30px;
  }
}