/* themes/theme12/style.css - Wayang Theme */
:root {
  --primary: #9e6c26;
  --primary-hover: #b8860b;
  --primary-light: #f5eedc;
  --secondary: #704214;
  --secondary-light: #4a2b0c;
  --bg: #1c1815;
  --text: #cda87c;
  --muted: #9e7f5b;
  --card-bg: rgba(28, 24, 21, 0.85);
  --card-shadow: 0 6px 28px rgba(0, 0, 0, 0.8);
}

/* Custom Image Positioning Classes */
.theme-img {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.8;
}

/* Animations */
@keyframes shake-vertical {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes vibrate-1 {
  0% { transform: translate(0); }
  20% { transform: translate(-2px, 2px); }
  40% { transform: translate(-2px, -2px); }
  60% { transform: translate(2px, 2px); }
  80% { transform: translate(2px, -2px); }
  100% { transform: translate(0); }
}

.shake-vertical {
  animation: shake-vertical 4s ease-in-out infinite;
}

.shake-vertical-delay-1 {
  animation: shake-vertical 4s ease-in-out infinite 1s;
}

.shake-vertical-delay-2 {
  animation: shake-vertical 4s ease-in-out infinite 2s;
}

.vibrate-1-8s {
  animation: vibrate-1 8s linear infinite both;
}

.vibrate-1-10s {
  animation: vibrate-1 10s linear infinite both;
}

.vibrate-1-15s {
  animation: vibrate-1 15s linear infinite both;
}

.pulsate-fwd {
  animation: pulsate-fwd 2s ease-in-out infinite both;
}

@keyframes pulsate-fwd {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.cover-frame {
  width: 260px;
  height: 260px;
  margin: 10px auto 25px;
  position: relative;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 1s ease both;
}
.cover-frame img.cover-photo {
  width: 175px;
  height: 175px;
  border-radius: 50%;
  object-fit: cover;
  position: absolute;
  z-index: -1;
  border: 4px solid var(--primary);
  box-shadow: 0 4px 16px rgba(0,0,0,0.5);
}

/* Guest Pill Custom Styling for Theme 12 */
.guest-pill {
  background: #ffffff !important;
  color: #3d2207 !important;
  font-family: 'Philosopher', serif !important;
  border: 2px solid var(--primary) !important;
  padding: 16px 28px !important;
  display: inline-block !important;
  border-radius: 12px !important; /* Elegant rounded card */
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25) !important;
  min-width: 250px !important;
  margin-top: 24px !important;
}

.guest-pill small {
  color: #5c3c15 !important; /* Lighter dark brown */
  text-transform: none !important;
  font-family: 'Philosopher', serif !important;
  font-size: 0.8rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.04em !important;
  display: block !important;
  margin-bottom: 6px !important;
}

.guest-pill .guest-name {
  color: #3d2207 !important; /* Dark brown */
  font-family: 'Philosopher', serif !important;
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  text-transform: none !important;
  display: block !important;
}

/* Mempelai Ortu Info & IG Username Override for Theme 12 */
.mempelai-meta, .ig-link {
  font-family: 'Philosopher', serif !important;
}
.mempelai-meta {
  font-size: 0.95rem !important;
}
.ig-link {
  font-size: 0.9rem !important;
}

/* Kisah Cinta (Timeline) Overrides for Theme 12 */
.timeline-title {
  font-family: 'Philosopher', serif !important;
  font-weight: 700 !important;
  font-size: 1.25rem !important;
  color: var(--primary) !important;
}

.timeline-date {
  font-family: 'Philosopher', serif !important;
  text-transform: none !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.02em !important;
  font-weight: 600 !important;
  color: var(--muted) !important;
}

/* Acara (Event Venue) Override for Theme 12 */
.event-venue {
  font-family: 'Philosopher', serif !important;
  font-weight: 700 !important;
  font-size: 1.15rem !important;
}

/* Gift (Kirim Hadiah) Overrides for Theme 12 */
.bank-info, .qris-label {
  font-family: 'Philosopher', serif !important;
}
.bank-info {
  font-size: 0.95rem !important;
}
.qris-label {
  font-size: 0.9rem !important;
  text-transform: uppercase !important;
}

/* Gallery Image Gap / Autofit Fix for Theme 12 / Jawa */
.gallery-item {
  background: transparent !important;
}
.gallery-item img {
  height: 100% !important;
}

/* Live Streaming Card Overrides for Theme 12 / Jawa */
.livestream {
  background: rgba(0, 0, 0, 0.3) !important;
  border: 1px dashed var(--primary) !important;
  padding: 20px !important;
  border-radius: 12px !important;
}
