/* Custom animations and styling for the Burgman Street Page */
body { font-family: 'Inter', sans-serif; }
.font-oswald { font-family: 'Oswald', sans-serif; }

.pearl-bg {
    background: radial-gradient(circle at top right, #ffffff 0%, #f4f6f9 40%, #e2e8f0 100%);
    position: relative;
}
.pearl-bg::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

.tech-grid {
    background-image: linear-gradient(rgba(30,58,138,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,58,138,0.03) 1px, transparent 1px);
    background-size: 30px 30px;
}

.dark-tech-grid {
    background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 30px 30px;
}

.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* Animations */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.animate-fade-in { animation: fadeIn 0.5s ease-out forwards; }

@keyframes slideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.animate-slide-up { animation: slideUp 0.6s ease-out forwards; }

.view-section { display: none; }
.view-section.active { display: block; }
