/* assets/css/style.css */

/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

:root {
    --color-bg: #06021D;
    --color-bg-light: #0d0630;
    --color-primary: #3519E2;
    --color-accent: #AE78FF;
    --color-text-heading: #FFFFFF;
    --color-text-body: #9ca3af; /* Gray-400 equivalent */
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text-body);
    min-height: 100vh;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Instrument Sans', sans-serif;
    color: var(--color-text-heading);
}

/* Glassmorphism Classes - Dark Mode */
.glass {
    background: rgba(6, 2, 29, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.glass-nav {
    background: rgba(6, 2, 29, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.glass-card {
    background: rgba(255, 255, 255, 0.03); /* Very subtle light overlay */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.glass-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-primary);
    box-shadow: 0 0 20px rgba(53, 25, 226, 0.2); /* Neon Blue Glow */
}

/* Admin Specific Overrides (Keep admin light/readable or switch to dark? Let's keep admin clean for now, but ensure text is readable) */
.admin-sidebar {
    background: #111827;
    backdrop-filter: none;
    color: white;
}

/* Text Gradients */
.text-gradient {
    background: linear-gradient(to right, #3519E2, #AE78FF);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

@keyframes blob {
    0% { transform: translate(0px, 0px) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
    100% { transform: translate(0px, 0px) scale(1); }
}

.animate-blob {
    animation: blob 7s infinite;
}

.animation-delay-2000 {
    animation-delay: 2s;
}

/* Custom Utilities */
.btn-primary {
    background-color: var(--color-primary);
    color: white;
    transition: all 0.3s ease;
}
.btn-primary:hover {
    background-color: #2a13b5;
    box-shadow: 0 0 15px rgba(53, 25, 226, 0.4);
}

.btn-accent {
    background-color: var(--color-accent);
    color: white;
    transition: all 0.3s ease;
}
.btn-accent:hover {
    background-color: #9a60f0;
    box-shadow: 0 0 15px rgba(174, 120, 255, 0.4);
}
