/*
Theme Name: Eco Dragon South West
Theme URI: https://ecodragonplumbing.co.uk
Author: ElevateOM
Author URI: https://www.elevateom.com
Description: Eco Dragon South West Ltd – Professional plumbing, heating, renewables and construction services in Cornwall. 20+ years of expert service.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: eco-dragon
Tags: business, services, plumbing, heating, renewable-energy
*/

/* =============================================================
   MOBILE MENU – CSS-driven; JS only toggles the class eco-open
   ============================================================= */
#eco-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    backdrop-filter: blur(4px);
    z-index: 40;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
}
#eco-overlay.eco-open { opacity: 1; pointer-events: all; }

#eco-panel {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 320px;
    max-width: 85vw;
    background: #fff;
    box-shadow: -4px 0 30px rgba(0,0,0,.15);
    z-index: 50;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
}
#eco-panel.eco-open { transform: translateX(0); }

body.eco-no-scroll { overflow: hidden; }

@media (min-width: 1024px) {
    #eco-overlay, #eco-panel, #eco-hamburger { display: none !important; }
}

/* =============================================================
   HEADER scroll shadow
   ============================================================= */
#site-header.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,.1); }

/* =============================================================
   INNER PAGE HERO BANNER
   ============================================================= */
.page-hero {
    position: relative;
    min-height: 280px;
    display: flex;
    align-items: center;
    padding-top: 7rem;
    padding-bottom: 4rem;
    background: linear-gradient(135deg,#2b190b 0%,#0722ce 55%,#617c32 100%);
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('images/banner.jpg') center/cover no-repeat;
    opacity: .12;
}

/* =============================================================
   CONTACT FORM 7 – match existing design
   ============================================================= */
.wpcf7-form input[type=text],
.wpcf7-form input[type=email],
.wpcf7-form input[type=tel],
.wpcf7-form textarea {
    display: block;
    width: 100%;
    padding: .75rem 1rem;
    border-radius: .5rem;
    border: 1px solid #d1d5db;
    background: #fff;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    font-family: inherit;
    font-size: 1rem;
    color: #374151;
}
.wpcf7-form input[type=text]:focus,
.wpcf7-form input[type=email]:focus,
.wpcf7-form input[type=tel]:focus,
.wpcf7-form textarea:focus {
    border-color: #0722ce;
    box-shadow: 0 0 0 3px rgba(7,34,206,.12);
}
.wpcf7-form textarea { resize: none; min-height: 9rem; }
.wpcf7-form label { display: block; margin-bottom: .5rem; color: #374151; font-weight: 500; }
.wpcf7-form input[type=submit] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background: linear-gradient(to right,#0722ce,#5cb85c);
    color: #fff;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: box-shadow .2s, transform .2s;
    border: none;
    box-shadow: 0 4px 14px rgba(7,34,206,.25);
    width: auto;
}
.wpcf7-form input[type=submit]:hover {
    box-shadow: 0 8px 25px rgba(7,34,206,.35);
    transform: scale(1.03);
}
.wpcf7-not-valid-tip { color: #dc2626; font-size: .8rem; margin-top: .25rem; display: block; }
.wpcf7-response-output { border: none !important; padding: .75rem 1rem !important; border-radius: .5rem !important; margin: 1rem 0 !important; }
.wpcf7-mail-sent-ok { background: #dcfce7 !important; color: #166534 !important; }
.wpcf7-validation-errors { background: #fef2f2 !important; color: #991b1b !important; }
