/* Updated style.css for Paragliding Community theme */
:root{
  --brand: #1F4E3D;
  --brand-dark: #15392f;
  --accent: #e57a1f;
  --text: #1b1b1b;
  --muted: #6b7a72;
  --bg-top: #f6fbf9;
  --bg-bottom: #ffffff;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: "Inter", "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background: linear-gradient(to bottom, var(--bg-top), var(--bg-bottom));
  color:var(--text);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.6;
  padding-top:72px;
}
.topbar{
  position:fixed;top:0;left:0;right:0;height:72px;
  display:flex;align-items:center;justify-content:space-between;
  padding:0 14px;background: linear-gradient(90deg,var(--brand), var(--brand-dark));
  color:#fff;z-index:40;box-shadow:0 3px 10px rgba(15,40,34,0.18);
}
.topbar-left{display:flex;align-items:center;gap:12px;}
.menu-toggle{
  background:none;border:0;color:#fff;font-size:22px;line-height:1;
  padding:8px;display:inline-flex;align-items:center;justify-content:center;cursor:pointer;
}
.logo-group{display:flex;align-items:center;gap:12px;}
.logo{max-height:56px;height:auto;display:block;filter: drop-shadow(0 2px 0 rgba(0,0,0,0.06));}
.community-logo{max-height:58px;}
.sar-logo{max-height:54px;}
.side-menu{
  position:fixed;top:0;left:-320px;width:320px;max-width:88%;height:100%;
  background:var(--brand-dark);color:#fff;padding:78px 12px 12px 12px;
  transition:left 0.28s ease;z-index:60;overflow:auto;
}
.side-menu a{display:block;padding:3px 9px;color:#fff;text-decoration:none;border-radius:6px;margin-bottom:6px;font-weight:600;}
.side-menu a:hover{ background: rgba(255,255,255,0.04) }
.side-menu.open{ left:0 }
.content{max-width:980px;margin:0 auto;padding:22px;padding-bottom:64px;background:transparent;}
@media (min-width:768px){.content{padding:34px;}}
h1,h2,h3{color:var(--brand);margin-top:18px;margin-bottom:8px;font-weight:700;}
p{color:var(--text);margin-bottom:12px;}
a{color:var(--accent);text-decoration:underline;}
.site-footer{text-align:center;padding:18px;color:#fff;font-size:13px;
  background: linear-gradient(180deg,var(--brand-dark), rgba(0,0,0,0.07));margin-top:20px;}
a, button{-webkit-tap-highlight-color: rgba(0,0,0,0.05)}
img{max-width:100%;height:auto;display:block}
pre{white-space:pre-wrap;word-break:break-word;background:rgba(17,34,51,0.03);padding:12px;border-radius:8px;overflow:auto}

.logos-row{
  display:flex;
  gap:18px;
  align-items:center;
  margin-top:12px;
  flex-wrap:wrap;
}
.logos-row img{
  max-width:none;
  width:280px;
  height:auto;
}
