/* ============================================
   ADRESİMİZ SECTION (5. Bölüm)
   ============================================ */

.adresimiz {
  position: relative;
  z-index: 3;
  width: 100%;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #000000;
}

/* Centered smaller image */
.adresimiz__background {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.adresimiz__background img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Vignette overlay */
.adresimiz__background::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(
    ellipse at center,
    transparent 15%,
    rgba(0, 0, 0, 0.5) 40%,
    rgba(0, 0, 0, 0.9) 65%,
    #000000 85%
  );
  pointer-events: none;
}

.adresimiz__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0;
  padding: var(--space-12) var(--space-10) var(--space-12) var(--space-8);
  align-self: flex-start;
}

.adresimiz__heading {
  font-family: var(--font-body);
  font-size: var(--text-4xl);
  font-weight: var(--weight-light);
  color: #ffffff;
  margin: 0 0 var(--space-3);
  line-height: var(--leading-tight);
}

.adresimiz__subtitle {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: var(--weight-regular);
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 var(--space-6);
  line-height: 1.5;
}

/* Map button – bottom left */
.adresimiz__map-btn {
  position: absolute;
  bottom: var(--space-10);
  left: var(--space-8);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-left: 1.5px solid rgba(255, 255, 255, 0.4);
  border-right: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
  transition:
    background 0.25s ease,
    transform 0.2s ease;
}

.adresimiz__map-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.adresimiz__map-btn svg {
  width: 18px;
  height: 18px;
  stroke: #ffffff;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
