/*
Theme Name: Global Bodywork Maintenance
Theme URI: https://globalbodywork.com
Author: Global Bodywork Incorporated & Rebecca Collinsworth, LLC
Author URI: https://rebeccacollinsworth.com
Description: A collaboration between Global Bodywork Incorporated and Rebecca Collinsworth, LLC. A lightweight, distributable WordPress theme for a maintenance-mode landing page. Includes a configurable media hero (video or photo), a contact form with optional in-home visit logistics that posts to a Google Sheet, category or specific-post blog excerpts using native WordPress blocks, and a 3-column footer menu system alongside a standard header menu, all managed through Appearance > Menus.
Version: 1.1.0
Requires at least: 6.4
Requires PHP: 7.4
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: global-bodywork
*/

:root{
  --gb-bg:#faf7f2;
  --gb-panel:#ffffff;
  --gb-ink:#2b2b2b;
  --gb-muted:#6b6b6b;
  --gb-accent:#8a6d5c;
  --gb-accent-soft:#efe4dc;
  --gb-border:#e3dbd2;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--gb-bg);
  color: var(--gb-ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
}

a { color: var(--gb-accent); }

.gb-container {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.gb-site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--gb-border);
}
.gb-site-header .gb-logo {
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  color: var(--gb-ink);
}
.gb-primary-nav ul {
  list-style: none;
  display: flex;
  gap: 18px;
  margin: 0;
  padding: 0;
}
.gb-primary-nav a {
  text-decoration: none;
  color: var(--gb-muted);
  font-size: 14px;
}
.gb-primary-nav a:hover { color: var(--gb-accent); }

/* Footer */
.gb-site-footer {
  border-top: 1px solid var(--gb-border);
  margin-top: 48px;
  padding: 32px 0 20px;
}
.gb-footer-columns {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.gb-footer-column {
  flex: 1;
  min-width: 160px;
}
.gb-footer-column:nth-child(2) { text-align: center; }
.gb-footer-column:nth-child(3) { text-align: right; }
.gb-footer-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.gb-footer-column a {
  color: var(--gb-muted);
  text-decoration: none;
  font-size: 13px;
  display: block;
  margin-bottom: 6px;
}
.gb-footer-column a:hover { color: var(--gb-accent); }
.gb-footer-copyright {
  text-align: center;
  font-size: 12px;
  color: var(--gb-muted);
  margin-top: 24px;
}
.gb-footer-disclaimer {
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  font-size: 11px;
  color: var(--gb-muted);
  line-height: 1.5;
  border-top: 1px solid var(--gb-border);
  margin-top: 24px;
  padding-top: 16px;
}
.gb-footer-disclaimer p {
  margin: 0;
}
.gb-footer-fullwidget-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--gb-ink);
  margin: 0 0 6px;
}

/* Page content spacing */
.gb-page-content > * {
  margin-bottom: 24px;
}

.gb-media-hero-placeholder {
  background: var(--gb-accent-soft);
  color: var(--gb-accent);
  border: 1px dashed var(--gb-accent);
  border-radius: 12px;
  padding: 48px 20px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
}
.gb-media-hero-video-wrap {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}
.gb-media-hero-video-wrap iframe {
  width: 100% !important;
  aspect-ratio: 16 / 9;
  height: auto !important;
  border: 0;
  display: block;
}
.gb-media-hero-caption {
  text-align: center;
  color: var(--gb-muted);
  font-size: 14px;
  margin-top: 8px;
}
