/*
Theme Name: EcoWater Parent
Theme URI: https://ecowater.colibrity.com
Author: EcoWater Team
Author URI: https://ecowater.colibrity.com
Description: EcoWater — French drinking water quality information.
Version: 1.0.0
License: GPL-2.0+
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ecowater-parent
*/

/* ===== Search Section ===== */
#hero-search-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    max-width: 480px;
    margin: 80px auto 0;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 6px;
}
#hero-search-section input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 14px 20px;
    font-size: 16px;
    outline: none;
}
#hero-search-section input::placeholder { color: #94a3b8; }
#hero-search-section button {
    background: #06b6d4;
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 20px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
#hero-search-section button:hover { background: #0891b2; }

/* ===== Results Section ===== */
#hero-results-section {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 24px;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    #hero-search-section { flex-direction: column; border-radius: 16px; margin-top: 40px; }
    #hero-search-section button { border-radius: 10px; }
}