body {
    margin: 0;
    overflow-x: hidden;
    background-color: #f0f0f0; /* Just a light background */
}

.container {
    position: relative;
    width: 100%;
    max-width: 1200px; /* Fixed width when larger than 1200px */
    margin: 0 auto; /* Center the container */
}

.background-image {
    width: 100%;
    height: 5552px; /* Original height of the background image */
    background-image: url('images/background-lit.png');
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center top;
    position: absolute;
    top: 0;
    left: 0;
}

.clickable-area {
    position: absolute;
    cursor: pointer;
    /* For debugging: background-color: rgba(255, 0, 0, 0.3); */
}

/* Specific Clickable Area Positions and Sizes (based on 1200px width) */
#area1 { top: 1283px; left: 49px; width: 162px; height: 89px; }
#area2 { top: 1283px; left: 231px; width: 162px; height: 89px; }
#area3 { top: 1283px; left: 420px; width: 162px; height: 89px; }
#area4 { top: 1283px; left: 609px; width: 162px; height: 89px; }
#area5 { top: 1283px; left: 795px; width: 162px; height: 89px; }
#area6 { top: 1283px; left: 980px; width: 162px; height: 89px; }
#area7 { top: 1513px; left: 67px; width: 196px; height: 137px; }
#area8 { top: 1513px; left: 281px; width: 196px; height: 137px; }
#area9 { top: 1513px; left: 496px; width: 196px; height: 137px; }
#area10 { top: 1513px; left: 711px; width: 196px; height: 137px; }
#area11 { top: 1513px; left: 923px; width: 196px; height: 137px; }
#area12 { top: 1713px; left: 40px; width: 1113px; height: 114px; }
#area13 { top: 5377px; left: 59px; width: 1078px; height: 114px; }
/* Scroll-triggered images */
.scroll-fade-image {
    position: absolute;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    pointer-events: none; /* Allows clicks on elements behind the image */
}

#bubble1 { top: 2844px; left: 23px; width: 318px; height: 318px; }
#bubble2 { top: 3296px; left: 851px; width: 318px; height: 318px; }
#bubble3 { top: 3614px; left: 23px; width: 318px; height: 318px; }
#bubble4 { top: 3825px; left: 851px; width: 318px; height: 318px; }
#bubble5 { top: 4095px; left: 23px; width: 318px; height: 318px; }
#bubble6 { top: 4520px; left: 23px; width: 240px; height: 240px; }


/* Image Overlay Triggers */
#view1-trigger { top: 4605px; left: 59px; width: 517px; height: 346px; }
#view2-trigger { top: 4605px; left: 620px; width: 517px; height: 346px; }
#view3-trigger { top: 4991px; left: 59px; width: 517px; height: 346px; }
#view4-trigger { top: 4991px; left: 620px; width: 517px; height: 346px; }




/* Image Overlay */
.image-overlay {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.8);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease-in-out;
    z-index: 1000;
}

/* Specific Image Overlay Positions and Sizes */
#view1-overlay { top: 4605px; left: 59px; width: 1077px; height: 722px; }
#view2-overlay { top: 4605px; left: 60px; width: 1077px; height: 722px; }
#view3-overlay { top: 4605px; left: 59px; width: 1077px; height: 722px; }
#view4-overlay { top: 4605px; left: 60px; width: 1077px; height: 722px; }

.image-overlay.active {
    opacity: 1;
    pointer-events: auto;
    cursor: pointer;
}