/*
Theme Name: LiveBytes Theme
Theme URI: https://livebytes.net/
Description: Modern Block Theme for LiveBytes Studio and Organon tools — Synesis (local-first email) and Phronesis (personal operations). Child theme of Twenty Twenty-Five.
Author: LiveBytes Studio / Trish Putnam
Author URI: https://trishputnam.com/
Template: twentytwentyfive
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: livebytes-theme
*/

/* ==========================================================================
   LiveBytes Theme — Global Custom Styles & Overrides
   Design System: Obsidian Envelope (Dark Blue-Green Slate-Teal #080E14)
   ========================================================================== */

/* Custom Font Declarations */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600&family=Space+Grotesk:wght@500;600;700&display=swap');

body {
  background-color: var(--wp--preset--color--obsidian);
  color: var(--wp--preset--color--ink-primary);
  font-family: var(--wp--preset--font-family--manrope);
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -5%, rgba(20, 184, 166, 0.22), transparent 60%),
    radial-gradient(ellipse 60% 40% at 85% 80%, rgba(15, 118, 110, 0.15), transparent 50%),
    repeating-linear-gradient(-24deg, transparent, transparent 47px, rgba(232, 241, 245, 0.015) 47px, rgba(232, 241, 245, 0.015) 48px);
  background-attachment: fixed;
}

/* Header Brand SVG Logo */
.brand-logo-svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(153, 246, 228, 0.6));
}

/* Glassmorphic Container Utility */
.is-style-glassmorphic {
  background-color: var(--wp--preset--color--obsidian-lift) !important;
  border: 1px solid var(--wp--preset--color--line-teal) !important;
  border-radius: 16px !important;
  backdrop-filter: blur(12px) !important;
}

/* Pill Badges */
.pill-teal {
  display: inline-block;
  padding: 0.25rem 0.85rem;
  background: rgba(20, 184, 166, 0.15);
  border: 1px solid rgba(153, 246, 228, 0.3);
  color: var(--wp--preset--color--teal-mint);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Custom Button Styling */
.wp-block-button__link.btn-primary-teal {
  background: linear-gradient(135deg, var(--wp--preset--color--teal-primary), var(--wp--preset--color--teal-dark)) !important;
  color: #ffffff !important;
  border: 1px solid rgba(153, 246, 228, 0.3) !important;
  box-shadow: 0 4px 20px rgba(20, 184, 166, 0.3) !important;
  border-radius: 8px !important;
  padding: 0.8rem 1.65rem !important;
  font-weight: 600 !important;
}

.wp-block-button__link.btn-primary-teal:hover {
  background: linear-gradient(135deg, #2dd4bf, var(--wp--preset--color--teal-primary)) !important;
  color: #080e14 !important;
  box-shadow: 0 6px 24px rgba(20, 184, 166, 0.45) !important;
}

/* Navigation Button */
.nav-hub-btn a,
a.nav-hub-btn,
.wp-block-navigation-item.nav-hub-btn a {
  color: #99f6e4 !important;
  border: 1px solid rgba(153, 246, 228, 0.3) !important;
  padding: 0.4rem 0.95rem !important;
  border-radius: 6px !important;
  background: rgba(20, 184, 166, 0.15) !important;
  text-decoration: none !important;
  display: inline-block !important;
}

.nav-hub-btn a:hover,
a.nav-hub-btn:hover,
.wp-block-navigation-item.nav-hub-btn a:hover {
  background: rgba(20, 184, 166, 0.3) !important;
  border-color: #99f6e4 !important;
}

