body {
    /* Remove the solid background */
    background: url('image/sam-site.jpg') no-repeat center center fixed;
    font-family: Arial, sans-serif;
    position: relative;
}

/* Create a full-page background image with blur and darkening */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('image/sam-site.jpg') no-repeat center center fixed;
    background-size: cover;
    filter: blur(8px) brightness(25%);
    transform: scale(1.1); /* Scale up to hide the white blur around the edges */
    z-index: -1;
}
/* Updated Header Overlay becomes transparent */
.header-overlay {
    position: relative;
    width: 100%;
    height: 300px; /* Adjust as needed */
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;  /* White text for contrast */
    text-align: center;
    padding: 20px;
    margin-bottom: 20px;
}

/* Enhanced Header Title */
.header-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    margin: 0;
}

/* Enhanced Header Subtitle */
.header-subtitle {
    font-size: 1.2rem;
    margin-top: 10px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

/* Ensure the summary area has a transparent background too */
#summary,
#summary p,
#summary a {
    text-align: center;
}
#summary {
    background: transparent;
    color: #fff; /* Adjust text color for contrast */
}

/* Apply the same text shadow for summary headings */
#summary h2 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

/* Optionally, apply text-shadow to summary paragraphs too */
#summary p {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}
#summary a {
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-title {
        font-size: 2rem;
    }
    .header-subtitle {
        font-size: 1rem;
    }
}