/*------------------------------------------------------------------
Full-width background image
Additive-only: sits behind existing content via negative z-index.
Replace the dummy path below with your actual image path.
-------------------------------------------------------------------*/

.site_content {
    position: relative;
}

.site_content::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;

    /* 👇 REPLACE THIS with your real image path */
    background-image: url("../images/guruvayur/bg2.png");

    background-repeat: no-repeat;
    background-position: left top;
    background-size: cover;      /* fills full width/height, crops if needed */
    background-attachment: fixed; /* stays put while page scrolls */

    /* dark overlay so text stays readable on top of the image */
    background-color: rgba(11, 19, 21, 0.55);
    background-blend-mode: darken;
}