/* =========================================
   KONTAK (kontak.html)
   ========================================= */
.kontak-hero {
  padding: 80px 0 100px;
}

.kontak-hero .container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}

/* ---------- KOLOM KIRI ---------- */
.kontak-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.kontak-hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--red);
  margin: 0 0 16px 0;
}

.kontak-info-item {
  margin-bottom: 4px;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--ink);
}

.social-icons {
  display: flex;
  gap: 14px;
  margin: 16px 0 12px 0;
}

.social-icons a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--red);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}

.social-icons a:hover {
  background: var(--red);
  color: var(--white);
}

/* ================================================================
   MARKETPLACE ICONS — tanpa outline, tanpa label
   ================================================================ */

/* Container utama */
.marketplace-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 22px;
  /* jarak antar icon */
  margin-top: 16px;
  justify-content: flex-start;
}

/* Setiap item icon (tanpa label) */
.marketplace-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.25s ease;
  cursor: pointer;
}

/* Efek hover — icon membesar sedikit */
.marketplace-icon:hover {
  transform: scale(1.08);
}

/* ================================================================
   UBAH UKURAN ICON DI SINI
   ================================================================ */
.icon-circle {
  /* ★ Ubah nilai di bawah untuk mengubah ukuran lingkaran icon */
  width: 60px;
  /* ← ukuran lingkaran */
  height: 60px;
  /* ← ukuran lingkaran */
  border-radius: 50%;
  /* ★ Tidak ada border / outline */
  border: none;
  /* ← outline dihilangkan */
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* Efek hover pada lingkaran — background berubah halus */
.marketplace-icon:hover .icon-circle {
  background: #f0f0f0;
  /* ← warna latar saat hover (opsional) */
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

/* ================================================================
   🔧 UBAH UKURAN LOGO DI DALAM ICON DI SINI
   ================================================================ */
.icon-circle img {
  /* ★ Ubah nilai di bawah untuk mengubah ukuran logo di dalam icon */
  width: 32px;
  /* ← ukuran logo */
  height: 32px;
  /* ← ukuran logo */
  object-fit: contain;
  display: block;
  transition: filter 0.25s ease;
}

/* Opsional: logo berubah sedikit saat hover (misal lebih terang) */
.marketplace-icon:hover .icon-circle img {
  filter: brightness(1.05);
}




/* ---------- KOLOM KANAN: FOTO (tanpa overlay) ---------- */
.hero-image-wrap {
  position: relative;
  width: 100%;
}

.hero-image-wrap .placeholder-img {
  aspect-ratio: 4 / 5;
  /* ganti dari 4/3, sesuaikan sama rasio gambar aslinya */
  min-height: auto;
  border-radius: 20px;
  width: 100%;
  overflow: hidden;
}

.hero-image-wrap .placeholder-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* aman dipakai karena rasio kotak & gambar sekarang senada */
  display: block;
}

/* =========================================
   OUTLET KAMI (Google Maps)
   ========================================= */
.outlet-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 36px;
  letter-spacing: 1px;
  text-align: center;
}

.map-frame {
  max-width: 800px;
  margin: 0 auto;
  border: 4px solid var(--white);
  border-radius: 16px;
  overflow: hidden;
}

.map-frame .map-embed-frame {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0;
}

.map-frame .map-embed-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ---------- ALAMAT & JAM OPERASIONAL (kiri-kanan) ---------- */
.outlet-meta {
  display: flex;
  justify-content: space-between;
  /* alamat kiri, jam kanan */
  align-items: flex-start;
  gap: 24px;
  max-width: 800px;
  margin: 24px auto 0;
  flex-wrap: wrap;
  /* untuk mobile */
}

.outlet-meta p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.92rem;
  margin: 0;
  line-height: 1.6;
}

.outlet-meta strong {
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: 4px;
}

.outlet-address,
.outlet-hours {
  text-align: left;
}



.map-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  text-decoration: underline;
  transition: opacity 0.2s ease;
}

.map-link:hover {
  opacity: 0.85;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 860px) {
  .kontak-hero .container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .kontak-hero {
    padding: 60px 0 80px;
  }

  .kontak-left {
    text-align: center;
    align-items: center;
  }

  .marketplace-icons {
    justify-content: center;
  }

  .hero-image-wrap .placeholder-img {
    aspect-ratio: 4 / 3;
  }

  .outlet-meta {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }

  .outlet-address,
  .outlet-hours {
    text-align: center;
  }
}

@media (max-width: 500px) {
  .kontak-hero {
    padding: 40px 0 60px;
  }

  .marketplace-icon .icon-circle {
    width: 44px;
    height: 44px;
  }

  .marketplace-icon img {
    width: 22px;
    height: 22px;
  }

  .marketplace-icon span {
    font-size: 0.6rem;
  }

  .map-frame {
    border-width: 3px;
  }
}