/* Core Theme Variables - Set to Light & Green */
:root {
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(0, 0, 0, 0.08);
    --accent-green: #c56b22;
    --accent-glow: rgba(34, 197, 94, 0.15);
}

/* Fix Font and Base Background */
body {
    background-color: #ffffff !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    color: #1e293b;
    /* Darker slate for better readability on white */
    margin: 0;
    padding: 0;
}

/* Visible Grid Pattern (Dark dots on White background) */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(0, 0, 0, 0.07) 1px, transparent 0);
    background-size: 40px 40px;
    z-index: -5;
    pointer-events: none;
}

/* Subtle Green Pulse in background */
body::after {
    content: "";
    position: fixed;
    top: 50%;
    left: 50%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.04) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: -4;
    pointer-events: none;
    animation: pulseBG 12s infinite alternate;
}

@keyframes pulseBG {
    from {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(1);
    }

    to {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Glassmorphism Cards for Light Mode */
.bg-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    transition: all 0.4s ease;
}

/* Hover Glow Effect using Logo Green */
.group:hover .bg-card {
    border-color: var(--accent-green) !important;
    box-shadow: 0 15px 40px var(--accent-glow) !important;
    transform: translateY(-4px);
}

/* Selection Color */
::selection {
    background-color: rgba(34, 197, 94, 0.2);
    color: #fcff68;
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Cursor - Green Outline */
#custom-cursor {
    border: 2px solid var(--accent-green);
    background: rgba(34, 197, 94, 0.1);
}

@media (min-width: 1024px) {

    body,
    a,
    button {
        cursor: none;
    }
}

/* Update the glow effect */
.group:hover .bg-card {
    border-color: rgba(255, 215, 0, 0.4) !important;
    /* Gold border on hover */
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.15) !important;
    /* Gold glow */
    transform: translateY(-4px);
}

/* Update the background pulse animation color */
.pulse-bg {
    background: radial-gradient(circle, rgba(255, 215, 0, 0.04) 0%, transparent 70%);
}

/* Update the hover glow effect to gold */
.group:hover .bg-card {
    border-color: #FFD700 !important;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.15) !important;
    transform: translateY(-4px);
}

/* Ensure strong contrast for all body text */
body {
    color: #0f172a !important;
    /* Forces high-contrast dark text */
    line-height: 1.6;
    /* Improves readability of paragraphs */
}

/* Make headings pop */
h1,
h2,
h3,
h4 {
    color: #000000 !important;
    font-weight: 700;
}