/* The Prosperity Grid Custom Styles */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:wght@400;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    /* Core Brand Colors */
    --color-primary: #673de6; /* Vibrant Purple */
    --color-primary-dark: #2f1c6a; /* Deep Meteorite */
    --color-accent: #c6a664; /* Gold/Bronze accent from the site */
    
    /* Backgrounds & Surfaces */
    --bg-dark: #111111;
    --bg-darker: #0a0a0a;
    --bg-card: #1c1c1f;
    --bg-card-hover: #26262a;
    
    /* Text Colors */
    --text-light: #ffffff;
    --text-muted: #9ca3af;
    --text-dark: #1a1a1a;

    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-ui: 'Poppins', sans-serif;
    --font-body: 'Montserrat', sans-serif;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

.font-ui {
    font-family: var(--font-ui);
}

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

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

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* Custom Glow Utilities */
.glow-primary {
    box-shadow: 0 0 20px rgba(103, 61, 230, 0.4);
}

.glow-accent {
    box-shadow: 0 0 20px rgba(198, 166, 100, 0.3);
}

/* Glassmorphism */
.glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.glass-nav {
    background: rgba(17, 17, 17, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Custom Gradients */
.bg-gradient-hero {
    background: radial-gradient(circle at 50% 0%, #2f1c6a 0%, #111111 60%);
}

.text-gradient {
    background: linear-gradient(135deg, #ffffff 0%, #a5b4fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
