/* =========================================================
   Nezihhan – Ana Sayfa İletişim Bölümü
   Dosya: assets/css/contact-section.css
   Kapsam: Yalnızca .nhc-* prefix'li sınıflar.
   Diğer sayfalara, header'a veya footer'a etki etmez.
   ========================================================= */

/* --- Bölüm Kabı --- */
.nhc-section {
  padding: clamp(56px, 6vw, 88px) 0 clamp(56px, 6vw, 80px);
  background: #faf9f7;
  border-top: 1px solid #ede9e3;
}

.nhc-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

/* --- 2 Kolonlu Grid --- */
.nhc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: start;
}

/* --- Sol: Görsel --- */
.nhc-image-col {
  position: relative;
}

.nhc-image-wrap {
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
}

.nhc-image-wrap img {
  display: block;
  width: 100%;
  height: clamp(420px, 47vw, 680px);
  object-fit: cover;
  object-position: center 37%;
}

/* --- Sağ: İçerik --- */
.nhc-content-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* --- Başlık Alanı --- */
.nhc-kicker {
  display: block;
  margin: 0 0 10px;
  color: #b8983c;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nhc-heading {
  margin: 0 0 14px;
  color: #1a1815;
  font-family: 'Playfair Display', 'Inter', serif;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 600;
  line-height: 1.22;
}

.nhc-desc {
  margin: 0 0 32px;
  color: #4a4540;
  font-family: 'Inter', sans-serif;
  font-size: 0.97rem;
  font-weight: 400;
  line-height: 1.7;
}

/* --- İletişim Satırları --- */
.nhc-info-list {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.nhc-info-item {
  display: flex;
  align-items: flex-start;
  gap: 13px;
}

.nhc-info-icon {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  color: #b8983c;
  margin-top: 2px;
}

.nhc-info-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nhc-info-label {
  display: block;
  color: #7a7068;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nhc-info-value {
  color: #1a1815;
  font-family: 'Inter', sans-serif;
  font-size: 0.96rem;
  font-weight: 400;
  line-height: 1.5;
  text-decoration: none;
}

a.nhc-info-value:hover {
  color: #b8983c;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* --- Google Maps --- */
.nhc-map-wrap {
  position: relative;
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #ede9e3;
}

.nhc-map-wrap iframe {
  display: block;
  width: 100%;
  height: 220px;
  border: none;
}

.nhc-map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 11px;
  color: #7a7068;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 150ms ease;
}

.nhc-map-link:hover {
  color: #b8983c;
}

.nhc-map-link svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

/* =========================================================
   Tablet — 900px
   ========================================================= */
@media (max-width: 900px) {
  .nhc-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .nhc-image-wrap img {
    height: clamp(360px, 108vw, 430px);
    object-position: center 30%;
  }
}

/* =========================================================
   Mobile — 480px ve altı
   ========================================================= */
@media (max-width: 480px) {
  .nhc-section {
    padding: 48px 0 52px;
  }

  .nhc-heading {
    font-size: 1.45rem;
  }

  .nhc-map-wrap iframe {
    height: 200px;
  }

  .nhc-grid {
    gap: 24px;
  }
}

/* --- Overflow guard --- */
.nhc-section,
.nhc-container,
.nhc-grid,
.nhc-map-wrap,
.nhc-map-wrap iframe {
  max-width: 100%;
  box-sizing: border-box;
}
