/* ================================================
   MANARE RESIDENCE — Google Maps Section
   ================================================ */

.map-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  background-color: var(--color-white);
  display: flex;
  flex-direction: column;
}

.map-section__header {
  padding: 4rem 4% 2rem 4%;
  max-width: 1600px;
  margin: 0 auto;
}

.map-section__label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.map-section__label-dot {
  width: 8px;
  height: 8px;
  background-color: var(--color-blue-secondary);
  border-radius: 0;
}

.map-section__label-text {
  color: var(--color-grey-warm);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.map-section__address {
  font-family: var(--font-secondary);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: var(--color-blue-dark);
  font-weight: 400;
  letter-spacing: 0.02em;
}

.map-section__embed {
  width: 100%;
  flex: 1;
  padding: 0 4% 4rem 4%;
}

.map-section__embed iframe {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 8px;
  filter: grayscale(20%) contrast(1.05);
  transition: filter 0.4s ease;
}

.map-section__embed iframe:hover {
  filter: grayscale(0%) contrast(1);
}

/* Responsive */
@media (max-width: 1024px) {
  .map-section {
    height: 80vh;
    min-height: 500px;
  }
}

@media (max-width: 768px) {
  .map-section {
    height: 70vh;
    min-height: 400px;
  }

  .map-section__header {
    padding: 3rem 1.5rem 1.5rem 1.5rem;
  }

  .map-section__embed {
    padding: 0 1.5rem 2rem 1.5rem;
  }

  .map-section__address {
    font-size: 1rem;
  }
}
