/* 
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 */

/* Make the header bar full-width */
#site-header.site-header {
    width: 100%;
    max-width: 100%!important;
    margin: 0;
    left: 0;
    right: 0;
}

/* In case the theme adds a centered wrapper inside the header */
#site-header .container,
#site-header .wrap {
    max-width: 1200px;   /* adjust if you want wider */
    margin: 0 auto;
    padding: 0 20px;     /* side padding for content */
}


/* ===== LAVENDER THEME – LIGHT HEADER ===== */

/* Header background + bottom border */
.elementor-location-header,
header.site-header,
#site-header {
    background-color: #F7F4FB;   /* very light lavender */
    border-bottom: 1px solid #E0D7F5;
}

/* Menu links (normal state) */
.elementor-location-header a,
header.site-header a,
#site-header a {
    color: #5F4A96;              /* darker lavender */
}

/* Menu links (hover + active) */
.elementor-location-header a:hover,
header.site-header a:hover,
#site-header a:hover,
.elementor-location-header .current-menu-item > a,
header.site-header .current-menu-item > a,
#site-header .current-menu-item > a {
    color: #8E7CC3;              /* main lavender */
}

/* ========== CONTACT FORM 7 – ANANDA STYLE ========== */

.cf7-ananda.wpcf7 {
    font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Label styling */
.cf7-ananda .wpcf7-form p {
    margin-bottom: 16px;
    font-size: 14px;
    color: #262525; /* dark text */
}

/* Inputs, textareas, selects */
.cf7-ananda .wpcf7-form input[type="text"],
.cf7-ananda .wpcf7-form input[type="email"],
.cf7-ananda .wpcf7-form input[type="tel"],
.cf7-ananda .wpcf7-form input[type="url"],
.cf7-ananda .wpcf7-form input[type="number"],
.cf7-ananda .wpcf7-form input[type="date"],
.cf7-ananda .wpcf7-form textarea,
.cf7-ananda .wpcf7-form select {
    width: 100%;
    box-sizing: border-box;
    padding: 10px 14px;
    font-size: 15px;
    border-radius: 8px;
    border: 1px solid #E4D8E9;          /* soft border */
    background-color: #FFF9F4;          /* light bg (lotus / lavender friendly) */
    color: #262525;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

/* Focus state */
.cf7-ananda .wpcf7-form input[type="text"]:focus,
.cf7-ananda .wpcf7-form input[type="email"]:focus,
.cf7-ananda .wpcf7-form input[type="tel"]:focus,
.cf7-ananda .wpcf7-form input[type="url"]:focus,
.cf7-ananda .wpcf7-form input[type="number"]:focus,
.cf7-ananda .wpcf7-form input[type="date"]:focus,
.cf7-ananda .wpcf7-form textarea:focus,
.cf7-ananda .wpcf7-form select:focus {
    border-color: #D9828B;              /* primary lotus / lavender */
    box-shadow: 0 0 0 2px rgba(217,130,139,0.18);
    background-color: #FFFFFF;
}

/* Placeholder color */
.cf7-ananda .wpcf7-form ::placeholder {
    color: #9B8D9F;
}

/* Submit button */
.cf7-ananda .wpcf7-form input[type="submit"] {
    display: inline-block;
    padding: 10px 26px;
    border-radius: 999px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    background-color: #D9828B;          /* button color */
    color: #FFFFFF;
    text-transform: none;
    letter-spacing: 0.02em;
    transition: background-color 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
}

/* Button hover / active */
.cf7-ananda .wpcf7-form input[type="submit"]:hover {
    background-color: #A0444E;          /* deeper lotus */
    box-shadow: 0 6px 14px rgba(160,68,78,0.25);
    transform: translateY(-1px);
}

.cf7-ananda .wpcf7-form input[type="submit"]:active {
    transform: translateY(0);
    box-shadow: none;
}

/* Error message under fields */
.cf7-ananda .wpcf7-not-valid-tip {
    font-size: 12px;
    color: #A0444E;
    margin-top: 4px;
}

/* Response message (success / error box) */
.cf7-ananda .wpcf7-response-output {
    margin: 16px 0 0;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 14px;
    border-width: 1px;
}

/* Success */
.cf7-ananda .wpcf7-mail-sent-ok {
    border-color: #5A7D6C;               /* green tone */
    background-color: #E4F2EC;
    color: #2E4C3D;
}

/* Failure / validation error */
.cf7-ananda .wpcf7-validation-errors,
.cf7-ananda .wpcf7-mail-sent-ng {
    border-color: #A0444E;
    background-color: #FBE6EA;
    color: #752836;
}

/* Remove ugly list styles if used */
.cf7-ananda .wpcf7-form ul {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
}

/* Put a specific container at the top only on mobile */
@media (max-width: 767px) {
    .mobile-top {
        order: -1;          /* move it before other containers in the same parent */
    }
}
