/* ================================
   FOOTER (CLEAN + PREMIUM)
   ================================ */

footer{
  background: whitesmoke;
  color: #333;
  padding: 56px 24px;
  font-family: "Cinzel", serif;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.footer-container{
  max-width: 1200px;
  margin: 0 auto;

  display: flex;
  gap: 48px;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
}

.footer-column{
  flex: 1;
  min-width: 220px;
}

.footer-column h3{
  margin: 0 0 16px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #222;
}

.footer-column ul{
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li{
  margin: 10px 0;
}

.footer-column ul li a{
  color: #333;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.06em;
  opacity: 0.85;
  transition: opacity 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.footer-column ul li a:hover{
  opacity: 1;
  color: #111;
  transform: translateX(2px);
}

/* ================================
   MAP (EMBED) – RIGHT COLUMN
   ================================ */

/* Wrap your iframe with .map-card */
.map-card{
  width: 100%;
  max-width: 320px;   /* ✅ makes it look intentional */
  height: 220px;      /* ✅ better aspect than tall skinny map */

  border-radius: 16px;
  overflow: hidden;

  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
}

/* The iframe itself */
.map-card iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ================================
   RESPONSIVE
   ================================ */

@media (max-width: 900px){
  footer{
    padding: 48px 18px;
  }

  .footer-container{
    gap: 28px;
  }

  .map-card{
    max-width: 100%;
    height: 240px;
  }
}
