footer {
}

footer {
  background: url("../../assets/img/1974.jpg");
  color: black;
  padding: 40px 20px;
  position: relative;
  width: 100%;
  animation: fadeIn 2s ease-in-out;
  background-size: cover;
  background-position: center;
}

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

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

.footer-section h3 {
  border-bottom: 2px solid #dab091;
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.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%;
  height: 200px;
  margin-top: 20px;
}

.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;
}

/* Consent Modal Styling */
#consentModal {
  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 {
  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 {
  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;
  }
}

