/* ============================================
   BASE: Variables, body, overlay, positioning
   ============================================ */

/* Forest Background */
:root {
    --theme-bg-color: rgba(227, 210, 255, 0.95); /* Lavender/Light Purple */
}

body {
    background-color: #232620; /* Dark forest/grey fallback to prevent white flash */
    background-image: url("https://images.unsplash.com/photo-1448375240586-882707db888b?w=1920&q=80");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    min-height: 100vh;
}

/* Semi-transparent overlay for the whole page */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    z-index: -1;
}

/* Main content sections */
section {
    position: relative;
}

/* Content containers with transparency */
.container,
.container-fluid {
    position: relative;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}
