/*
Theme Name: NoAdWaste
Theme URI: https://noadwaste.com
Author: Church of AI
Author URI: https://churchofai.de
Description: NoAdWaste – Google Ads Automation & Waste Reduction
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Proprietary
Text Domain: noadwaste
Tags: dark, tailwind, google-ads, automation, multilingual

NoAdWaste Theme – Dark Navy (#0F172A) + Electric Green (#22C55E)
*/

/* Theme base styles – visual design is handled via Tailwind CDN in header.php */
body {
    background-color: #0F172A;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

/* Touch target fix: min 44px for interactive elements */
a, button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

/* Footer links and small links can be inline */
footer a,
.text-xs a {
    min-height: 44px;
}

/* Mobile hamburger menu */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(8px);
    z-index: 60;
    display: flex;
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}
.mobile-menu-overlay.open {
    transform: translateX(0);
}
.mobile-menu-overlay a {
    font-size: 1.25rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: #94A3B8;
    text-decoration: none;
    display: block;
    min-height: 44px;
}
.mobile-menu-overlay a:hover {
    color: #22C55E;
}
.mobile-menu-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
}

/* Search input label fix */
input[type="search"],
input[type="text"],
input[type="email"] {
    min-height: 44px;
}

/* Range slider touch target */
input[type="range"] {
    min-height: 44px;
    cursor: pointer;
}
