/* =========================================================
   MEMBER DETAIL – PUBLIC (UNIFIED GLASSMORPHISM UI)
 ========================================================= */

/* ================= HERO ================= */
.anggota-hero {
  background: linear-gradient(135deg, #1a1026, #241437);
  padding-top: 140px;
  padding-bottom: 90px;
}

.anggota-hero h1 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #ffffff;
}

.detail-badge {
  display: inline-block;
  margin-top: 10px;
  padding: 6px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f2a93b, #ffd27d);
  color: #1C1228;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ================= SECTION ================= */
.detail-section {
  background: #0f0b16;
  padding-top: 60px;
  padding-bottom: 120px;
}

/* ================= GRID ================= */
.detail-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 44px;
  align-items: flex-start;
}

/* ================= GALLERY ================= */
.detail-gallery {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* FOTO UTAMA */
.detail-main-image {
  width: 100%;
  height: 400px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.detail-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.detail-main-image:hover img {
  transform: scale(1.03);
}

/* FOTO BAWAH */
.detail-sub-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.detail-sub-images img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 16px;
  cursor: pointer;
  box-shadow: 0 18px 40px rgba(0,0,0,0.4);
  transition: 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.detail-sub-images img:hover {
  transform: translateY(-4px);
  border-color: rgba(242, 169, 59, 0.4);
}

/* ================= INFO CARD (GLASSMORPHISM) ================= */
.detail-info-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
  backdrop-filter: blur(10px);
}

.info-block {
  margin-bottom: 24px;
}

.info-block h4 {
  color: #F2A93B;
  font-size: 14px;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-icon {
  width: 18px;
  height: 18px;
  stroke: #F2A93B;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.info-block p {
  color: #E5E7EB;
  font-size: 16px;
  line-height: 1.8;
}

/* INTERACTIVE LINKS */
.interactive-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  line-height: 1.6;
}

.interactive-link:hover {
  color: #F2A93B;
  text-decoration: underline;
}

.external-icon {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  opacity: 0.7;
}

/* WHATSAPP LINK */
.wa-link {
  font-weight: 600;
  font-size: 18px;
  margin-top: 4px;
}

.wa-link:hover {
  color: #25D366; /* WhatsApp color on hover */
  text-decoration: none;
}

.chat-text {
  font-size: 12px;
  background: rgba(37, 211, 102, 0.2);
  color: #25D366;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-left: 4px;
  transition: 0.3s ease;
}

.wa-link:hover .chat-text {
  background: #25D366;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

/* INFO GRID */
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.grid-item.full-width {
  grid-column: 1 / -1;
}

.grid-item h4 {
  color: #F2A93B;
  font-size: 13px;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}

.grid-icon {
  width: 16px;
  height: 16px;
  stroke: #F2A93B;
  stroke-width: 2;
  fill: none;
  opacity: 0.9;
}

.grid-item p {
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
}

/* BOOKING SECTION */
.booking-section {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: center;
}

.btn-booking {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  background: linear-gradient(135deg, #f2a93b, #ffd27d);
  color: #1C1228;
  font-size: 18px;
  font-weight: 800;
  padding: 16px 24px;
  border-radius: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 25px rgba(242, 169, 59, 0.3);
}

.btn-booking svg {
  width: 24px;
  height: 24px;
  stroke: #1C1228;
  stroke-width: 2.5;
  fill: none;
}

.btn-booking:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(242, 169, 59, 0.5);
  color: #000;
}

/* STAR RATING */
.star-rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 12px;
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(242, 169, 59, 0.2);
}

.star-icon {
  width: 18px;
  height: 18px;
  fill: #F2A93B;
  filter: drop-shadow(0 0 6px rgba(242, 169, 59, 0.5));
}

.star-text {
  color: #E5E7EB;
  font-size: 14px;
  font-weight: 600;
  margin-left: 8px;
}


/* ================= RESPONSIVE ================= */
@media(max-width: 1024px) {
  .detail-grid {
    grid-template-columns: 1fr;
  }
}

@media(max-width: 640px) {
  .anggota-hero {
    padding-top: 110px;
    padding-bottom: 70px;
  }
  .anggota-hero h1 {
    font-size: 32px;
  }
  .detail-main-image {
    height: 280px;
  }
  .detail-sub-images img {
    height: 110px;
  }
  .info-grid {
    grid-template-columns: 1fr;
  }
  .detail-info-card {
    padding: 24px;
  }
}
