.community-hero {
    background: url('/images/community/zoom-bg-4.jpg') no-repeat center center;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7); /* Improving text visibility */
    background-size: cover;
    position: relative;
    color: #fff;
    background-attachment: fixed;
    height:100vh;
}
.community-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.25); /* Dark overlay for text contrast */
    z-index: 1;
}
.community-hero h1,
.community-hero p,
.community-hero a.btn {
    position: relative;
    z-index: 2;
}
.community-hero h1 {
    font-size: 4rem; /* Even larger font size for the headline */
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7); /* Ensuring text is readable */
}

.community-hero p {
    font-size: 1.75rem; /* Larger text for introduction */
    margin-top: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}