/* Custom styles to complement Tailwind */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Lato:wght@300;400;700&display=swap');

:root {
    --primary-bg: #0f172a;
    --accent-gold: #fbbf24;
    --mystic-purple: #581c87;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--primary-bg);
    background-image: radial-gradient(circle at 50% 50%, #1e293b 0%, #0f172a 100%);
    color: #e2e8f0;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .font-serif {
    font-family: 'Cinzel', serif;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0f172a;
}
::-webkit-scrollbar-thumb {
    background: #475569;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #64748b;
}

/* Ambient glow effects */
.glow-text {
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.3);
}

.card-hover {
    transition: all 0.3s ease;
}
.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(88, 28, 135, 0.5);
}

/* Utility for layout uniqueness */
.diagonal-section {
    position: relative;
    z-index: 1;
}
.diagonal-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(88, 28, 135, 0.1) 0%, rgba(15, 23, 42, 0) 100%);
    transform: skewY(-3deg);
    z-index: -1;
    transform-origin: top left;
}
