/* ============================================
   Mood Mode — Apple-Inspired Minimalist UI
   ============================================ */

/* CSS Custom Properties */
:root {
  /* Colors - Dark theme with subtle warmth */
  --bg-primary: #000000;
  --bg-secondary: rgba(28, 28, 30, 0.85);
  --bg-tertiary: rgba(44, 44, 46, 0.6);
  --bg-elevated: rgba(58, 58, 60, 0.5);
  
  --text-primary: rgba(255, 255, 255, 0.92);
  --text-secondary: rgba(255, 255, 255, 0.55);
  --text-tertiary: rgba(255, 255, 255, 0.35);
  
  --accent: #0A84FF;
  --accent-hover: #409CFF;
  --accent-active: #0071E3;
  
  --border: rgba(255, 255, 255, 0.08);
  --border-focus: rgba(10, 132, 255, 0.5);
  
  --success: #30D158;
  --warning: #FFD60A;
  
  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 12px;
  --space-lg: 16px;
  --space-xl: 24px;
  --space-2xl: 32px;
  
  /* Typography */
  --font-sans: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', sans-serif;
  --font-mono: 'SF Mono', Monaco, 'Cascadia Code', monospace;
  
  --text-xs: 11px;
  --text-sm: 13px;
  --text-base: 15px;
  --text-lg: 17px;
  --text-xl: 20px;
  --text-2xl: 28px;
  
  /* Dimensions */
  --panel-width: 320px;
  --panel-radius: 16px;
  --control-radius: 10px;
  --toggle-radius: 16px;
  
  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-medium: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Shadows */
  --shadow-panel: 0 8px 40px rgba(0, 0, 0, 0.5), 0 0 1px rgba(255, 255, 255, 0.1) inset;
  --shadow-button: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: 1.4;
  color: var(--text-primary);
  background: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Canvas Stack */
#canvas-stack {
  position: fixed;
  inset: 0;
  z-index: 0;
}

#canvas-stack canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

#layer-mandel {
  z-index: 1;
  opacity: 0.78;
}

#layer-turing {
  z-index: 2;
}

#layer-mandala-shadow {
  z-index: 3;
  mix-blend-mode: multiply;
  pointer-events: none;
}

#layer-mandala {
  z-index: 4;
  mix-blend-mode: plus-lighter;
  pointer-events: none;
}

/* ============================================
   Control Panel
   ============================================ */

#panel {
  position: fixed;
  top: calc(var(--space-xl) + env(safe-area-inset-top));
  left: calc(var(--space-xl) + env(safe-area-inset-left));
  bottom: calc(var(--space-xl) + env(safe-area-inset-bottom));
  width: var(--panel-width);
  z-index: 100;
  
  background: var(--bg-secondary);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  
  border-radius: var(--panel-radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-panel);
  
  transform: translateX(0);
  transition: transform var(--transition-slow);
  
  display: flex;
  flex-direction: column;
}

#panel.closed {
  /* Keep the toggle tab visible when the panel is hidden */
  transform: translateX(calc(-100% + 28px));
}

/* Panel Toggle Button - positioned at bottom, 50% smaller */
#panel-toggle {
  position: absolute;
  bottom: var(--space-xl);
  right: -28px;
  
  width: 16px;
  height: 32px;
  
  background: var(--bg-secondary);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  
  border: 1px solid var(--border);
  border-left: none;
  border-radius: 0 6px 6px 0;
  
  color: var(--text-secondary);
  cursor: pointer;
  
  display: flex;
  align-items: center;
  justify-content: center;
  
  transition: all var(--transition-fast);
}

/* Mobile-safe floating tab (separate from transformed panel) */
#panel-fab {
  display: none;
  position: fixed;
  left: calc(env(safe-area-inset-left, 0px));
  bottom: calc(env(safe-area-inset-bottom, 0px) + 18px);
  transform: none;

  width: 18px;
  height: 56px;

  background: var(--bg-secondary);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);

  border: 1px solid var(--border);
  border-left: none;
  border-radius: 0 10px 10px 0;
  box-shadow: var(--shadow-panel);

  color: var(--text-secondary);
  cursor: pointer;

  opacity: 1;

  align-items: center;
  justify-content: center;

  z-index: 200;
  transition: opacity var(--transition-medium), transform var(--transition-medium);
}

body.panel-open #panel-fab {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-10px);
}

#panel-fab svg {
  width: 10px;
  height: 10px;
}

#panel-toggle:hover {
  color: var(--text-primary);
  background: var(--bg-tertiary);
}

#panel-toggle svg {
  width: 10px;
  height: 10px;
  transition: transform var(--transition-medium);
}

#panel.closed #panel-toggle svg {
  transform: rotate(180deg);
}

/* Panel Content */
.panel-content {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: var(--space-xl);
  
  /* Custom scrollbar */
  scrollbar-width: thin;
  scrollbar-color: var(--bg-elevated) transparent;
}

.panel-content::-webkit-scrollbar {
  width: 6px;
}

.panel-content::-webkit-scrollbar-track {
  background: transparent;
}

.panel-content::-webkit-scrollbar-thumb {
  background: var(--bg-elevated);
  border-radius: 3px;
}

/* Panel Header */
.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--border);
}

.header-left {
  display: flex;
  align-items: baseline;
  gap: var(--space-sm);
}

.panel-header h1 {
  font-size: var(--text-xl);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0;
}

.panel-header .version {
  font-size: var(--text-xs);
  color: var(--text-tertiary);
  font-weight: 500;
}

/* Hide Menu Buttons */
.btn-hide-menu {
  padding: var(--space-sm) var(--space-md);
  font-family: inherit;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--accent);
  background: transparent;
  border: 1px solid var(--accent);
  border-radius: var(--control-radius);
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.btn-hide-menu:hover {
  background: var(--accent);
  color: #fff;
}

.btn-hide-menu:active {
  transform: scale(0.98);
}

.btn-hide-bottom {
  width: 100%;
  margin-top: var(--space-xl);
  padding: var(--space-md);
}

/* Control Sections */
.control-section {
  margin-bottom: var(--space-xl);
}

.control-section:last-child {
  margin-bottom: 0;
}

.control-section h2 {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-md);
}



/* Section header accent squares */
h2.section-title {
  position: relative;
  padding-left: 14px;
}
h2.section-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  transform: translateY(-50%);
  border-radius: 2px;
  opacity: 0.9;
}
h2.section-nav::before    { background: #2dd4bf; } /* teal */
h2.section-layers::before { background: #a78bfa; } /* soft violet */
h2.section-visual::before { background: #fbbf24; } /* warm amber */
/* Collapsible Sections */
.collapsible .section-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  transition: color var(--transition-fast);
}

/* Section heading background tints (subtle grouping) */
.section-title {
  padding: 8px 10px 8px 22px;
  margin-bottom: var(--space-sm);
  border-radius: 12px;
}
h2.section-nav    { background: rgba(45, 212, 191, 0.10); }
h2.section-layers { background: rgba(167, 139, 250, 0.10); }
h2.section-visual { background: rgba(251, 191, 36, 0.10); }

.section-toggle {
  padding: var(--space-sm);
  border-radius: 12px;
}
.section-toggle[data-accent="audio"]  { background: rgba(120, 210, 255, 0.10); }
.section-toggle[data-accent="breath"] { background: rgba(140, 255, 160, 0.10); }

/* Subsection heading for Turing Patterns (no square icon) */
.subsection-title {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 10px;
  font-weight: 600;
}
.subsection-title.section-turing { background: rgba(120, 160, 255, 0.10); }


.collapsible .section-toggle:hover {
  color: var(--text-primary);
}

.collapsible .chevron {
  transition: transform var(--transition-medium);
}

.collapsible.collapsed .chevron {
  transform: rotate(-90deg);
}

.collapsible .section-content {
  overflow: hidden;
  max-height: 600px;
  transition: max-height var(--transition-medium), opacity var(--transition-medium);
  opacity: 1;
}

.collapsible.collapsed .section-content {
  max-height: 0;
  opacity: 0;
}

/* Control Rows */
.control-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.control-row:last-child {
  margin-bottom: 0;
}

.control-row > label:not(.toggle-label) {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  flex-shrink: 0;
}

/* Value Display */
.value-display {
  font-size: var(--text-xs);
  font-family: var(--font-mono);
  color: var(--text-tertiary);
  min-width: 60px;
  text-align: right;
}

/* Button Row */
.btn-row {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.btn-row button {
  flex: 1;
}

/* ============================================
   Form Controls
   ============================================ */

/* Range Slider */
input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  flex: 1;
  height: 4px;
  background: var(--bg-tertiary);
  border-radius: 2px;
  cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  transition: transform var(--transition-fast);
}

input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.1);
}

input[type="range"]::-webkit-slider-thumb:active {
  transform: scale(0.95);
}

input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  background: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

/* Select */
select {
  appearance: none;
  -webkit-appearance: none;
  
  min-width: 140px;
  padding: var(--space-sm) var(--space-lg) var(--space-sm) var(--space-md);
  
  font-family: inherit;
  font-size: var(--text-sm);
  color: var(--text-primary);
  
  background: var(--bg-tertiary);
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='rgba(255,255,255,0.5)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--space-md) center;
  
  border: 1px solid var(--border);
  border-radius: var(--control-radius);
  
  cursor: pointer;
  transition: all var(--transition-fast);
}

select:hover {
  background-color: var(--bg-elevated);
  border-color: rgba(255, 255, 255, 0.15);
}

select:focus {
  outline: none;
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px rgba(10, 132, 255, 0.2);
}

/* Toggle Switch */
.toggle-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  cursor: pointer;
}

.toggle-label span:first-of-type {
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

.toggle-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle {
  position: relative;
  width: 44px;
  height: 26px;
  background: var(--bg-tertiary);
  border-radius: var(--toggle-radius);
  transition: background var(--transition-fast);
  flex-shrink: 0;
}

.toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: transform var(--transition-fast);
}

.toggle-label input[type="checkbox"]:checked + .toggle {
  background: var(--success);
}

.toggle-label input[type="checkbox"]:checked + .toggle::after {
  transform: translateX(18px);
}

.toggle-label input[type="checkbox"]:focus-visible + .toggle {
  box-shadow: 0 0 0 3px rgba(10, 132, 255, 0.3);
}

/* Buttons */
button {
  font-family: inherit;
  font-size: var(--text-sm);
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  
  width: 100%;
  padding: var(--space-md) var(--space-lg);
  margin-bottom: var(--space-md);
  
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--control-radius);
  box-shadow: var(--shadow-button);
}

.btn-primary:hover {
  background: var(--accent-hover);
}

.btn-primary:active {
  background: var(--accent-active);
  transform: scale(0.98);
}

.btn-primary.active {
  background: var(--success);
}

.btn-secondary {
  padding: var(--space-sm) var(--space-md);
  
  background: var(--bg-tertiary);
  color: var(--text-primary);
  border: 1px solid var(--border);
  border-radius: var(--control-radius);
}

.btn-secondary:hover {
  background: var(--bg-elevated);
  border-color: rgba(255, 255, 255, 0.15);
}

.btn-secondary:active {
  transform: scale(0.98);
}

/* ============================================
   Breath Indicator
   ============================================ */

#breath-indicator {
  position: fixed;
  bottom: var(--space-2xl);
  right: var(--space-2xl);
  z-index: 50;
  
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  
  pointer-events: none;
  opacity: 0.8;
  transition: opacity var(--transition-medium);
}

#breath-indicator:hover {
  opacity: 1;
}

.breath-ring {
  width: 80px;
  height: 80px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transition: transform 1s ease-out, border-color 0.5s ease;
}

.breath-ring.inhale {
  transform: scale(1.3);
  border-color: rgba(48, 209, 88, 0.6);
}

.breath-ring.exhale {
  transform: scale(0.7);
  border-color: rgba(10, 132, 255, 0.6);
}

.breath-ring.hold {
  border-color: rgba(255, 214, 10, 0.5);
}

.breath-text {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============================================
   Status Bar
   ============================================ */

#status-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  
  padding: var(--space-sm) var(--space-lg);
  
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--text-tertiary);
  
  transition: transform var(--transition-medium), opacity var(--transition-medium);
}

#status-bar.hidden {
  transform: translateY(100%);
  opacity: 0;
}

#status {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 768px) {
  :root {
    --panel-width: 100%;
    --panel-radius: 0;
  }
  
  #panel {
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    max-width: none;
    border-radius: 0;
    border: none;
  }
  
  #panel.closed {
    transform: translateX(-100%);
  }
  
  /* Hide the side toggle on mobile since we have Hide Menu buttons */
  #panel-toggle {
    display: none;
  }

  /* Show the floating tab on mobile so the panel can be reopened */
  #panel-fab {
    display: flex;
  }
  
  #breath-indicator {
    bottom: var(--space-lg);
    right: var(--space-lg);
  }
  
  .breath-ring {
    width: 60px;
    height: 60px;
  }
  
  /* Make hide buttons more prominent on mobile */
  .btn-hide-menu {
    padding: var(--space-md) var(--space-lg);
    font-size: var(--text-base);
  }
  
  .btn-hide-bottom {
    padding: var(--space-lg);
    font-size: var(--text-base);
  }
}

@media (max-width: 480px) {
  .panel-content {
    padding: var(--space-lg);
  }
  
  .panel-header h1 {
    font-size: var(--text-lg);
  }
  
  select {
    min-width: 120px;
  }
}

/* ============================================
   Animations
   ============================================ */

@keyframes pulse {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 1; }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.control-section {
  animation: fadeIn var(--transition-slow) ease-out;
  animation-fill-mode: both;
}

.control-section:nth-child(1) { animation-delay: 0ms; }
.control-section:nth-child(2) { animation-delay: 50ms; }
.control-section:nth-child(3) { animation-delay: 100ms; }
.control-section:nth-child(4) { animation-delay: 150ms; }
.control-section:nth-child(5) { animation-delay: 200ms; }
.control-section:nth-child(6) { animation-delay: 250ms; }

/* Safe area support for modern devices */
@supports (padding: env(safe-area-inset-left)) {
  #panel {
    padding-left: env(safe-area-inset-left);
  }
  
  #breath-indicator {
    right: calc(var(--space-2xl) + env(safe-area-inset-right));
    bottom: calc(var(--space-2xl) + env(safe-area-inset-bottom));
  }
}


/* Mobile panel behavior: ensure the toggle remains reachable */
@media (max-width: 420px) {
  #panel {
    width: min(var(--panel-width), calc(100vw - 24px - env(safe-area-inset-left) - env(safe-area-inset-right)));
  }
  #panel-toggle {
    right: -24px;
  }
  #panel.closed {
    transform: translateX(-100%);
}
}


/* =====================
   Minimal section accents
   ===================== */
.section-title::before,
.section-toggle::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  margin-right: 10px;
  transform: translateY(-1px);
  opacity: 0.9;
  background: rgba(255,255,255,0.25);
}

.section-title[data-accent="nav"]::before { background: rgba(64, 220, 200, 0.85); }
.section-title[data-accent="layers"]::before { background: rgba(180, 120, 255, 0.85); }
.section-title[data-accent="style"]::before { background: rgba(255, 185, 80, 0.85); }

.section-toggle[data-accent="audio"]::before { background: rgba(120, 210, 255, 0.85); }
.section-toggle[data-accent="breath"]::before { background: rgba(140, 255, 160, 0.85); }

/* Accent squares for specific items inside sections */
.with-dot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.with-dot::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 2px;
  opacity: 0.9;
  background: rgba(255,255,255,0.25);
}
.with-dot[data-accent="turing"]::before { background: rgba(180, 120, 255, 0.85); }


/* === MoodHz: full-width section bars (no left squares) === */
.section-title::before,
.section-toggle::before {
  display: none !important;
  content: none !important;
}

.section-title,
.section-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% + (var(--space-xl) * 2));
  margin-left: calc(var(--space-xl) * -1);
  margin-right: calc(var(--space-xl) * -1);
  padding: 10px var(--space-xl);
  border-radius: 0;
}

/* Keep section-title text left aligned (no extra left padding now) */
.section-title { padding-left: var(--space-xl); }

/* Section-specific subtle tints */
.section-nav    { background: rgba(45, 212, 191, 0.10); }
.section-layers { background: rgba(167, 139, 250, 0.10); }
.section-visual { background: rgba(251, 191, 36, 0.10); }
.section-turing { background: rgba(120, 160, 255, 0.10); }
.section-audio  { background: rgba(56, 189, 248, 0.10); }
.section-breath { background: rgba(34, 197, 94, 0.10); }

/* Make collapsible headings look like headings, not links */
.section-toggle {
  cursor: pointer;
  user-select: none;
  margin-bottom: 0;
}



/* --- Section Heading Bars (full-width, sharp corners) --- */
h2.section-title::before { content: none !important; display: none !important; }

h2.section-title,
h2.section-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% + (var(--space-xl) * 2));
  margin-left: calc(var(--space-xl) * -1);
  margin-right: calc(var(--space-xl) * -1);
  padding: 10px var(--space-xl);
  border-radius: 0;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}


/* Ensure collapsible section headings use the same full-width bar styling (override older .collapsible .section-toggle rules) */
.control-section.collapsible > h2.section-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% + (var(--space-xl) * 2)) !important;
  margin-left: calc(var(--space-xl) * -1) !important;
  margin-right: calc(var(--space-xl) * -1) !important;
  padding: 10px var(--space-xl) !important;
  border-radius: 0 !important;
  border-bottom: 1px solid rgba(255,255,255,0.10) !important;
}

h2.section-title {
  justify-content: flex-start;
  gap: 10px;
  margin-top: 6px;
}

/* Background tints */
h2.section-nav    { background: rgba(45, 212, 191, 0.10); }
h2.section-layers { background: rgba(167, 139, 250, 0.10); }
h2.section-visual { background: rgba(251, 191, 36, 0.10); }

h2.section-turing { background: rgba(99, 102, 241, 0.10); } /* indigo */
h2.section-audio  { background: rgba(120, 210, 255, 0.10); } /* soft cyan */
h2.section-breath { background: rgba(140, 255, 160, 0.10); } /* soft green */
/* Extra breathing/turing/audio section padding (requested) */
h2.section-toggle.section-turing + .section-content,
h2.section-toggle.section-audio + .section-content,
h2.section-toggle.section-breath + .section-content {
  padding-top: 5px;
  padding-left: 5px;
}


/* Extra inset for collapsible groups */
h2.section-toggle.section-turing + .section-content,
h2.section-toggle.section-audio + .section-content,
h2.section-toggle.section-breath + .section-content {
  padding-top: 5px;
  padding-left: 5px;
}

