/*
Theme Name: AssuranceOps.ai
Theme URI: https://github.com/christopherdeck/assuranceops.ai-website
Author: AssuranceOps.ai
Description: Marketing site theme for AssuranceOps.ai — the self-hosted AI governance gateway. Three pages: Home (front page), About, and Contact. No webfonts, no icon libraries, no page builder required.
Version: 1.0.0
Requires at least: 5.9
Tested up to: 6.7
Requires PHP: 7.4
License: Apache License 2.0
License URI: https://www.apache.org/licenses/LICENSE-2.0
Text Domain: assuranceops
*/

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, Roboto,
    Helvetica, Arial, sans-serif;
  background: #f9f9f7;
  color: #0b0b0b;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

/* Hover states — color/background shifts only; never scale, shadow, or translate. */
.ao-hover-white:hover {
  color: #ffffff !important;
}

.ao-hover-accent:hover {
  color: #2a78d6 !important;
}

.ao-hover-underline:hover {
  text-decoration: underline !important;
}

.ao-btn-primary:hover {
  background: #4a8ede !important;
}

.ao-btn-send:hover {
  background: #1f5fb0 !important;
}

.ao-btn-black:hover {
  background: #2a2a28 !important;
}

.ao-btn-outline:hover {
  border-color: rgba(11, 11, 11, 0.4) !important;
}

/* Sticky nav — clear the WP admin bar when logged in. */
body.admin-bar .ao-nav {
  top: 32px;
}

@media screen and (max-width: 782px) {
  body.admin-bar .ao-nav {
    top: 46px;
  }
}

/* Responsive nav — the single 1080px breakpoint used across the site. */
.ao-nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  width: 40px;
  height: 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  flex-shrink: 0;
}

.ao-mobile-menu {
  display: none;
  background: #0d0d0d;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px clamp(20px, 4vw, 40px) 24px;
  flex-direction: column;
}

@media (max-width: 1080px) {
  .ao-nav-links,
  .ao-nav-right {
    display: none !important;
  }

  .ao-nav-toggle {
    display: flex;
  }

  .ao-mobile-menu.is-open {
    display: flex;
  }
}

/* Dashboard preview browser frame — 760×540 desktop, 340×636 below 1080px. */
.ao-browser {
  width: 760px;
  height: 540px;
}

@media (max-width: 1080px) {
  .ao-browser {
    width: 340px;
    height: 636px;
  }
}
