.hero-container { position: relative; width: 100%; min-height: 500px; background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; overflow: hidden; } /* Dark color overlay */ .hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; /* Black with 50% opacity — adjust the last number to change darkness */ background-color: rgba(0, 0, 0, 0.5); z-index: 1; } /* Ensure content stays above the overlay */ .hero-content { position: relative; z-index: 2; /* Keeps text above the z-index: 1 overlay */ color: #ffffff; text-align: center; max-width: 800px; padding: 20px; }