footer {
  background: #fbecdead;
  color: black;
  padding: 20px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 60px;
  max-width: 1200px;
  margin: auto;
  text-align: left;
}

.footer-col {
  flex: 1;
  min-width: 250px;
}

.footer-col h3,
.footer-col h4 {
  margin-bottom: 15px;
  color: black
  
}

.footer-col p {
  margin: 5px 0;
}

.social-icons a {
  font-size: 28px;
  margin-right: 10px;
  text-decoration: none;
  color: black;
  align-items: center;
}

.social-icons a:hover {
  opacity: 0.7;
}

.map-btn {
  font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  font-size: 13px;
  padding: 10px 15px;
  background: rgba(255, 203, 151, 0.892);
  color: black;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 10px;
  
}

.map-btn:hover {
  background: rgb(185, 175, 165);
}

/* ===== MODAL (fixed, responsive, centered) ===== */

.footer-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1000;

  display: none;              /* hidden by default */
  justify-content: center;
  align-items: center;

  padding: 20px;
  box-sizing: border-box;
}

.footer-modal-content {
  background: white;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 8px;
  padding: 20px;
  box-sizing: border-box;
}

.footer-modal-content iframe {
  width: 100%;
  height: 300px;
  border: 0;
}

.footer-modal-content h2,
.footer-modal-content p {
  color: black;
}

.footer-close {
  float: right;
  font-size: 28px;
  cursor: pointer;
}
.icon1 {
  height: 30px;
  width: 30px;
}

/* Mobile */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .social-icons a {
    margin: 0 8px;
  }
}
