/* Shared full-page background for interior pages */
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    color: #ffffff;
    line-height: 1.6;
    background-image: url('../assets/bg.png');
    background-image: image-set(
        url('../assets/bg.webp') type('image/webp'),
        url('../assets/bg.png') type('image/png')
    );
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(49, 49, 49, 0.8);
    z-index: -1;
}

@media (max-width: 768px) {
    body {
        background-attachment: scroll;
    }
}