/* Theme Variables - Royal Purple & Gold */
:root {
    --primary: #2e1065; /* violet-950 */
    --primary-light: #5b21b6; /* violet-800 */
    --accent: #d97706; /* amber-600 */
    --accent-light: #f59e0b; /* amber-500 */
    --bg-warm: #fffbeb; /* amber-50 */
    --text-dark: #1f2937;
    --text-light: #9ca3af;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Times New Roman', 'Songti SC', serif; /* Serif for authority */
    background-color: var(--bg-warm);
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
}

/* Typography Overrides */
.font-sans {
    font-family: 'Inter', system-ui, sans-serif;
}

.font-serif {
    font-family: 'Playfair Display', 'Times New Roman', serif;
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease, transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.8s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Custom Components */
.gold-gradient-text {
    background: linear-gradient(135deg, #d97706 0%, #fcd34d 50%, #b45309 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.btn-gold {
    background: linear-gradient(to right, #d97706, #b45309);
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.3);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(217, 119, 6, 0.5);
}

.card-hover {
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.card-hover:hover {
    transform: translateY(-10px);
    border-color: var(--accent-light);
    box-shadow: 0 20px 40px rgba(46, 16, 101, 0.1);
}

/* Image overlay gradient */
.overlay-purple {
    background: linear-gradient(to bottom, rgba(46, 16, 101, 0.3), rgba(46, 16, 101, 0.9));
}