/*
 Theme Name: Wayzgoose Child
 Theme URI: https://example.com/wayzgoose-child
 Description: GeneratePress child theme optimized for the Wayzgoose Events & Dances plugin. Adds a clean header with logo + nav and a full-width page template.
 Author: Wayzgoose
 Version: 1.1.0
 Template: generatepress
 Text Domain: wayzgoose-child
*/

/* ---------- Header (custom) ---------- */
.wg-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #111;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.wg-header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  gap: 12px;
}
.wg-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
}
.wg-brand .site-logo img { height: 32px; width: auto; display: block; }
.wg-brand .site-title { font-weight: 700; letter-spacing: .2px; font-size: 18px; }

.wg-nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 10px;
  background: transparent;
  color: #fff;
}
.wg-nav {
  display: none;
}
.wg-nav.open {
  display: block;
}
.wg-nav ul {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.wg-nav a {
  display: block;
  padding: 8px 10px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}
.wg-nav a:hover { background: rgba(255,255,255,.08); }
.wg-nav .current-menu-item > a,
.wg-nav a[aria-current="page"] {
  background: #fff;
  color: #111;
}

@media (min-width: 760px) {
  .wg-nav { display: block; }
  .wg-nav ul {
    display: flex;
    gap: 8px;
  }
  .wg-nav-toggle { display: none; }
}

/* offset the sticky header a touch when using our template */
.wg-page .site-content { padding-top: 10px; }


/* ---------- Plugin layout niceties ---------- */
.wg-page .entry-title { display: none; }
.wg-page .inside-article,
.wg-page .grid-container {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.wg-page .wg-card { margin: 14px 0; }
.wg-page .wg-wrap { padding: 10px; }
.wg-page .wg-list ul,
.wg-page .wg-cols ul { line-height: 1.45; }
.wg-page .entry-meta { display: none; }
