/* MGF.AI public — base.css */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Outfit', system-ui, sans-serif;
    background: #000;
    color: var(--text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    line-height: 1.6;
}

/* ── Immersive Background Layer ────────────────────────────────── */
.immersive-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    background: var(--bg);
    overflow: hidden;
}

.immersive-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5) contrast(1.1);
    transition: opacity 1s ease-in-out;
}

/* Grain texture for luxury feel */
.immersive-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url("https://grainy-gradients.vercel.app/noise.svg");
    opacity: 0.05;
    pointer-events: none;
    mix-blend-mode: overlay;
}

/* Subtle vignette */
.immersive-bg-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.4) 100%),
                linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, #000 100%);
}

body > * { position: relative; z-index: 1; }

/* ══════════════════════════════════════════════════════════════
   NAVBAR (Minimalist Floating)
══════════════════════════════════════════════════════════════ */
