/* ================================================
   FOOTER STYLES — footer.css
   Linked from inside /includes/footer-new.html
   ================================================ */

/* ── Footer — Warm Cream, Full Width, No Rounded Corners ── */
.site-footer {
  width: 100%;
  padding: 0;
  background: transparent;
  font-family: 'DM Sans', 'Helvetica Neue', Arial, sans-serif;
  box-sizing: border-box;
  clear: both;
  margin-top: 0;
}

.footer-inner {
  background: #f0ebe2;
  border-radius: 0;
  padding: 44px 28px 0;
  max-width: 100%;
  overflow: hidden;
}

/* ── Logo row ── */
.footer-logo-row {
  text-align: center;
  margin-bottom: 36px;
}
.footer-logo-row img {
  height: 64px;
  width: auto;
  display: inline-block;
  filter: none;
  opacity: 0.90;
}

/* ── 3-column grid ── */
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto 36px;
}

.footer-col {}

.footer-col-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #7a6a58;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid #d4c9b8;
}

.footer-col p,
.footer-col address {
  font-style: normal;
  color: #6a5a50;
  font-size: 14px;
  line-height: 1.85;
  margin: 0;
}

.footer-col a {
  color: #4a3a30;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: #2c2018;
  text-decoration: underline;
}

/* ── Social icons row ── */
.footer-social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(44,32,24,0.07);
  border: 1px solid #d4c9b8;
  color: #4a3a30 !important;
  text-decoration: none !important;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.footer-social a:hover {
  background: rgba(44,32,24,0.14);
  border-color: #a89880;
  transform: translateY(-2px);
  text-decoration: none !important;
}
.footer-social a svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  display: block;
}

/* Wedding Show & Tourism badges — slightly wider */
.footer-social a.badge-link {
  width: auto;
  padding: 0 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  gap: 6px;
  white-space: nowrap;
}
.footer-social a.badge-link svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* ── Divider ── */
.footer-divider {
  border: none;
  border-top: 1px solid #d4c9b8;
  margin: 0;
}

/* ── Bottom bar ── */
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  padding: 18px 0 22px;
  background: rgba(44,32,24,0.06);
}

.footer-bottom-copy {
  font-size: 12px;
  color: #9e8878;
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.footer-bottom-links a {
  font-size: 12px;
  color: #7a6a58;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bottom-links a:hover {
  color: #2c2018;
}

/* ── TABLET 640px+ ── */
@media(min-width: 640px) {
  .site-footer { padding: 0; }
  .footer-inner {
    padding: 52px 44px 0;
    border-radius: 0;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    padding: 20px 44px 26px;
  }
  .footer-bottom-links { justify-content: flex-end; }
}

/* ── DESKTOP 1000px+ ── */
@media(min-width: 1000px) {
  .site-footer { padding: 0; }
  .footer-inner {
    padding: 56px 56px 0;
    border-radius: 0;
  }
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1.4fr;
    gap: 48px;
    margin-bottom: 44px;
  }
  .footer-bottom { padding: 20px 56px 26px; }
}

