/*Template: hello-elementor*/

/* Overlay styling */
#popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9998;
}

/* Popup styling */
#contact-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #F5E682;
    padding: 20px;
    border: 1px solid #432A19;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    height: auto;
    box-sizing: border-box;
    border-radius: 10px;
    color: #432A19;
    font-family: "Overpass", sans-serif;
    font-size: 17px;
    font-weight: 600;
    overflow: auto;
    z-index: 9999;
}

/* Ensure content inside the popup stays contained */
#popup-content {
    overflow-y: auto;
}

/* Form fields */
#contact-popup input,
#contact-popup textarea {
    background-color: white;
    border-radius: 10px;
    border: 1px solid #432A19;
    color: #734526;
    font-family: "Overpass", sans-serif;
    font-size: 17px;
    font-weight: 400;
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
}

/* Smaller textarea */
#contact-popup textarea {
    height: 80px;
    resize: none;
}

/* Send button */
#contact-popup .wpcf7-submit {
    background-color: #007598;
    color: #F5E682;
    border: 1px solid #F5E682;
    padding: 8px 16px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: auto;
}

#contact-popup .wpcf7-submit:hover {
    border: 1px solid #FFDD00;
    color: #FFDD00;
}


/* Close button */
#close-contact-popup {
    position: absolute;
    bottom: 10px;
    left: 10px; /* Nu links */
    background-color: #007598;
    color: #F5E682;
    border: 1px solid #F5E682;
    padding: 8px 16px;
    font-size: 16px;
    border-radius: 10px;
    cursor: pointer;
}

#close-contact-popup:hover {
    border: 1px solid #FFDD00;
    color: #FFDD00;
}

/* Thank you message */
.success-message {
    text-align: center;
    color: #432A19;
    font-family: "Overpass", sans-serif;
    font-size: 17px;
    font-weight: 600;
    border-radius: 10px;
    margin: auto;
    padding: 10px;
}

/* Info button - removed duplicate code */
.elementor-kit-15.button.info-button {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: #F5E682;
    color: #432A19;
    font-family: 'Overpass', sans-serif;
    font-weight: 600;
    border-radius: 10px;
    padding: 10px 15px;
    text-align: center;
    display: inline-block;
    text-decoration: none;
}

.elementor-kit-15.button.info-button:hover {
    background-color: #D1C66C;
    color: #734526;
}


