/*
Theme Name: UmetaUSA Theme
Theme URI: https://umetausa.com/
Author: Frank + ChatGPT
Author URI: https://umetausa.com/
Description: A clean, fast, mobile-first WordPress theme for Umeta of America. Includes header tagline, CTAs, and block patterns.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: umetausa
*/
:root {
  --spacing-xs: .5rem;
  --spacing-s: .75rem;
  --spacing-m: 1rem;
  --spacing-l: 1.5rem;
  --spacing-xl: 2rem;
  --max-content: 1200px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  line-height: 1.6;
}

.container {
  width: min(100% - 2rem, var(--max-content));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  background: #ffffff;
  border-bottom: 1px solid #eee;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: var(--spacing-m);
  justify-content: space-between;
  padding: .75rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--spacing-s);
}

.brand .logo { width: 150px; height: auto; }

.tagline {
  font-size: .9rem;
  color: #555;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid #ddd;
  padding: .5rem .75rem;
  border-radius: 6px;
}

.primary-nav {
  display: flex;
  gap: 1rem;
}

@media (max-width: 900px) {
  .primary-nav { display: none; }
  .nav-toggle { display: inline-flex; }
}

.cta {
  display: inline-block;
  padding: .6rem 1rem;
  border-radius: 6px;
  border: none;
  text-decoration: none;
  font-weight: 600;
}

.cta-primary { background: #004AAD; color: #fff; }
.cta-secondary { background: #F2F5FF; color: #004AAD; }

.hero {
  padding: clamp(2rem, 5vw, 5rem) 0;
  background: linear-gradient(180deg, #F8FAFF 0%, #FFFFFF 100%);
}

.hero h1 { font-size: clamp(2rem, 5vw, 3rem); margin: 0 0 .5rem 0; }
.hero p { font-size: clamp(1rem, 2.4vw, 1.25rem); margin: 0 0 1rem 0; }

footer.site-footer {
  background: #0A1728;
  color: #fff;
  padding: 2rem 0;
}

footer .cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

footer a { color: #D7E3FF; text-decoration: none; }
footer a:hover { text-decoration: underline; }