/* GLOBAL FONT */
body {
    font-family: 'Roboto', sans-serif;
}

/* BACKGROUND */
/* BACKGROUND */
/* BACKGROUND */

#background {
    background-image: url('img/bg.png'); 
    background-position: center; 
    background-repeat: no-repeat; 
    background-size: contain; 
    position: fixed; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    width: 1000px; /* Adjust percentage as needed */
    height: 450px; /* Maintain aspect ratio */
    z-index: -1; 
}

#instruction-text {
    font-size: 20px; /* Adjust for readability */
    color: #333; /* Neutral dark color for clarity */
    text-align: center; /* Center the text for better visual balance */
    margin: 20px auto; /* Add space around the text */
    line-height: 1.5; /* Improve readability */
    max-width: 600px; /* Prevent the text from stretching too wide */
}




/* IMAGES */
/* IMAGES */
/* IMAGES */

.image-block {
    position: fixed;
    width: 70px;
    height: 85px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
    border: 2px solid #0e782f; /* Updated border to 2px */
    border-radius: 8px; /* Rounded corners for a sleek look */
}

.image-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px; /* Slightly smaller radius for the image itself to create a layered effect */
}

/* Hover Effect for Images */
.image-block:hover {
    transform: scale(1.05); /* Reduced scale for a subtler zoom */
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.4); /* Slightly deeper shadow for emphasis */
    border-color: #0e782f; /* Keeps the border color consistent */
}



/* Positioning Images */
#image-1 {
    top: 185px;
    left: 540px;
}

#image-2 {
    top: 185px;
    left: 635px;
}

#image-3 {
    top: 185px;
    left: 743px;
}

#image-4 {
    top: 185px;
    left: 838px;
}

/* Button Block Styling */
#button-block {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

/* Clean and Modern Button Styling */
#button-block button {
    background-color: #0e782f; /* Clean green color */
    color: #ffffff; /* White text for contrast */
    font-size: 16px; /* Readable font size */
    padding: 12px 24px; /* Comfortable padding */
    border: none; /* Remove default border */
    border-radius: 6px; /* Subtle rounded corners */
    cursor: pointer; /* Pointer cursor on hover */
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

/* Button Hover Effect */
#button-block button:hover {
    background-color: #0b5f24; /* Darker green on hover */
    transform: translateY(-3px); /* Slight lift on hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); /* Enhanced shadow on hover */
}



/* POPUP */
/* POPUP */
/* POPUP */

/* Style for the popup background */
#popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none; /* Hidden by default */
    justify-content: center;
    align-items: center;
}

/* Style for the popup content box */
#popup-content {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    min-width: 200px; /* Smaller minimum width */
    max-width: 400px; /* Limit the maximum width */
    width: auto; /* Let the width adapt to the content */
}


/* Button Styles */
button {
    margin-top: 10px;
    padding: 12px 24px; /* Comfortable padding */
    border: none; /* Remove default border */
    background-color: #0e782f; /* Clean green color */
    color: white; /* High contrast text */
    border-radius: 6px; /* Subtle rounded corners */
    cursor: pointer; /* Pointer cursor on hover */
    font-size: 16px; /* Readable font size */
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

/* Button Hover Effect */
button:hover {
    background-color: #0b5f24; /* Darker green on hover */
    transform: translateY(-3px); /* Slight lift on hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); /* Enhanced shadow on hover */
}
