@import "tailwindcss";

@theme {
  --color-brand: #581C87;
  --color-brand-light: #7c3aed;
  --color-brand-dark: #3b0764;
  --color-teal: #0ABAB5;
  --color-teal-light: #5eead4;
  --color-gold: #D4AF37;
  --color-gold-light: #f5d060;
  --color-dark: #1A1A2E;
  --font-title: 'Playfair Display', serif;
  --font-subtitle: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
}

body {
  font-family: var(--font-body);
  color: #1A1A2E;
  background: #f8fafc;
}

h1, h2 { font-family: var(--font-title); }
h3, h4, h5, h6 { font-family: var(--font-subtitle); }

/* Smooth transitions */
.card-hover { transition: all 0.3s ease; }
.card-hover:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(88,28,135,0.12); }

/* Checkbox custom */
.check-brand:checked { accent-color: #581C87; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #94a3b8; }

/* Accordion animation */
.accordion-content {
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}

/* Tab underline */
.tab-active {
  border-bottom: 3px solid #581C87;
  color: #581C87;
  font-weight: 600;
}

/* Print */
@media print { .no-print { display: none !important; } }
