/* Background overlay */
.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Adjust transparency */
    z-index: 1;
}

/* Text styling */
.header-text {
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    /* Text shadow */
}

/* Stroke effect for heading */
.header-text h1 {
    color: white;
    /* -webkit-text-stroke: 1px black; */
    /* Stroke effect */
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.8);
    /* Shadow for depth */
}

a {
    color: black;
    text-decoration: none;
}