/*
Theme Name: Hello Elementor Child
Template: hello-elementor
Version: 1.0.0
*/

.hover-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    display: block;
}

.hover-image-wrapper img {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    transition: opacity 0.3s ease-in-out;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    display: block !important;
    box-shadow: none !important;
    line-height: 0;
}

.hover-main {
    opacity: 1;
    z-index: 1;
}

.hover-gif {
    opacity: 0;
    z-index: 2;
    pointer-events: none;
}

.hover-image-wrapper:hover .hover-gif {
    opacity: 1;
}

.hover-image-wrapper:hover .hover-main {
    opacity: 0;
}

.lv-password-wrapper {
    max-width: 400px;
    margin: 120px auto;
    padding: 30px;
    text-align: center;
    background: rgba(255,255,255,0.85); /* semi-white box */
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.lv-password-title {
    font-size: 1.6rem;
    margin-bottom: 20px;
    font-family: "Georgia", serif;
    text-transform: uppercase;
}

.lv-password-input {
    padding: 12px;
    width: 100%;
    max-width: 250px;
    margin: 0 auto 15px auto;
    display: block;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.lv-password-submit {
    padding: 10px 20px;
    background: black;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.2s ease-in-out;
}

.lv-password-submit:hover {
    background: #444;
}
