footer {
}

footer {
  background: url("../../assets/img/1974.jpg");
  color: #2b2420;
  padding: 40px 20px 24px;
  position: relative;
  width: 100%;
  animation: fadeIn 2s ease-in-out;
  background-size: cover;
  background-position: center;
  font-family: 'Cinzel', serif;
  font-size: 14px;
  line-height: 1.5;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 10px;
}

.footer-section {
  flex: 1;
  min-width: 260px;
  margin: 10px;
  animation: slideIn 1s ease-in-out;
}

.footer-section h3 {
  border-bottom: 1px solid #dab091;
  padding-bottom: 6px;
  margin-bottom: 10px;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.footer-about p {
  margin-bottom: 0.4rem;
}

.footer-accent {
  color: #8c6c4f;
  font-weight: 600;
}

.footer-contact-block {
  margin-bottom: 0.65rem;
}

.footer-label {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7c6a55;
  margin-bottom: 0.15rem;
}

.footer-value {
  margin: 0;
}

.footer-section a {
  color: #7b5e3c;
  text-decoration: none;
}

.footer-section a:hover {
  color: #a17c4d;
  text-decoration: underline;
}

.social-media a {
  margin: 0 10px;
  color: #695830;
  text-decoration: none;
  font-size: 1.5em;
  transition: color 0.3s;
}

.social-media a:hover {
  color: #1da1f2;
}

.map-container {
  width: 100%;
  margin-top: 12px;
}

.footer-map-embed {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  background: #e8e4dc;
  line-height: 0;
}

.footer-map-embed iframe {
  display: block;
  min-height: 220px;
  width: 100%;
}

.footer-find-us .footer-map-link {
  color: #695830;
  font-weight: 600;
  text-decoration: none;
}

.footer-find-us .footer-map-link:hover {
  color: #a17c4d;
  text-decoration: underline;
}

.footer-map-cta {
  font-size: 13px;
}

.newsletter {
  background: #f9f4ef;
  padding: 24px;
  border-radius: 12px;
  max-width: 500px;
  margin: auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  font-family: 'Segoe UI', sans-serif;
}

.newsletter h3 {
  margin-bottom: 10px;
  color: #5c3d2e;
}

.newsletter p {
  margin-bottom: 20px;
  color: #444;
}

.newsletter input {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
}

.newsletter button {
  width: 100%;
  background-color: #a17c4d;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.newsletter button:hover {
  background-color: #8e6a3d;
}

.footer-bottom {
  border-top: 1px solid rgba(218, 176, 145, 0.7);
  margin-top: 18px;
  padding-top: 8px;
  text-align: center;
  font-size: 12px;
  color: #666;
}

.footer-bottom a {
  color: #7b5e3c;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #a17c4d;
  text-decoration: underline;
}

/* Consent & Unsubscribe Modal Styling */
#consentModal,
#unsubscribeModal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.5);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

#consentModal .modal-content,
#unsubscribeModal .modal-content {
  background: white;
  padding: 24px;
  border-radius: 12px;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

#consentModal button,
#unsubscribeModal button {
  margin-top: 10px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

