/*
Theme Name: Robbie Shawn Authority Theme
Theme URI: https://robbieshawn.com
Author: Hoot Commerce Engineering
Description: Enterprise custom theme for Robbie Shawn featuring modern Plus Jakarta Sans typography, custom page templates, and clean block resets.
Version: 1.0.3
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 8.0
*/

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: #ffffff;
    color: #0f172a;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background-color: #0084C9;
    color: #ffffff;
}

/* Force Button Text Color Specificity Over Tailwind Prose Links */
.prose a.text-white,
.prose a[class*="bg-"],
a.text-white,
a[class*="bg-[#0084C9]"] {
    color: #ffffff !important;
    text-decoration: none !important;
}

/* Collapse Empty Button & Link Artifacts */
a:empty, 
button:empty, 
.wp-block-button:empty, 
.wp-element-button:empty {
    display: none !important;
}

/* Standardize Native WP Gutenberg Block Buttons */
.wp-block-button__link {
    background-color: #0084C9 !important;
    color: #ffffff !important;
    border-radius: 0.5rem !important;
    padding: 0.75rem 1.5rem !important;
    font-weight: 700 !important;
    font-size: 0.875rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    text-decoration: none !important;
    transition: all 0.2s ease-in-out !important;
}

.wp-block-button__link:hover {
    background-color: #006699 !important;
}