/*
Theme Name: GeneratePress Child
Template: generatepress
*/

/* ── Global resets matching framework palette ── */
:root {
  --bg: #F7F5F2;
  --text-primary: #1A1A18;
  --text-secondary: #6B6B65;
}

body {
  background: var(--bg);
  color: var(--text-primary);
}

/* ── Site-wide nav ── */
.site-header {
  background: #F7F5F2 !important;
  border-bottom: 0.5px solid rgba(0,0,0,0.08);
  padding: 0 24px;
}

.site-header .site-title a,
.main-navigation a {
  color: #1A1A18 !important;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
}

.site-header .site-title a:hover,
.main-navigation a:hover {
  color: #6B6B65 !important;
}

/* ── Home page: hide GP footer and page header, keep nav ── */
.page-template-framework-home .site-footer,
.page-template-framework-home .page-header {
  display: none !important;
}

/* ── Inner Circle page: hide GP footer and page header, keep nav ── */
.page-inner-circle .site-footer,
.page-inner-circle .page-header {
  display: none !important;
}

/* ── About page: centred single-column content ── */
.page-about .entry-content {
  max-width: 600px;
  margin: 0 auto;
  padding: 64px 24px 96px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-secondary);
}

.page-about .entry-content h1,
.page-about .entry-content h2 {
  font-family: 'Inter', sans-serif;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 18px;
}

.page-about .entry-content h1 {
  font-size: clamp(26px, 5vw, 42px);
  font-weight: 700;
}

.page-about .entry-content h2 {
  font-weight: 600;
}

/* ── About page photo ── */
.about-photo {
  display: block;
  width: 320px;
  height: 400px;
  border-radius: 8px;
  object-fit: cover;
  object-position: center top;
  margin: 0 auto 40px;
}


/* ── Header/nav polish: brand mark + tagline, remove floating nav box ── */
.site-header {
  padding-top: 14px;
  padding-bottom: 14px;
}

.inside-header.grid-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.site-branding {
  display: flex;
  align-items: center;
  gap: 14px;
}

.main-title {
  margin: 0 !important;
}

.main-title a {
  display: grid !important;
  grid-template-columns: 72px 1fr;
  grid-template-rows: auto auto;
  column-gap: 18px;
  row-gap: 6px;
  align-items: center;
  color: #171715 !important;
  font-weight: 700;
  font-size: 44px !important;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none !important;
  line-height: 1.15;
}

.main-title a::before {
  content: "";
  display: block;
  grid-column: 1;
  grid-row: 1 / 3;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-image: url("assets/logo-glitch.gif");
  background-size: cover;
  background-position: center;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.06);
}

.main-title a::after {
  content: "The mind & body glitch";
  display: block;
  grid-column: 2;
  grid-row: 2;
  font-family: 'Inter', sans-serif;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: #3E7BFA;
}

/* Kill the default white nav pill and blend it into the header */
.main-navigation,
.main-navigation ul ul {
  background-color: transparent !important;
}

.main-navigation .main-nav > ul {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-navigation .main-nav ul li {
  list-style: none;
  margin: 0;
}

.main-navigation .main-nav ul li a {
  font-family: 'Inter', sans-serif;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #1A1A18 !important;
  padding: 0 !important;
}

.main-navigation .main-nav ul li:hover > a {
  color: #6B6B65 !important;
}

@media (max-width: 700px) {
  .main-title a { grid-template-columns: 56px 1fr; font-size: 34px !important; }
  .main-title a::before { width: 56px; height: 56px; }
}
