/* Text Shadow Effect - "Floating Text" */

/* Apply text shadow to all text elements */
body {
    text-shadow: 0 0 5px rgba(148, 142, 141, 0.5);
}

/* Slightly stronger shadow for headings */
h1, h2, h3, h4, h5, h6 {
    text-shadow: 0 0 6px rgba(148, 142, 141, 0.6);
}

/* Navigation */
nav a {
    text-shadow: 0 0 5px rgba(148, 142, 141, 0.5);
}

/* Links */
a {
    text-shadow: 0 0 5px rgba(148, 142, 141, 0.5);
}

/* Vignette overlay - darkening at edges */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle, transparent 85%, rgba(148, 142, 141, 0.2) 100%);
    box-shadow: 0px 0px 40px 10px rgba(148, 142, 141, 0.15) inset;
    pointer-events: none;
    z-index: 9999;
}
