/* ========================================
   BEEMYE - Helper Detail Page Styles
   ======================================== */

/* Detail Container */
.detail-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 24px 40px;
}

/* Top Section */
.detail-top {
  display: flex;
  gap: 48px;
  margin-bottom: 60px;
}

/* Photo Section */
.detail-photo-section {
  flex-shrink: 0;
  width: 320px;
}

.detail-photo {
  border: 5px solid #7c5cbc;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 16px;
}

.detail-photo img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.detail-video-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px;
  background: #1a2744;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s;
}

.detail-video-btn:hover {
  background: #2a3a5a;
}

.detail-video-btn svg {
  width: 20px;
  height: 20px;
}

/* Info Section */
.detail-info-section {
  flex: 1;
}

.detail-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.detail-id {
  font-size: 1.1rem;
  color: #1a2744;
  font-weight: 600;
}

.detail-status {
  display: inline-block;
  padding: 4px 12px;
  background: #27ae60;
  color: #fff;
  font-size: 0.8rem;
  border-radius: 4px;
}

.detail-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a2744;
  margin-bottom: 24px;
}

/* Info Grid */
.detail-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.detail-info-item {
  display: flex;
}

.detail-info-item-label {
  width: 80px;
  font-size: 0.9rem;
  color: #666;
  flex-shrink: 0;
}

.detail-info-item-value {
  font-size: 0.9rem;
  color: #333;
  font-weight: 500;
}

/* Skills */
.detail-skills-title {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 12px;
}

.detail-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.detail-skill-tag {
  display: inline-block;
  padding: 6px 14px;
  background: #f0f0f0;
  color: #333;
  font-size: 0.85rem;
  border-radius: 20px;
}

/* Bottom Section */
.detail-bottom {
  border-top: 1px solid #eee;
  padding-top: 40px;
}

.detail-section-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a2744;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid #7c5cbc;
}

.detail-content-single {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 32px;
}

.detail-intro {
  font-size: 1rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e0e0e0;
}

.detail-info-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}

.detail-info-row:last-of-type {
  border-bottom: none;
  margin-bottom: 20px;
}

.detail-info-row .detail-info-label {
  flex-shrink: 0;
  width: 100px;
  font-size: 0.95rem;
  color: #1a2744;
  font-weight: 600;
}

.detail-info-row .detail-info-text {
  flex: 1;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

.detail-description {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.9;
  text-align: justify;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
}

/* Action Buttons */
.detail-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 48px 24px 80px;
}

.detail-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  padding: 14px 32px;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 500;
  transition: background 0.2s;
}

.detail-whatsapp-btn:hover {
  background: #1da851;
}

.detail-whatsapp-btn svg {
  width: 22px;
  height: 22px;
}

.detail-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #1a2744;
  padding: 14px 32px;
  border: 1px solid #1a2744;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.2s;
}

.detail-back-btn:hover {
  background: #1a2744;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .detail-top {
    flex-direction: column;
    gap: 32px;
  }

  .detail-photo-section {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .detail-info-grid {
    grid-template-columns: 1fr;
  }

  .detail-actions {
    flex-direction: column;
    align-items: center;
  }

  .detail-whatsapp-btn,
  .detail-back-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}
