/*
Theme Name: WMCUG Theme
Theme URI: https://wmcug.org
Author: WMCUG
Author URI: https://wmcug.org
Description: Simple WordPress theme providing the WMCUG static homepage using Cisco-styled palette.
Version: 1.0.1
License: GPL-2.0-or-later
Text Domain: wmcug
*/
:root{
  --bg:#0b1220;
  --text:#0f172a;
  --muted:#475569;
  --card:#ffffff;
  --brand:#1BA0D7;     /* Cisco Cyan */
  --brand-700:#0E77A8; /* Darker Cisco Blue */
  --ring:#7FD3F7;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{font-family: system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,sans-serif;
     color:var(--text); background:#f8fafc; line-height:1.5;}
a{color:inherit; text-decoration:none}
img{max-width:100%;height:auto;display:block}
.container{max-width:1200px; margin:0 auto; padding:0 1rem}
.header{position:sticky;top:0;z-index:50;background:rgba(255,255,255,.9);backdrop-filter:blur(8px);
        border-bottom:1px solid #e2e8f0}
.nav{display:flex;align-items:center;justify-content:space-between;padding:.75rem 0}
.nav .brand{display:flex;align-items:center;gap:.75rem}
.nav img{height:40px}
.nav a.btn{background:var(--brand);color:#fff;padding:.5rem .9rem;border-radius:999px;font-weight:600}
.nav a.btn:hover{background:var(--brand-700)}
.nav-links{display:none;gap:1.25rem;font-size:.95rem}
.nav-toggle{display:inline-flex;align-items:center;justify-content:center;height:36px;width:36px;border:1px solid #e2e8f0;border-radius:10px}
@media (min-width: 768px){
  .nav-links{display:flex}
  .nav-toggle{display:none}
}
.mobile-menu{display:none;border-top:1px solid #e2e8f0;padding:1rem .5rem;gap:.5rem}
.mobile-menu a{display:block;padding:.5rem .75rem;border-radius:.75rem}
.mobile-menu.open{display:grid}
.hero{border-bottom:1px solid #e2e8f0;background:linear-gradient(135deg,rgba(27,160,215,.08), rgba(127,211,247,.08))}
.hero-grid{display:grid;grid-template-columns:1fr;gap:2rem;padding:4rem 0}
@media (min-width:1024px){.hero-grid{grid-template-columns:1fr 1fr}}
.hero h1{font-size:clamp(2rem,4vw,3rem);margin:0}
.hero p.lead{margin-top:1rem;font-size:1.15rem;color:#334155;max-width:60ch}
.ctas{margin-top:1.5rem;display:flex;flex-wrap:wrap;gap:.75rem}
.btn{display:inline-flex;align-items:center;gap:.5rem;padding:.8rem 1.1rem;border-radius:14px;font-weight:700}
.btn.primary{background:var(--brand);color:#fff}
.btn.primary:hover{background:var(--brand-700)}
.btn.ghost{border:1px solid #cbd5e1}
.hero-art{border:1px solid #e2e8f0;border-radius:20px;display:flex;align-items:center;justify-content:center;
          background:linear-gradient(135deg, rgba(27,160,215,.10), rgba(127,211,247,.10)); aspect-ratio:16/9}
.section{padding:4rem 0}
.section.border{border-top:1px solid #e2e8f0;border-bottom:1px solid #e2e8f0}
.section h2{font-size:2rem;margin:0}
.cards{margin-top:1rem;display:grid;gap:1rem}
@media (min-width:640px){.cards{grid-template-columns:repeat(2,1fr)}}
@media (min-width:1024px){.cards{grid-template-columns:repeat(3,1fr)}}
.card{border:1px solid #e2e8f0;border-radius:16px;padding:1.1rem;background:#fff}
.small{font-size:.9rem;color:#475569}
.events{margin-top:1.2rem;display:grid;gap:1rem}
@media (min-width:768px){.events{grid-template-columns:repeat(2,1fr)}}
.badge{display:inline-block;border:1px solid #cbd5e1;border-radius:999px;padding:.15rem .5rem;font-size:.72rem;margin-left:.35rem}
.form{display:flex;flex-direction:column;gap:.75rem}
@media (min-width:640px){.form{flex-direction:row}}
input[type=email]{flex:1;border:1px solid #cbd5e1;border-radius:12px;padding:.8rem 1rem;background:rgba(255,255,255,.9)}
.footer{padding:2.5rem 0;border-top:1px solid #e2e8f0;color:#64748b;font-size:.9rem}
.footer small{display:block}
