/*
Theme Name:  LeaveTheKeysDMV
Theme URI:   https://leavethekeysdmv.com
Author:      LeaveTheKeysDMV
Author URI:  https://leavethekeysdmv.com
Description: A bold, direct-response cash home buyer theme for the DMV market. Every section is fully editable via the WordPress Customizer — hero headline, subheadline, stats, pain points, how-it-works steps, comparison table, FAQ, contact form, colors, fonts, phone number, and service areas. Designed for burnt-out landlords and probate property owners.
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: leavethekeysdmv
Tags:        real-estate, landing-page, customizer, one-page, dark, business
*/

/* ============================================================
   LEAVETHEKEYSDMV — Base Reset & Typography
   Colors: Navy #0D1B2A | Gold #C9A84C | Linen #F8F4EE
   Fonts: Playfair Display (headlines) + DM Sans (body)
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --ltk-navy:       #0D1B2A;
    --ltk-navy-dark:  #070f18;
    --ltk-navy-light: #1a3a5c;
    --ltk-gold:       #C9A84C;
    --ltk-gold-light: #e0c06e;
    --ltk-linen:      #F8F4EE;
    --ltk-linen-dark: #ede8df;
    --ltk-charcoal:   #1A1A1A;
    --ltk-white:      #ffffff;
    --ltk-radius:     0.5rem;
    --ltk-font-head:  'Playfair Display', Georgia, serif;
    --ltk-font-body:  'DM Sans', system-ui, sans-serif;
    --ltk-max-width:  1280px;
    --ltk-transition: 200ms cubic-bezier(0.23, 1, 0.32, 1);
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--ltk-font-body);
    background-color: var(--ltk-linen);
    color: var(--ltk-charcoal);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }

.ltk-container {
    width: 100%;
    max-width: var(--ltk-max-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 1024px) {
    .ltk-container { padding-left: 2rem; padding-right: 2rem; }
}

/* Utility */
.ltk-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--ltk-font-body);
    font-weight: 700;
    font-size: 1rem;
    padding: 1rem 2rem;
    border-radius: var(--ltk-radius);
    border: none;
    cursor: pointer;
    transition: background var(--ltk-transition), transform var(--ltk-transition);
    text-decoration: none;
}
.ltk-btn:active { transform: scale(0.97); }
.ltk-btn-gold {
    background: var(--ltk-gold);
    color: var(--ltk-charcoal);
}
.ltk-btn-gold:hover { background: var(--ltk-gold-light); }
.ltk-btn-outline {
    background: transparent;
    color: var(--ltk-white);
    border: 2px solid rgba(255,255,255,0.4);
}
.ltk-btn-outline:hover { border-color: var(--ltk-gold); color: var(--ltk-gold); }

.ltk-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
}
.ltk-badge-gold {
    background: rgba(201,168,76,0.18);
    border: 1px solid rgba(201,168,76,0.4);
    color: var(--ltk-gold);
}
.ltk-badge-navy {
    background: rgba(13,27,42,0.1);
    border: 1px solid rgba(13,27,42,0.2);
    color: var(--ltk-navy);
}

/* Fade-up animation */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
.ltk-fade-up { animation: fadeUp 0.55s cubic-bezier(0.23,1,0.32,1) both; }
.ltk-fade-up-1 { animation-delay: 0.05s; }
.ltk-fade-up-2 { animation-delay: 0.12s; }
.ltk-fade-up-3 { animation-delay: 0.20s; }
.ltk-fade-up-4 { animation-delay: 0.28s; }

/* CTA pulse */
@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.5); }
    50%       { box-shadow: 0 0 0 10px rgba(201,168,76,0); }
}
.ltk-cta-pulse { animation: ctaPulse 2.5s ease-in-out infinite; }

/* Screen reader only */
.screen-reader-text {
    clip: rect(1px,1px,1px,1px);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}
