.image-section {
    position: relative;
    width: 100%;
    height: 80vh; /* Full-screen height */
    overflow: hidden;
}

.image-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure the image covers the full area without distortion */
    object-position: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 11, 11, 0.5);/* Semi-transparent black background */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
    box-sizing: border-box;
}

.overlay h1 {
    font-size: 3em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7); /* Optional: Adds shadow to text */
}

.links a {
    color: red;
    text-decoration: none;
    font-size: 1.2em;
    margin: 10px;
    padding: 10px 20px;
    background-color: rgba(255, 255, 255, 0.3); /* Slightly opaque white background */
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.links a:hover {
    background-color: rgba(255, 255, 255, 0.7); /* Lighten the background on hover */
    color: black;
}
