/*
Theme Name: LandscapeLead Theme
Theme URI:  https://example.com/
Author:     Ken (LandscapeLead)
Author URI: https://example.com/
Description: Modern, vibrant, mobile-first WordPress theme designed for LandscapeLead plugins. Built for expansion: Gutenberg-ready, templates, customizer controls, and clean component structure.
Version: 1.3.4
License:    GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: landscapelead-theme
Tags:       custom-logo, custom-menu, featured-images, wide-blocks, responsive, blog
*/

/* Theme base loads from assets/css/theme.css */

/* Changelog 1.3.2:
 - Set default brand to white background + light green trim.
 - Include Workflows Hub styling in theme core CSS.
*/

/* Changelog 1.3.3:
 - Portal: remove top nav (left sidebar only).
*/

/* Changelog 1.3.4:
 - Wider desktop/tablet layout (shell max width).
 - Slightly smaller base typography for cleaner portal UI (mobile remains readable).
*/



/* Logged-in business name next to logo */
.llt-brand{display:flex;align-items:center;gap:10px}
.llt-bizname{
  display:inline-flex;
  align-items:center;
  max-width:42vw;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  font-weight:800;
  font-size:14px;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.22);
  color:inherit;
}
@media (max-width: 520px){
  .llt-bizname{max-width:55vw;font-size:13px;padding:5px 9px}
}


/* Logout button (front end) */
.llt-logoutbtn{
  display:inline-flex;
  align-items:center;
  text-decoration:none;
  font-weight:800;
  font-size:13px;
  padding:7px 12px;
  border-radius:999px;
  background:rgba(0,0,0,.18);
  border:1px solid rgba(255,255,255,.22);
  color:inherit;
  transition:transform .08s ease, background .12s ease;
}
.llt-logoutbtn:hover{background:rgba(0,0,0,.26);transform:translateY(-1px)}
.llt-logoutbtn:active{transform:translateY(0px)}

