/* Custom Cosmic Styling & Animations for Astrology App */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;700;900&family=Poppins:wght@300;400;500;600;700&display=swap');

html {
    scroll-behavior: smooth;
}

body {
    background-color: #080512;
    color: #e2e8f0;
    font-family: 'Poppins', sans-serif;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #080512;
}

::-webkit-scrollbar-thumb {
    background: #2e1065;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #f59e0b;
}

/* Glowing Neon Effects */
.glow-gold {
    box-shadow: 0 0 25px rgba(245, 158, 11, 0.35);
}

.glow-purple {
    box-shadow: 0 0 25px rgba(147, 51, 234, 0.35);
}

/* Fade In Keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.4s ease-out forwards;
}

/* Three.js Canvas positioning */
#hero-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -10;
    pointer-events: none;
}
