/*
Theme Name: EndlessGutters
Theme URI: https://endlessgutters.com/
Description: Nationwide Programmatic SEO Authority Theme
Version: 1.0.0
Author: Endless Gutters Team
Author URI: https://endlessgutters.com/
Text Domain: endless-gutters
*/

:root {
    /* Color Palette - Premium & Trust focused */
    --color-primary: #1e3a8a; /* Trust Blue */
    --color-secondary: #065f46; /* Rain Evergreen */
    --color-accent: #10b981; /* Action Green */
    --color-danger: #ef4444; /* Emergency Red */
    --color-slate-50: #f8fafc;
    --color-slate-100: #f1f5f9;
    --color-slate-800: #1e293b;
    --color-slate-900: #0f172a;
    
    /* Typography */
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
    
    /* Spacing */
    --container-width: 1200px;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--color-slate-50);
    color: var(--color-slate-900);
    line-height: 1.6;
}

/* Base Styles */
h1, h2, h3, h4 { color: var(--color-slate-800); line-height: 1.2; margin-bottom: 1rem; }
a { color: var(--color-primary); text-decoration: none; transition: 0.2s; }
a:hover { color: var(--color-accent); }

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Call-to-Action Shorthand */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: transform 0.2s, background 0.2s;
}

.btn-primary { background: var(--color-primary); color: white; }
.btn-accent { background: var(--color-accent); color: white; }
.btn:hover { transform: translateY(-2px); }

/* Sticky Call Button (Mobile) */
.mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-primary);
    color: white;
    text-align: center;
    padding: 1rem;
    font-weight: bold;
    z-index: 1000;
    display: none;
}

@media (max-width: 768px) {
    .mobile-sticky-cta { display: block; }
    body { padding-bottom: 4rem; }
}

/* FTC Disclaimer Footer Style */
.ftc-disclaimer {
    background: var(--color-slate-100);
    border-top: 1px solid #e2e8f0;
    padding: 2rem 0;
    font-size: 0.875rem;
    color: #64748b;
    text-align: center;
}

/* Trust Banner */
.trust-banner {
    background: #e2e8f0;
    padding: 0.75rem 0;
    border-bottom: 1px solid #cbd5e1;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-slate-800);
}

.trust-banner ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-banner li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Pulse Animation for CTA */
@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { transform: scale(1.02); box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.btn-pulse {
    animation: pulse 2s infinite;
}

/* Urgency Text */
.urgency-text {
    color: var(--color-danger);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}
