/* ZionMatch Global Styles */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;600;700;800&display=swap');

:root {
  --rose: #E8445A;
  --deeprose: #c0392b;
  --darkblue: #1a2744;
  --navy: #0f1b3d;
  --cream: #FDF6E3;
  --blush: #fce4ec;
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
}

html {
  scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--rose); border-radius: 3px; }

/* Rose gradient text */
.text-gradient-rose {
  background: linear-gradient(135deg, #E8445A, #c0392b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Card hover */
.card-hover {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card-hover:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(232, 68, 90, 0.12);
}

/* Message bubbles */
.msg-bubble-me {
  background: var(--darkblue);
  color: white;
  border-radius: 18px 18px 4px 18px;
}
.msg-bubble-them {
  background: #f3f4f6;
  color: #374151;
  border-radius: 18px 18px 18px 4px;
}

/* Verified badge */
.badge-verified {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  font-size: 0.65rem;
  padding: 2px 6px;
  border-radius: 20px;
  font-weight: 700;
}

/* Premium badge */
.badge-premium {
  background: linear-gradient(135deg, #E8445A, #c0392b);
  color: white;
  font-size: 0.65rem;
  padding: 2px 6px;
  border-radius: 20px;
  font-weight: 700;
}

/* Form focus states */
input:focus, select:focus, textarea:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(232, 68, 90, 0.2);
}

/* Page entrance animation */
.page-enter {
  animation: fadeInUp 0.35s ease;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Virtue tags */
.virtue-tag {
  background: rgba(232, 68, 90, 0.08);
  color: var(--rose);
  border: 1px solid rgba(232, 68, 90, 0.2);
  border-radius: 20px;
  padding: 2px 10px;
  font-size: 0.72rem;
  font-weight: 600;
}

/* Completeness bar */
.completeness-bar {
  background: linear-gradient(90deg, var(--rose), var(--deeprose));
  border-radius: 4px;
  height: 8px;
  transition: width 0.5s ease;
}

/* Bible verse */
.bible-verse {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.8;
  border-left: 3px solid var(--rose);
  padding-left: 16px;
}

/* Glassmorphism */
.glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Heart pulse */
@keyframes heart-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}
.heart-pulse {
  animation: heart-pulse 1.5s ease-in-out infinite;
}

/* Rose button */
.btn-rose {
  background: linear-gradient(135deg, #E8445A, #c0392b);
  color: white;
  transition: all 0.3s;
}
.btn-rose:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232, 68, 90, 0.4);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  h1 { font-size: 2rem !important; }
  h2 { font-size: 1.5rem !important; }
}

/* Print styles */
@media print {
  nav, footer, button, .no-print { display: none !important; }
}
