/* ── DETAIL PAGES SHARED CSS ── */

/* Force navbar always dark on detail pages */
.navbar {
  background: rgba(45, 16, 2, 0.97) !important;
  padding: 12px 0 !important;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

/* ── DETAIL HERO ── */
.detail-hero {
  position: relative;
  height: 380px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.detail-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #2A0F00;
  transition: transform 8s ease;
}

.detail-hero:hover .detail-hero-bg {
  transform: scale(1.04);
}

.detail-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(42,15,0,0.8) 0%, rgba(92,45,10,0.55) 60%, rgba(139,74,26,0.3) 100%);
}

.detail-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 0 52px 0;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  padding-bottom: 52px;
}

.back-link {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244,168,81,0.7);
  text-decoration: none;
  margin-bottom: 16px;
  transition: color 0.2s;
}

.back-link:hover { color: var(--gold); }

.detail-hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  margin-top: 8px;
}

/* ── DETAIL CONTENT ── */
.detail-wrapper {
  background: var(--cream);
  padding: 64px 0 80px;
}

.detail-intro {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-style: italic;
  font-weight: 300;
  color: var(--warm);
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 52px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
}

/* ── SERVICE LIST ── */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 56px;
}

.svc-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid rgba(232,131,42,0.12);
  transition: background 0.2s;
}

.svc-item:first-child { border-top: 1px solid rgba(232,131,42,0.12); }

.svc-item:hover {
  background: rgba(232,131,42,0.03);
  padding-left: 12px;
  padding-right: 12px;
  margin-left: -12px;
  margin-right: -12px;
}

.svc-item-icon {
  font-size: 28px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232,131,42,0.08);
  border: 1px solid rgba(232,131,42,0.15);
  flex-shrink: 0;
  margin-top: 2px;
}

.svc-item-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--deep);
  margin-bottom: 8px;
  line-height: 1.1;
}

.svc-item-body p {
  font-size: 14px;
  font-weight: 300;
  color: var(--warm);
  line-height: 1.75;
  max-width: 560px;
}

/* ── CTA BLOCK ── */
.detail-cta-block {
  text-align: center;
  padding: 40px;
  background: rgba(232,131,42,0.06);
  border: 1px solid rgba(232,131,42,0.15);
}

.detail-cta-block p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-style: italic;
  color: var(--warm);
  margin-bottom: 20px;
}

.detail-cta-block .whatsapp-btn {
  display: inline-block;
  width: auto;
  padding: 14px 40px;
}

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  .detail-hero { height: 300px; }
  .svc-item { gap: 16px; }
  .svc-item-icon { width: 40px; height: 40px; font-size: 22px; }
  .svc-item-body h3 { font-size: 20px; }
}
