/*
Theme Name: Drew's Seasonal Services
Theme URI: https://drewsseasonalservices.com
Author: Drew's Seasonal Services
Author URI: https://drewsseasonalservices.com
Description: Professional property care theme — DeWalt-inspired black/yellow industrial aesthetic with integrated blog. Matches drewsseasonalservices.com branding.
Version: 2.2
Requires at least: 6.0
Requires PHP: 7.4
License: Proprietary
Text Domain: drews
*/

:root { --y: #FFCD00; --blk: #0A0A0A; --c1: #111111; --c2: #181818; --fd: 'Barlow Condensed', sans-serif; --fb: 'Barlow', sans-serif; }
* { box-sizing: border-box; margin: 0; padding: 0; }
body { background: var(--blk); color: #fff; font-family: var(--fb); line-height: 1.5; overflow-x: hidden; display: flex; flex-direction: column; min-height: 100vh; }
a { text-decoration: none; color: inherit; transition: 0.2s; }

/* HEADER & DESKTOP NAV */
header { background: var(--blk); border-bottom: 3px solid var(--y); position: sticky; top: 0; z-index: 999; }
.nav-container { display: flex; height: 65px; justify-content: space-between; align-items: stretch; max-width: 1400px; margin: 0 auto; width: 100%; }

.nav-desktop { display: flex; align-items: stretch; flex-grow: 1; justify-content: flex-end; }
.nav-links { display: flex; }
.nav-lnk { display: flex; align-items: center; padding: 0 18px; font-size: 13px; font-weight: 700; text-transform: uppercase; color: #fff; letter-spacing: 1px; border-left: 1px solid var(--c2); }
.nav-lnk:hover { color: var(--y); }
.nav-btn { background: var(--y); color: #000; padding: 0 30px; font-family: var(--fd); font-weight: 900; text-transform: uppercase; font-size: 16px; display: flex; align-items: center; margin-left: 15px; }
.nav-btn:hover { background: #e5b800; }

/* MOBILE MENU TOGGLE (HIDDEN ON DESKTOP) */
.mobile-menu-btn { display: none; background: transparent; border: none; color: var(--y); font-size: 32px; cursor: pointer; padding: 0 20px; align-items: center; }

/* MOBILE OVERLAY MENU */
.mobile-overlay { position: fixed; top: 68px; left: 0; width: 100%; height: calc(100vh - 68px); background: rgba(10,10,10,0.98); display: flex; flex-direction: column; padding: 40px 30px; transform: translateX(100%); transition: transform 0.3s ease-in-out; z-index: 998; overflow-y: auto; }
.mobile-overlay.active { transform: translateX(0); }
.mobile-overlay a { font-family: var(--fd); font-size: 28px; font-weight: 900; text-transform: uppercase; border-bottom: 1px solid var(--c2); padding: 20px 0; color: #fff; }
.mobile-overlay a.m-quote { color: var(--y); border-bottom: none; margin-top: 30px; font-size: 36px; }

/* FOOTER */
footer { background: #000; border-top: 3px solid var(--y); padding: 60px 20px 40px; margin-top: auto; width: 100%; }
.ft-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
.ft-phone { font-family: var(--fd); font-size: 32px; font-weight: 900; color: #fff; display: block; margin: 20px 0; }
.ft-phone:hover { color: var(--y); }
.ft-bot { text-align: center; margin-top: 50px; color: #666; font-size: 12px; padding-top: 30px; border-top: 1px solid #222; }

/* MOBILE MEDIA QUERIES */
@media (max-width: 900px) {
    .nav-desktop { display: none; }
    .mobile-menu-btn { display: flex; }
    .ft-inner { grid-template-columns: 1fr; text-align: center; }
    .ft-col p { margin: 0 auto 20px !important; }
    .ft-phone { font-size: 40px; }
}
