/* Very light camera background for all pages */
body {
    background-image: url('pic/have_camera_will_travel.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    /* Light overlay to ensure text readable */
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85); /* 85% white overlay */
    z-index: -1;
}

/* Ensure cards stay readable */
.card {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(5px);
}
