@font-face {
    font-family: 'Cinzel';
    src: url('../fonts/cinzel-bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter-light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

:root {
    --saint-gold: #d4af37;
    --saint-dark: #0a0a0a;
    --saint-gray: #1a1a1a;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--saint-dark);
}

.font-cinzel {
    font-family: 'Cinzel', serif;
}

/* Divine Glow Animation */
.divine-glow {
    animation: divine-pulse 6s infinite ease-in-out;
}

@keyframes divine-pulse {
    0%, 100% { opacity: 0.6; filter: brightness(1); }
    50% { opacity: 1; filter: brightness(1.3) drop-shadow(0 0 15px rgba(212,175,55,0.3)); }
}

.slow-breath {
    animation: breath 20s infinite ease-in-out;
}

@keyframes breath {
    0%, 100% { transform: scale(1.1); }
    50% { transform: scale(1); }
}
