/*
Theme Name: LB Services
Theme URI: https://lbservices.io
Author: LB Services
Author URI: https://lbservices.io
Description: Professional business services theme for LB Services - Where Expertise Meets Execution.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: lb-services
Tags: one-column, custom-menu, featured-images, full-width-template, custom-logo

LB Services - Professional Business Services Theme
*/

/* ========================================
   CSS Custom Properties (Brand Colors)
   ======================================== */
:root {
    /* LB Services palette */
    --lb-blue: #1f3c88;
    --lb-black: #000000;
    --lb-ivory: #f5f5f0;
    
    /* Legacy aliases */
    --midnight-navy: var(--lb-black);
    --electric-cyan: var(--lb-blue);
    --off-white: var(--lb-ivory);
    --deep-charcoal: var(--lb-black);
    
    /* Theme tokens (dark mode default) */
    --background: var(--lb-black);
    --foreground: rgba(255, 255, 255, 0.95);
    --card: rgba(255, 255, 255, 0.06);
    --card-foreground: rgba(255, 255, 255, 0.95);
    --popover: rgba(255, 255, 255, 0.06);
    --popover-foreground: rgba(255, 255, 255, 0.95);
    
    /* Blue accents */
    --primary: var(--lb-blue);
    --primary-foreground: rgba(255, 255, 255, 0.98);
    --accent: var(--lb-blue);
    --accent-foreground: rgba(255, 255, 255, 0.98);
    
    /* Supporting tokens */
    --secondary: rgba(255, 255, 255, 0.08);
    --secondary-foreground: rgba(255, 255, 255, 0.95);
    --muted: rgba(255, 255, 255, 0.06);
    --muted-foreground: rgba(255, 255, 255, 0.78);
    --border: rgba(255, 255, 255, 0.16);
    --input: rgba(255, 255, 255, 0.14);
    --ring: var(--lb-blue);
    
    /* Border radius */
    --radius: 0.625rem;
    --radius-sm: calc(var(--radius) - 4px);
    --radius-md: calc(var(--radius) - 2px);
    --radius-lg: var(--radius);
    --radius-xl: calc(var(--radius) + 4px);
}

/* ========================================
   Custom Font Faces
   ======================================== */
@font-face {
    font-family: "CoasterSimone";
    src: url("assets/fonts/CoasterSimone.woff2") format("woff2"),
         url("assets/fonts/CoasterSimone.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Coaster Simone";
    src: url("assets/fonts/CoasterSimone.woff2") format("woff2"),
         url("assets/fonts/CoasterSimone.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Hero background image - override default img styles */
.absolute.inset-0 > img,
.hero-bg-image img,
img.h-full {
    height: 100% !important;
    max-width: none;
    width: 100%;
}

/* ========================================
   Typography Utilities
   ======================================== */
.font-sans {
    font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.font-serif {
    font-family: 'DM Serif Display', Georgia, serif;
}

.font-brand {
    font-family: 'CoasterSimone', 'Coaster Simone', cursive;
}

.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-6xl { font-size: 3.75rem; line-height: 1; }
.text-7xl { font-size: 4.5rem; line-height: 1; }
.text-8xl { font-size: 6rem; line-height: 1; }

.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.tracking-tight { letter-spacing: -0.025em; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-wider { letter-spacing: 0.05em; }

.leading-none { line-height: 1; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }

.uppercase { text-transform: uppercase; }
.italic { font-style: italic; }

/* ========================================
   Color Utilities
   ======================================== */
.text-white { color: #ffffff; }
.text-white\/75 { color: rgba(255, 255, 255, 0.75); }
.text-white\/78 { color: rgba(255, 255, 255, 0.78); }
.text-white\/80 { color: rgba(255, 255, 255, 0.80); }
.text-white\/85 { color: rgba(255, 255, 255, 0.85); }
.text-white\/90 { color: rgba(255, 255, 255, 0.90); }
.text-white\/70 { color: rgba(255, 255, 255, 0.70); }
.text-muted-foreground { color: var(--muted-foreground); }
.text-foreground { color: var(--foreground); }
.text-accent { color: var(--accent); }
.text-red-400 { color: #f87171; }

.bg-white { background-color: #ffffff; }
.bg-white\/10 { background-color: rgba(255, 255, 255, 0.10); }
.bg-white\/15 { background-color: rgba(255, 255, 255, 0.15); }
.bg-white\/20 { background-color: rgba(255, 255, 255, 0.20); }
.bg-lb-blue { background-color: var(--lb-blue); }
.bg-lb-black { background-color: var(--lb-black); }
.bg-background { background-color: var(--background); }
.bg-accent { background-color: var(--accent); }

.border-white\/10 { border-color: rgba(255, 255, 255, 0.10); }
.border-white\/16 { border-color: rgba(255, 255, 255, 0.16); }
.border-white\/20 { border-color: rgba(255, 255, 255, 0.20); }
.border-white\/30 { border-color: rgba(255, 255, 255, 0.30); }
.border-border { border-color: var(--border); }

/* ========================================
   Layout Utilities
   ======================================== */
.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-7xl { max-width: 80rem; }

.mx-auto { margin-left: auto; margin-right: auto; }

.min-h-screen { min-height: 100vh; }
.min-h-\[10vh\] { min-height: 10vh; }
.min-h-\[15vh\] { min-height: 15vh; }

/* Flexbox */
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.flex-shrink-0 { flex-shrink: 0; }
.items-center { align-items: center; }
.items-start { align-items: start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }

/* Grid */
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* Spacing */
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }

.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }

.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-32 { padding-top: 8rem; padding-bottom: 8rem; }
.py-40 { padding-top: 10rem; padding-bottom: 10rem; }

.pt-6 { padding-top: 1.5rem; }
.pt-8 { padding-top: 2rem; }
.pt-10 { padding-top: 2.5rem; }
.pt-16 { padding-top: 4rem; }
.pt-20 { padding-top: 5rem; }
.pt-34 { padding-top: 8.5rem; }

.pb-6 { padding-bottom: 1.5rem; }
.pb-20 { padding-bottom: 5rem; }
.pb-24 { padding-bottom: 6rem; }
.pb-30 { padding-bottom: 7.5rem; }
.pb-40 { padding-bottom: 10rem; }

.mt-0\.5 { margin-top: 0.125rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-4 { margin-top: 1rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-16 { margin-top: 4rem; }
.mt-auto { margin-top: auto; }

.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mb-20 { margin-bottom: 5rem; }

.ml-4 { margin-left: 1rem; }

.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-5 > * + * { margin-top: 1.25rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-16 > * + * { margin-top: 4rem; }
.space-x-3 > * + * { margin-left: 0.75rem; }

/* Sizing */
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-16 { width: 4rem; }
.w-full { width: 100%; }
.w-auto { width: auto; }

.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-8 { height: 2rem; }
.h-9 { height: 2.25rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-16 { height: 4rem; }
.h-auto { height: auto; }

.size-5 { width: 1.25rem; height: 1.25rem; }

/* ========================================
   Positioning
   ======================================== */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-0 { top: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }
.left-0 { left: 0; }
.-top-4 { top: -1rem; }
.-left-4 { left: -1rem; }

.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-50 { z-index: 50; }

.overflow-hidden { overflow: hidden; }

/* ========================================
   Borders & Effects
   ======================================== */
.border { border-width: 1px; border-style: solid; }
.border-t { border-top-width: 1px; border-top-style: solid; }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }

.rounded { border-radius: var(--radius); }
.rounded-md { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-\[5px\] { border-radius: 5px; }

.backdrop-blur-sm { backdrop-filter: blur(4px); }

.shadow { box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1); }
.shadow-md { box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1); }

.pointer-events-none { pointer-events: none; }

/* ========================================
   Display & Visibility
   ======================================== */
.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ========================================
   Text Alignment
   ======================================== */
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }

/* ========================================
   Object Fit
   ======================================== */
.object-cover { 
    object-fit: cover; 
}
.object-contain { 
    object-fit: contain; 
}

/* Mobile: adjust hero background position */
@media (max-width: 768px) {
    .object-cover {
        object-position: 60% center !important;
    }
}

/* ========================================
   Transitions
   ======================================== */
.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.transition-colors {
    transition-property: color, background-color, border-color;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.duration-300 { transition-duration: 300ms; }

/* ========================================
   Custom Animations
   ======================================== */
@keyframes glow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.animate-glow {
    animation: glow 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

/* ========================================
   Cursor
   ======================================== */
.cursor-pointer { cursor: pointer; }
.cursor-not-allowed { cursor: not-allowed; }

/* ========================================
   List Styles
   ======================================== */
.list-disc { list-style-type: disc; }
.list-inside { list-style-position: inside; }

/* ========================================
   Resize
   ======================================== */
.resize-none { resize: none; }

/* ========================================
   Responsive Breakpoints
   ======================================== */
@media (min-width: 640px) {
    .sm\:w-auto { width: auto; }
    .sm\:text-md { font-size: 1rem; }
    .sm\:text-lg { font-size: 1.125rem; }
    .sm\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
    .sm\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
    .sm\:text-5xl { font-size: 3rem; line-height: 1; }
    .sm\:text-6xl { font-size: 3.75rem; line-height: 1; }
    .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 768px) {
    .md\:hidden { display: none; }
    .md\:flex { display: flex; }
    .md\:block { display: block; }
    .md\:h-10 { height: 2.5rem; }
    .md\:px-0 { padding-left: 0; padding-right: 0; }
    .md\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
    .md\:flex-row { flex-direction: row; }
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
    .lg\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
    .lg\:text-5xl { font-size: 3rem; line-height: 1; }
    .lg\:text-6xl { font-size: 3.75rem; line-height: 1; }
    .lg\:text-7xl { font-size: 4.5rem; line-height: 1; }
    .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .lg\:order-1 { order: 1; }
    .lg\:order-2 { order: 2; }
}

@media (min-width: 1280px) {
    .xl\:text-6xl { font-size: 3.75rem; line-height: 1; }
    .xl\:text-8xl { font-size: 6rem; line-height: 1; }
}

/* ========================================
   Hover States
   ======================================== */
.hover\:bg-white\/10:hover { background-color: rgba(255, 255, 255, 0.10); }
.hover\:bg-white\/15:hover { background-color: rgba(255, 255, 255, 0.15); }
.hover\:bg-white\/20:hover { background-color: rgba(255, 255, 255, 0.20); }
.hover\:bg-white\/30:hover { background-color: rgba(255, 255, 255, 0.30); }
.hover\:bg-white\/90:hover { background-color: rgba(255, 255, 255, 0.90); }
.hover\:bg-accent\/90:hover { background-color: rgba(31, 60, 136, 0.9); }
.hover\:text-accent:hover { color: var(--accent); }
.hover\:text-white\/80:hover { color: rgba(255, 255, 255, 0.80); }
.hover\:underline:hover { text-decoration: underline; }

.hover\:underline-offset-8:hover { text-underline-offset: 8px; }
.hover\:decoration-white:hover { text-decoration-color: #ffffff; }
.hover\:decoration-2:hover { text-decoration-thickness: 2px; }

.underline { text-decoration: underline; }
.underline-offset-8 { text-underline-offset: 8px; }
.decoration-white { text-decoration-color: #ffffff; }
.decoration-2 { text-decoration-thickness: 2px; }

/* ========================================
   Focus States
   ======================================== */
.focus\:border-white:focus { border-color: #ffffff; }
.focus\:border-white\/40:focus { border-color: rgba(255, 255, 255, 0.4); }
.focus\:ring-white:focus { --tw-ring-color: #ffffff; }
.focus\:ring-1:focus { box-shadow: 0 0 0 1px var(--tw-ring-color, currentColor); }

/* ========================================
   Disabled States
   ======================================== */
.disabled\:opacity-50:disabled { opacity: 0.5; }
.disabled\:cursor-not-allowed:disabled { cursor: not-allowed; }

/* ========================================
   Data States
   ======================================== */
[data-state="checked"] {
    background-color: #ffffff;
    color: var(--lb-blue);
}

