/* =============================================
   HERYERPARKOUR — Map Section
   Tam genişlik harita, adres sticker overlay
   ============================================= */

.map-section {
  position: relative;
  width: 100%;
  background: var(--bg-dark);
}

.map-wrap {
  width: 100%;
  height: 420px;
  position: relative;
  overflow: hidden;
}

/* Scroll-to-zoom engelleme overlay */
.map-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  cursor: pointer;
}

.map-wrap.active::after {
  display: none;
}

/* Dark mode harita — invert + hue-rotate */
.map-wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
  filter: invert(0.9) hue-rotate(180deg) saturate(0.3) brightness(0.7);
  transition: filter 0.6s ease;
}

.map-wrap:hover iframe {
  filter: invert(0.9) hue-rotate(180deg) saturate(0.5) brightness(0.8);
}

/* Adres sticker — sol alt köşe */
.map-sticker {
  position: absolute;
  bottom: 32px;
  left: 40px;
  z-index: 10;
}

.map-sticker-inner {
  background: rgba(15, 15, 15, 0.92);
  backdrop-filter: blur(8px);
  padding: 22px 28px;
  clip-path: polygon(2% 0, 100% 0, 98% 100%, 0 100%);
  border-left: 3px solid var(--accent);
  max-width: 320px;
}

.map-sticker-label {
  display: block;
  font-family: var(--ff-heading);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 10px;
}

.map-sticker-address {
  display: block;
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin-bottom: 14px;
}

.map-sticker-link {
  display: inline-block;
  font-family: var(--ff-heading);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  text-decoration: none;
  transition: color var(--duration-normal);
}

.map-sticker-link:hover {
  color: white;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .map-sticker { display: none; }
}

@media (max-width: 768px) {
  .map-wrap { height: 300px; }
}
