.parallax {
    background-image: url('../files/images/parallax/two.jpg');
    height: 100vh; /* Changed from 60vh to 100vh for full height */
    background-attachment: fixed;
    background-position: center; /* Changed from bottom to center for better centering */
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0; /* Removed padding to ensure full height */
}
/* Add this new rule for the overlay */
.parallax::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Adjust the last value (0.5) to control darkness */
}

.parallax-text {
    color: white;
    text-align: center;
    position: relative; /* Add this to ensure text stays above the overlay */
    z-index: 1; /* Add this to ensure text stays above the overlay */
}

.parallax-text h1 {
    font-size: 48px;
    margin-bottom: 10px;
    color: white;
    font-family: sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Add shadow for better readability */
}

.parallax-text p {
    font-size: 24px;
    margin-top: 0;
    color: white;
    font-family: sans-serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); /* Adjust shadow for better readability */
}
