/* * ==========================================
 * GLOBAL STYLES & FULL PAGE BACKGROUND
 * ========================================== */
body {
    background-color: var(--color-bg-base);
    background-image: url('../assets/images/newbg.webp');
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    color: var(--color-text-main);
    
    /* NEW: Sticky Footer Architecture */
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Forces the body to be at least the height of the screen */
}

h1, h2, h3 { 
    margin-top: 0; 
}