/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */
/* Form wrapper */
#respond {
    max-width: 100%;
    margin-top: 2rem;
    font-family: inherit;
}

/* Form title */
#respond h3#reply-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #111;
}

/* Hide default labels if the theme forces them to display */
#respond label {
    display: none !important;
}

/* Input and Textarea styling */
.comment-field-wrapper {
    margin-bottom: 1rem;
}

#respond input[type="text"],
#respond input[type="email"],
#respond textarea {
    width: 100%;
    padding: 16px;
    background-color: #f9f9f9; /* Ultra-light gray for a recessed feel */
    border: 1px solid transparent;
    border-radius: 8px;
    font-size: 1rem;
    color: #333;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

/* Focus state effects */
#respond input[type="text"]:focus,
#respond input[type="email"]:focus,
#respond textarea:focus {
    background-color: #ffffff;
    border-color: #111; /* Change border to solid black */
    outline: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); /* Light drop shadow */
}

/* Minimalist, bold Submit button */
#respond .minimal-submit-btn {
    background-color: #111;
    color: #ffffff;
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
    width: auto;
}

#respond .minimal-submit-btn:hover {
    background-color: #333;
}

#respond .minimal-submit-btn:active {
    transform: scale(0.97);
}

/* Responsive: Place Name and Email fields side-by-side on larger screens */
@media (min-width: 768px) {
    .comment-form-author {
        display: inline-block;
        width: calc(50% - 0.5rem);
        margin-right: 1rem;
    }
    .comment-form-email {
        display: inline-block;
        width: calc(50% - 0.5rem);
    }
}