/* Basic styling */
body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-family: Arial, sans-serif;
    background: #000; /* Set a background color to blend with shadows */
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.parallax {
    position: relative;
    height: 100vh;
    width: 100vw; /* Ensure it takes full viewport width */
    overflow: hidden;
}

.parallax-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover; /* Adjusted to cover the entire layer */
    background-repeat: no-repeat;
    background-position: center;
    transition: opacity 0.5s ease-in-out; /* Smooth transition */
}

.parallax-layer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(0,0,0,0) 60%, rgba(0,0,0,0.5) 100%); /* Soft gradient overlay */
    pointer-events: none; /* Allow clicks to pass through */
}

.eye {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Center the eye */
    transition: opacity 5s ease-in-out; /* Smooth transition for opacity */
    opacity: 0; /* Initial opacity set to 0 */
    width: 50%; /* Adjust width as necessary */
    height: auto; /* Maintain aspect ratio */
    object-fit: contain; /* Ensure the complete image is shown */
}

.ps {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5); /* Adjust the scale here */
    transition: opacity 5s ease-in-out; /* Smooth transition for opacity */
    opacity: 0; /* Initial opacity set to 0 */
    width: 50%; /* Adjust width as necessary */
    height: auto; /* Maintain aspect ratio */
    object-fit: contain; /* Ensure the complete image is shown */
}

.parallax-layer-eye-back img,
.parallax-layer-eye-mid-back img,
.parallax-layer-eye-mid-front img,
.parallax-layer-eye-front img,
.parallax-layer-ps img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain; /* Ensure the complete image is shown */
}
